---
title: "WHOIS Information"
slug: "whois-information"
updated: 2026-01-07T16:33:20Z
published: 2026-01-07T16:33:20Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://help.silentpush.com/llms.txt
> Use this file to discover all available pages before exploring further.

# WHOIS Information

```plaintext
GET /explore/domain/whois/{domain}
```

Get previously collected WHOIS information for the domain.

| **Query Parameters:** | - **domain (string)** *(required)* - - domain name |
| --- | --- |
| **Request headers:** | - *X-API-KEY - api-key* |

## Example Request

```plaintext
https://api.silentpush.com/api/v1/merge-api/explore/domain/whois/silentpush.com
```

## Example Response

```python
{
    "status_code": 200,
    "error": null,
    "response": {
        "whois": [
            {
                "address": "['PO Box 639', 'C/O silentpush.com']",
                "city": "Kirkland",
                "country": "US",
                "created": "Mon, 20 Jan 2020 08:14:27 GMT",
                "date": 20200527,
                "domain": "silentpush.com",
                "emails": [
                    "abuse@enom.com",
                    "mhjqhltw@whoisprivacyprotect.com"
                ],
                "expires": "Wed, 20 Jan 2021 08:14:27 GMT",
                "name": "Whois Agent (777024973)",
                "nameservers": [
                    "henry.ns.cloudflare.com",
                    "vida.ns.cloudflare.com"
                ],
                "org": "silentpush.com",
                "query": "silentpush.com",
                "registrar": "ENOM, INC.",
                "state": "WA",
                "updated": "Fri, 08 May 2020 13:09:11 GMT",
                "whois_server": "WHOIS.ENOM.COM",
                "zipcode": "98083"
            }
        ]
    }
}
```
