---
title: "Bulk Domain Information"
slug: "bulk-domain-information"
updated: 2026-01-07T16:09:37Z
published: 2026-01-07T16:09:37Z
canonical: "help.silentpush.com/bulk-domain-information"
---

> ## 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.

# Bulk Domain Information

```plaintext
POST /explore/bulk/domaininfo
```

Get domain information for multiple domains.

| **JSON Parameters:** | - **body (JSON)** *(required)* - - a JSON object containing a list of domains - ```json {"domains": ["<domain1>","<domain2>",...,"<domainN>"]} ``` |
| --- | --- |
| **Request headers:** | - *X-API-KEY - api-key* - Content-Type - application/json |

## Example Request

```plaintext
https://api.silentpush.com/api/v1/merge-api/explore/bulk/domaininfo \
     -d '{"domains": ["silentpush.com","google.com"]}'
```

## Example Response

```python
{
    "status_code": 200,
    "error": null,
    "response": {
        "domaininfo": [
            {
                "age": 536,
                "age_score": 0,
                "domain": "silentpush.com",
                "first_seen": 20200121,
                "is_new": false,
                "is_new_score": 0,
                "last_seen": 20210710,
                "query": "silentpush.com",
                "whois_age": 536,
                "whois_created_date": "2020-01-20 08:14:27",
                "zone": "com"
            },
            {
                "age_score": 0,
                "domain": "google.com",
                "info": "Domain registered before 20170101",
                "is_new": false,
                "is_new_score": 0,
                "last_seen": 20210710,
                "query": "google.com",
                "whois_age": "",
                "whois_created_date": "",
                "zone": "com"
            }
        ]
    }
}
```
