---
title: "Translate Hash to Server Names"
slug: "translate-hash-to-server-names"
updated: 2026-01-07T21:54:13Z
published: 2026-01-07T21:54:13Z
canonical: "help.silentpush.com/translate-hash-to-server-names"
---

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

# Translate Hash to Server Names

```plaintext
GET /explore/padns/lookup/translate/{qtype}/{query}
```

Show server names that belong to an nshash or mxhash.

| **Query Parameters:** | - qtype (string) (required) – - the following qypes are supported: - nshash - mxhash - query (string) (required) – - specify a hash value to translate - nshash or mxhash |
| --- | --- |
| **Request headers:** | - *X-API-KEY - api-key* |

## Example Request

```plaintext
https://api.silentpush.com/api/v1/merge-api/explore/padns/lookup/translate/nshash/850c47a684c9ea9c32ece18e7be4cddc
```

## Example Response

```python
{
    "status_code": 200,
    "error": null,
    "response": {
        "records": [
            {
                "nshash": "850c47a684c9ea9c32ece18e7be4cddc"
            },
            [
                {
                "nssrv": "henry.ns.cloudflare.com"
                },
                {
                "nssrv": "vida.ns.cloudflare.com"
                }
            ]
        ]
    }
}
```
