---
title: "ASN Lookup"
slug: "asn-lookup"
updated: 2026-01-08T16:31:34Z
published: 2026-01-08T16:31:34Z
---

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

# ASN Lookup

```plaintext
GET /explore/asn/lookup
```

Show all ASNs with name matching the query parameter

| Parameters | Description |
| --- | --- |
| Query Parameters | - **asname = (string) (optional) –** - show all AS Names beginning with string - **asname_starts_with = (string) (optional) –** - show all AS Names beginning with string - **asname_contains = (string) (optional) –** - show all AS Names containing string - **asnum = (int) (optional) –** - show AS Name for AS Number |
| Request Headers | X-API-KEY – api-key |

> [!NOTE]
> Tip
> 
> This can be used to check which ASNs will be included when the asname parameters are used in other API endpoints.

## Example Request

```plaintext
https://api.silentpush.com/api/v1/merge-api/explore/asn/lookup?asname=microsoft
```

## Example Response

```python
{
    "status_code": 200,
    "error": null,
    "response": {
        "records": [
            {
                "asn": 3598,
                "asname": "MICROSOFT-CORP-AS US"
            },
            {
                "asn": 5761,
                "asname": "MICROSOFT-CORP-MSN-AS-SATURN US"
            },
            {
                "asn": 6182,
                "asname": "MICROSOFT-CORP-MSN-AS-4 US"
            },
            {
                "asn": 6291,
                "asname": "MICROSOFT-CORP-MSN-AS US"
            },
            {
                "asn": 6584,
                "asname": "MICROSOFT-GP-AS US"
            },
            {
                "asn": 8068,
                "asname": "MICROSOFT-CORP-MSN-AS-BLOCK US"
            },
            {
                "asn": 8069,
                "asname": "MICROSOFT-CORP-MSN-AS-BLOCK US"
            },
            {
                "asn": 8070,
                "asname": "MICROSOFT-CORP-MSN-AS-BLOCK US"
            },
            {
                "asn": 8071,
                "asname": "MICROSOFT-CORP-MSN-AS-BLOCK US"
            },
            {
                "asn": 8072,
                "asname": "MICROSOFT-CORP-MSN-AS-BLOCK US"
            },
            {
                "asn": 8073,
                "asname": "MICROSOFT-CORP-MSN-AS-BLOCK US"
            },
            {
                "asn": 8074,
                "asname": "MICROSOFT-CORP-MSN-AS-BLOCK US"
            },
            {
                "asn": 8075,
                "asname": "MICROSOFT-CORP-MSN-AS-BLOCK US"
            },
            {
                "asn": 12076,
                "asname": "MICROSOFT US"
            },
            {
                "asn": 13399,
                "asname": "MICROSOFT-CORP-MSN-AS-2 US"
            },
            {
                "asn": 14719,
                "asname": "MICROSOFT-CORP-BCENTRAL US"
            },
            {
                "asn": 20046,
                "asname": "MICROSOFT-BOS US"
            },
            {
                "asn": 23468,
                "asname": "MICROSOFT-CORP-XBOX-ONLINE US"
            },
            {
                "asn": 35106,
                "asname": "MICROSOFT-LIVE-MEETING GB"
            },
            {
                "asn": 45139,
                "asname": "MICROSOFT-AS-AP Microsoft Corp SG"
            },
            {
                "asn": 52985,
                "asname": "Microsoft do Brasil Imp. e Com. Software e Video G BR"
            },
            {
                "asn": 395496,
                "asname": "MICROSOFT-CORP-AS-BLOCK-MSIT3 US"
            },
            {
                "asn": 395524,
                "asname": "MICROSOFT-CORP-AS-BLOCK-MSIT4 US"
            },
            {
                "asn": 395851,
                "asname": "MICROSOFT-CORP-AS-BLOCK-MSIT2 US"
            },
            {
                "asn": 396463,
                "asname": "MICROSOFT-CORP-AS-BLOCK-MSIT US"
            },
            {
                "asn": 398575,
                "asname": "MICROSOFT-AZURE-ORBITAL US"
            },
            {
                "asn": 398656,
                "asname": "MICROSOFT-AZURE-DEDICATED US"
            },
            {
                "asn": 398657,
                "asname": "MICROSOFT-AZURE-DEDICATED US"
            },
            {
                "asn": 398658,
                "asname": "MICROSOFT-AZURE-DEDICATED US"
            },
            {
                "asn": 398659,
                "asname": "MICROSOFT-AZURE-DEDICATED US"
            },
            {
                "asn": 398660,
                "asname": "MICROSOFT-AZURE-DEDICATED US"
            },
            {
                "asn": 398661,
                "asname": "MICROSOFT-AZURE-DEDICATED US"
            }
        ]
    }
}
```

###
