---
title: "Bulk IPv4 Information"
slug: "bulk-ipv4-information"
updated: 2026-01-07T16:38:27Z
published: 2026-01-07T16:38:27Z
canonical: "help.silentpush.com/bulk-ipv4-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.

# Bulk IPv4 Information

```plaintext
POST /explore/bulk/ip2asn/ipv4
```

Get information for multiple IPv4 addresses.

| **JSON Parameters:** | - **body (JSON)** *(required)* - - a JSON object containing a list of IPv4 addresses - ```json {"ips": ["<ip1>","<ip2>",...,"<ipN>"]} ``` |
| --- | --- |
| **Request headers:** | - *X-API-KEY - api-key* - Content-Type - application/json |

## Example Request

```plaintext
https://api.silentpush.com/api/v1/merge-api/explore/bulk/ip2asn/ipv4 \
     -d '{"ips": ["1.1.1.1", "9.9.9.9"]}'
```

## Example Response

```python
{
    "status_code": 200,
    "error": null,
    "response": {
        "ip2asn": [
            {
                "asn": 13335,
                "asn_allocation_age": 4014,
                "asn_allocation_date": 20100714,
                "asn_rank": 0,
                "asn_rank_score": 0,
                "asn_reputation": 16,
                "asn_reputation_score": 16,
                "asn_takedown_reputation": 0,
                "asn_takedown_reputation_score": 0,
                "asname": "CLOUDFLARENET, US",
                "benign_info": {
                    "actor": "",
                    "known_benign": false,
                    "tags": []
                },
                "date": 20210710,
                "density": 37852,
                "ip": "1.1.1.1",
                "ip_is_dsl_dynamic": false,
                "ip_is_dsl_dynamic_score": 0,
                "ip_is_tor_exit_node": false,
                "ip_location": {
                    "continent_code": "OC",
                    "continent_name": "Oceania",
                    "country_code": "AU",
                    "country_is_in_european_union": false,
                    "country_name": "Australia"
                },
                "ip_ptr": "one.one.one.one",
                "malscore": 0,
                "sinkhole_info": {
                    "known_sinkhole_ip": false,
                    "tags": []
                },
                "subnet": "1.1.1.0/24",
                "subnet_allocation_age": 3621,
                "subnet_allocation_date": 20110811,
                "subnet_reputation": 0,
                "subnet_reputation_score": 0
            },
            {
                "asn": 19281,
                "asn_allocation_age": 1396,
                "asn_allocation_date": 20170913,
                "asn_rank": 0,
                "asn_rank_score": 0,
                "asn_reputation": 0,
                "asn_reputation_score": 0,
                "asn_takedown_reputation": 0,
                "asn_takedown_reputation_score": 0,
                "asname": "QUAD9-AS-1, US",
                "benign_info": {
                    "actor": "",
                    "known_benign": false,
                    "tags": []
                },
                "date": 20210710,
                "density": 161,
                "ip": "9.9.9.9",
                "ip_is_dsl_dynamic": false,
                "ip_is_dsl_dynamic_score": 0,
                "ip_is_tor_exit_node": false,
                "ip_location": {
                    "continent_code": "NA",
                    "continent_name": "North America",
                    "country_code": "US",
                    "country_is_in_european_union": false,
                    "country_name": "United States"
                },
                "ip_ptr": "dns9.quad9.net",
                "malscore": 0,
                "sinkhole_info": {
                    "known_sinkhole_ip": false,
                    "tags": []
                },
                "subnet": "9.9.9.0/24",
                "subnet_allocation_age": 1396,
                "subnet_allocation_date": 20170913,
                "subnet_reputation": 0,
                "subnet_reputation_score": 0
            }
        ]
    }
}
```
