---
title: "Name Server Reputation History"
slug: "name-server-reputation-history"
tags: ["Example Response", "Name Server", "Reputation History"]
updated: 2026-01-07T17:12:46Z
published: 2026-01-07T17:12:46Z
canonical: "help.silentpush.com/name-server-reputation-history"
---

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

```plaintext
GET /explore/nsreputation/history/nameserver/{nameserver}
```

Get name server reputation history.

| **Query Parameters:** | - **name server (string) required –** - name server name - **limit = (int) (optional) –** - number of results to return - **explain =<0\|1> (int) (optional) –** - show information used to calculate the reputation score - 0 = (default) do not show - 1 = show details |
| --- | --- |
| **Request headers:** | - *X-API-KEY - api-key* |

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| nameserver | string | Yes | Name server name |
| limit | int | No | Number of results to return. |
| explain | int | No | Show information used to calculate the reputation score - 0 = (default) do not show - 1 = show details |

## Request Headers

| Header | Description |
| --- | --- |
| X-API-KEY | API key for authentication. |

## Example Request

```plaintext
https://api.silentpush.com/api/v1/merge-api/explore/nsreputation/history/nameserver/a.dns-servers.net.ru?explain=1
```

## Example Response

```python
{
    "status_code": 200,
    "error": null,
    "response": {
        "ns_server_reputation_history": [
            {
                "date": 20210709,
                "ns_server": "a.dns-servers.net.ru",
                "ns_server_reputation": 100,
                "ns_server_reputation_explain": {
                    "ns_server_domain_density": 3,
                    "ns_server_domains_listed": 3
                }
            },
            {
                "date": 20210708,
                "ns_server": "a.dns-servers.net.ru",
                "ns_server_reputation": 100,
                "ns_server_reputation_explain": {
                    "ns_server_domain_density": 3,
                    "ns_server_domains_listed": 3
                }
            },
            {
                "date": 20210707,
                "ns_server": "a.dns-servers.net.ru",
                "ns_server_reputation": 100,
                "ns_server_reputation_explain": {
                    "ns_server_domain_density": 3,
                    "ns_server_domains_listed": 3
                }
            }
        ]
    }
}
```
