# Bulk IP Geolocation & Network Intelligence (`moving_beacon-owner1/ip-api----bulk-ip-geolocation-network-intelligence`) Actor

Geolocates IP addresses and domains using the ip-api.com service. Supports single lookups, high-speed batch queries (100 IPs per request), CIDR range expansion, and domain resolution. No API key required (45 requests/minute free tier).

- **URL**: https://apify.com/moving\_beacon-owner1/ip-api----bulk-ip-geolocation-network-intelligence.md
- **Developed by:** [Jamshaid Arif](https://apify.com/moving_beacon-owner1) (community)
- **Categories:** Developer tools, Other, Integrations
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $10.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## 🌍 IP-API — Bulk IP Geolocation & Network Intelligence — Apify Actor

Geolocates **IP addresses and domains** using the [ip-api.com](https://ip-api.com/) service. Supports single lookups, high-speed batch queries (100 IPs per request), CIDR range expansion, and domain resolution. **No API key required** (45 requests/minute free tier).

### Features

- **4 lookup modes** — IP list, own-IP detection, CIDR range expansion, domain resolution.
- **Batch API** — sends up to 100 IPs per request for maximum throughput.
- **25 data fields** — country, region, city, coordinates, timezone, ISP, org, ASN, proxy/VPN detection, mobile flag, hosting flag, reverse DNS, currency, continent.
- **CIDR expansion** — enter `8.8.8.0/28` and get all 14 host IPs geolocated automatically.
- **Computed enrichments** — full location string, Google Maps link, IP version, IP type classification, AS number extraction.
- **4 output formats** — enriched, raw, minimal, coordinates-only.
- **Smart rate limiting** — 1.5s delay between batch requests with auto-retry on 429.

### Lookup Modes

| Mode | What it does |
|---|---|
| `ip_list` | Geolocate a list of IPs (comma/newline separated) |
| `own_ip` | Detect and geolocate the actor's outbound IP |
| `ip_range` | Expand a CIDR block and geolocate each host |
| `domains` | Resolve domain names and geolocate their servers |

### Input Examples

#### Bulk IP List

```json
{
    "mode": "ip_list",
    "ipAddresses": "8.8.8.8\n1.1.1.1\n208.67.222.222\n9.9.9.9\n185.228.168.9\n76.76.19.19\n94.140.14.14\n77.88.8.8",
    "fields": ["query", "country", "countryCode", "city", "regionName", "lat", "lon", "timezone", "isp", "org", "as", "proxy", "hosting"],
    "enrichWithLabels": true,
    "outputFormat": "enriched"
}
````

#### CIDR Range Scan

```json
{
    "mode": "ip_range",
    "cidrRange": "8.8.8.0/28",
    "fields": ["query", "country", "city", "isp", "org", "as", "hosting"],
    "outputFormat": "enriched"
}
```

#### Domain Lookup

```json
{
    "mode": "domains",
    "domains": "google.com, github.com, cloudflare.com, facebook.com, amazon.com, microsoft.com, apple.com, openai.com",
    "fields": ["query", "country", "city", "isp", "org", "as", "hosting", "reverse"],
    "outputFormat": "enriched"
}
```

#### Own IP Detection

```json
{
    "mode": "own_ip",
    "enrichWithLabels": true
}
```

### Available Fields (25)

| Field | Description | Example |
|---|---|---|
| `query` | IP address queried | `8.8.8.8` |
| `status` | success or fail | `success` |
| `country` | Country name | `United States` |
| `countryCode` | ISO 3166-1 alpha-2 | `US` |
| `region` | Region code | `VA` |
| `regionName` | Region/state name | `Virginia` |
| `city` | City name | `Ashburn` |
| `district` | District | ` ` |
| `zip` | ZIP / postal code | `20149` |
| `lat` | Latitude | `39.0438` |
| `lon` | Longitude | `-77.4874` |
| `timezone` | IANA timezone | `America/New_York` |
| `offset` | UTC offset (seconds) | `-14400` |
| `currency` | Currency code | `USD` |
| `isp` | ISP name | `Google LLC` |
| `org` | Organization | `Google Public DNS` |
| `as` | AS number + name | `AS15169 Google LLC` |
| `asname` | AS name only | `GOOGLE` |
| `mobile` | Mobile connection | `false` |
| `proxy` | Proxy / VPN detected | `false` |
| `hosting` | Hosting / datacenter | `true` |
| `reverse` | Reverse DNS (PTR) | `dns.google` |
| `continent` | Continent name | `North America` |
| `continentCode` | Continent code | `NA` |

### Enriched Output (computed fields)

| Field | Description | Example |
|---|---|---|
| `full_location` | City, Region, Country | `Ashburn, Virginia, United States` |
| `google_maps_url` | Direct Maps link | `https://www.google.com/maps?q=39.0438,-77.4874` |
| `ip_version` | IPv4, IPv6, or domain | `IPv4` |
| `ip_type` | public, private, loopback, etc. | `public` |
| `as_number` | Extracted AS number | `AS15169` |

### Output Formats

- **Enriched** — all API fields + computed labels (default)
- **Raw** — exact ip-api.com JSON response
- **Minimal** — IP, country, city, region, ISP, status
- **Coords Only** — IP, latitude, longitude, country code, city (for mapping)

### Throughput

The actor uses ip-api's **batch endpoint** (100 IPs per request):

| IPs | Batch Requests | Estimated Time |
|---|---|---|
| 100 | 1 | ~2 seconds |
| 500 | 5 | ~10 seconds |
| 1,000 | 10 | ~20 seconds |
| 5,000 | 50 | ~90 seconds |

### Summary Statistics

The run summary (key-value store → `summary`) includes:

- Country breakdown (top 20)
- ISP breakdown (top 10)
- City breakdown (top 10)
- Proxy/VPN count, hosting/datacenter count, mobile count
- Success vs. failed counts

# Actor input Schema

## `mode` (type: `string`):

Choose how to provide IPs for geolocation.

## `ipAddresses` (type: `string`):

IP addresses to geolocate, one per line or comma-separated. Supports IPv4 and IPv6. Used in 'IP List' mode.

Examples:
8.8.8.8
1.1.1.1
208.67.222.222
2001:4860:4860::8888

## `cidrRange` (type: `string`):

A CIDR block to expand and geolocate (e.g. '8.8.8.0/28'). Max /24 (256 IPs). Used in 'IP Range' mode.

## `domains` (type: `string`):

Domain names to resolve and geolocate, one per line or comma-separated. E.g. 'google.com, github.com, cloudflare.com'. Used in 'Domains' mode.

## `fields` (type: `array`):

Select which geolocation fields to include in the output.

## `skipFailed` (type: `boolean`):

If checked, IPs that fail to geolocate (private, reserved, invalid) are excluded. Otherwise a record with status 'fail' is included.

## `enrichWithLabels` (type: `boolean`):

Add human-friendly computed fields: full\_location string, Google Maps link, IP version, and IP type classification.

## `sortBy` (type: `string`):

How to sort the output.

## `outputFormat` (type: `string`):

How to structure each record.

## `maxResults` (type: `integer`):

Limit output records. 0 = no limit.

## `addSequentialId` (type: `boolean`):

Add auto-incrementing ID to each record.

## Actor input object example

```json
{
  "mode": "ip_list",
  "fields": [
    "query",
    "status",
    "country",
    "countryCode",
    "region",
    "regionName",
    "city",
    "zip",
    "lat",
    "lon",
    "timezone",
    "isp",
    "org",
    "as"
  ],
  "skipFailed": false,
  "enrichWithLabels": true,
  "sortBy": "input_order",
  "outputFormat": "enriched",
  "maxResults": 0,
  "addSequentialId": true
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("moving_beacon-owner1/ip-api----bulk-ip-geolocation-network-intelligence").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("moving_beacon-owner1/ip-api----bulk-ip-geolocation-network-intelligence").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call moving_beacon-owner1/ip-api----bulk-ip-geolocation-network-intelligence --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=moving_beacon-owner1/ip-api----bulk-ip-geolocation-network-intelligence",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Bulk IP Geolocation & Network Intelligence",
        "description": "Geolocates IP addresses and domains using the ip-api.com service. Supports single lookups, high-speed batch queries (100 IPs per request), CIDR range expansion, and domain resolution. No API key required (45 requests/minute free tier).",
        "version": "0.0",
        "x-build-id": "pFyGXBpGgZZd9y5Au"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/moving_beacon-owner1~ip-api----bulk-ip-geolocation-network-intelligence/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-moving_beacon-owner1-ip-api----bulk-ip-geolocation-network-intelligence",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/moving_beacon-owner1~ip-api----bulk-ip-geolocation-network-intelligence/runs": {
            "post": {
                "operationId": "runs-sync-moving_beacon-owner1-ip-api----bulk-ip-geolocation-network-intelligence",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/moving_beacon-owner1~ip-api----bulk-ip-geolocation-network-intelligence/run-sync": {
            "post": {
                "operationId": "run-sync-moving_beacon-owner1-ip-api----bulk-ip-geolocation-network-intelligence",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "Lookup Mode",
                        "enum": [
                            "ip_list",
                            "own_ip",
                            "ip_range",
                            "domains"
                        ],
                        "type": "string",
                        "description": "Choose how to provide IPs for geolocation.",
                        "default": "ip_list"
                    },
                    "ipAddresses": {
                        "title": "IP Addresses",
                        "type": "string",
                        "description": "IP addresses to geolocate, one per line or comma-separated. Supports IPv4 and IPv6. Used in 'IP List' mode.\n\nExamples:\n8.8.8.8\n1.1.1.1\n208.67.222.222\n2001:4860:4860::8888"
                    },
                    "cidrRange": {
                        "title": "CIDR Range",
                        "type": "string",
                        "description": "A CIDR block to expand and geolocate (e.g. '8.8.8.0/28'). Max /24 (256 IPs). Used in 'IP Range' mode."
                    },
                    "domains": {
                        "title": "Domains",
                        "type": "string",
                        "description": "Domain names to resolve and geolocate, one per line or comma-separated. E.g. 'google.com, github.com, cloudflare.com'. Used in 'Domains' mode."
                    },
                    "fields": {
                        "title": "Data Fields",
                        "type": "array",
                        "description": "Select which geolocation fields to include in the output.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "status",
                                "message",
                                "query",
                                "country",
                                "countryCode",
                                "region",
                                "regionName",
                                "city",
                                "district",
                                "zip",
                                "lat",
                                "lon",
                                "timezone",
                                "offset",
                                "currency",
                                "isp",
                                "org",
                                "as",
                                "asname",
                                "mobile",
                                "proxy",
                                "hosting",
                                "reverse",
                                "continent",
                                "continentCode"
                            ],
                            "enumTitles": [
                                "Status (success/fail)",
                                "Error Message",
                                "Queried IP",
                                "Country Name",
                                "Country Code (ISO 3166-1)",
                                "Region Code",
                                "Region/State Name",
                                "City",
                                "District",
                                "ZIP / Postal Code",
                                "Latitude",
                                "Longitude",
                                "Timezone (IANA)",
                                "UTC Offset (seconds)",
                                "Currency Code",
                                "ISP Name",
                                "Organization",
                                "AS Number & Name",
                                "AS Name Only",
                                "Is Mobile Connection",
                                "Is Proxy / VPN",
                                "Is Hosting / Datacenter",
                                "Reverse DNS (PTR)",
                                "Continent Name",
                                "Continent Code"
                            ]
                        },
                        "default": [
                            "query",
                            "status",
                            "country",
                            "countryCode",
                            "region",
                            "regionName",
                            "city",
                            "zip",
                            "lat",
                            "lon",
                            "timezone",
                            "isp",
                            "org",
                            "as"
                        ]
                    },
                    "skipFailed": {
                        "title": "Skip Failed Lookups",
                        "type": "boolean",
                        "description": "If checked, IPs that fail to geolocate (private, reserved, invalid) are excluded. Otherwise a record with status 'fail' is included.",
                        "default": false
                    },
                    "enrichWithLabels": {
                        "title": "Enrich with Labels",
                        "type": "boolean",
                        "description": "Add human-friendly computed fields: full_location string, Google Maps link, IP version, and IP type classification.",
                        "default": true
                    },
                    "sortBy": {
                        "title": "Sort By",
                        "enum": [
                            "input_order",
                            "country_asc",
                            "city_asc",
                            "isp_asc",
                            "lat_asc"
                        ],
                        "type": "string",
                        "description": "How to sort the output.",
                        "default": "input_order"
                    },
                    "outputFormat": {
                        "title": "Output Format",
                        "enum": [
                            "enriched",
                            "raw",
                            "minimal",
                            "csv_coords"
                        ],
                        "type": "string",
                        "description": "How to structure each record.",
                        "default": "enriched"
                    },
                    "maxResults": {
                        "title": "Maximum Results",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Limit output records. 0 = no limit.",
                        "default": 0
                    },
                    "addSequentialId": {
                        "title": "Add Sequential ID",
                        "type": "boolean",
                        "description": "Add auto-incrementing ID to each record.",
                        "default": true
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
