---
title: "Name Server Reputation"
slug: "name-server-reputation-1"
updated: 2026-01-07T16:34:53Z
published: 2026-01-07T16:34:53Z
---

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

# Name Server Reputation

```plaintext
NGET /explore/domain/nsreputation/{domain}
```

Get name server reputation for name servers for 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/nsreputation/silentpush.com
```

## Example Response

```python
{
    "status_code": 200,
    "error": null,
    "response": {
        "ns_reputation": {
            "is_expired": false,
            "is_parked": false,
            "is_sinkholed": false,
            "ns_reputation_max": 0,
            "ns_reputation_score": 0,
            "ns_srv_reputation": [
                {
                    "domain": "silentpush.com",
                    "ns_server": "henry.ns.cloudflare.com",
                    "ns_server_domain_density": 55264,
                    "ns_server_domains_listed": 1,
                    "ns_server_reputation": 0
                },
                {
                    "domain": "silentpush.com",
                    "ns_server": "vida.ns.cloudflare.com",
                    "ns_server_domain_density": 56779,
                    "ns_server_domains_listed": 1,
                    "ns_server_reputation": 0
                }
            ]
        }
    }
}
```
