---
title: "IPv6 Information"
slug: "ipv6-information"
updated: 2026-01-07T16:43:51Z
published: 2026-01-07T16:43:51Z
canonical: "help.silentpush.com/ipv6-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.

# IPv6 Information

```plaintext
GET /explore/ipv6/ipv6info/{ipv6}
```

Get IPv6 information.

| **Query Parameters:** | - **ipv6 (string) (required) –** - IPv6 address - **explain =<0\|1> (int) (optional) –** - show details of data used to calculate the different scores in the response - 0 (default) - do not show details - 1 - show underlying data used to calculate scores - **sparse = (string) (optional) –** - return only specific information elements for this IPv6 address - asn - return AS Number for IPv6 address - asname - return AS Name for IPv66address - sp_risk_score - return Silent Push Risk Score for IPv6 address |
| --- | --- |
| **Request headers:** | - *X-API-KEY - api-key* |

## Example Request

```plaintext
https://api.silentpush.com/api/v1/merge-api/explore/ipv6/ipv6info/2606:4700:4700::1111
```

## Example Response

```python
{
    "status_code": 200,
    "error": null,
    "response": {
        "ip2asn": [
            {
                "asn": 13335,
                "asn_allocation_age": 4141,
                "asn_allocation_date": 20100714,
                "asn_rank": 0,
                "asn_rank_score": 0,
                "asn_reputation": 0,
                "asn_reputation_score": 0,
                "asn_takedown_reputation": 0,
                "asn_takedown_reputation_score": 0,
                "asname": "CLOUDFLARENET, US",
                "date": 20211114,
                "density": 147,
                "ip": "2606:4700:4700::1111",
                "sp_risk_score": 0,
                "subnet": "2606:4700:4700::/48"
            }
        ]
    }
}
```

### Details for Scores

```plaintext
https://api.silentpush.com/api/v1/merge-api/explore/ipv6/ipv6info/2606:4700:4700::1111?explain=1
```

```python
{
    "status_code": 200,
    "error": null,
    "response": {
        "ip2asn": [
            {
                "asn": 13335,
                "asn_allocation_age": 4141,
                "asn_allocation_date": 20100714,
                "asn_rank": 0,
                "asn_rank_score": 0,
                "asn_reputation": 0,
                "asn_reputation_explain": {},
                "asn_reputation_score": 0,
                "asn_takedown_reputation": 0,
                "asn_takedown_reputation_explain": {},
                "asn_takedown_reputation_score": 0,
                "asname": "CLOUDFLARENET, US",
                "date": 20211114,
                "density": 147,
                "ip": "2606:4700:4700::1111",
                "sp_risk_score": 0,
                "sp_risk_score_explain": {
                    "sp_risk_score_decider": "asn_reputation"
                },
                "subnet": "2606:4700:4700::/48"
            }
        ]
    }
}
```

### Silent Push Risk Score for IPv6 Address

```plaintext
https://api.silentpush.com/api/v1/merge-api/explore/ipv6/ipv6info/2606:4700:4700::1111?sparse=sp_risk_score
```

```python
{
    "status_code": 200,
    "error": null,
    "response": {
        "ip2asn": [
            {
                "ip": "2606:4700:4700::1111",
                "sp_risk_score": 0
            }
        ]
    }
}
```
