/ipdata | Type: Application | PCID required: Yes
Tools
| Tool | Description |
|---|---|
ipdata_bulk_lookup | Look up geolocation and threat data for multiple IP addresses |
ipdata_lookup_asn | Look up detailed information for an Autonomous System Number |
ipdata_lookup_ip | Look up geolocation and threat data for an IP address |
ipdata_bulk_lookup
Look up geolocation and threat data for multiple IP addresses Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
fields | string | No | — | Comma-separated list of fields to return for each IP. Available fields: ip, is_eu, city, region, region_code, country_name, country_code, continent_name, continent_code, latitude, longitude, postal, calling_code, flag, emoji_flag, emoji_unicode, asn, carrier, languages, currency, time_zone, threat, company, count. Omit to return all fields. |
body | string[] | Yes | — | JSON array of IPv4 or IPv6 addresses to look up (max 100) |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"fields": {
"type": "string",
"description": "Comma-separated list of fields to return for each IP. Available fields: ip, is_eu, city, region, region_code, country_name, country_code, continent_name, continent_code, latitude, longitude, postal, calling_code, flag, emoji_flag, emoji_unicode, asn, carrier, languages, currency, time_zone, threat, company, count. Omit to return all fields."
},
"body": {
"type": "array",
"items": {
"type": "string"
},
"description": "JSON array of IPv4 or IPv6 addresses to look up (max 100)"
}
},
"required": [
"PCID",
"body"
]
}
ipdata_lookup_asn
Look up detailed information for an Autonomous System Number Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
asn | string | Yes | — | Autonomous System Number prefixed with ‘AS’ (e.g. ‘AS15169’, ‘AS2’, ‘AS13335’) |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"asn": {
"type": "string",
"description": "Autonomous System Number prefixed with 'AS' (e.g. 'AS15169', 'AS2', 'AS13335')"
}
},
"required": [
"PCID",
"asn"
]
}
ipdata_lookup_ip
Look up geolocation and threat data for an IP address Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
ip | string | Yes | — | IPv4 or IPv6 address to look up (e.g. ‘8.8.8.8’ or ‘2001:4860:4860::8888’) |
fields | string | No | — | Comma-separated list of fields to return. Available fields: ip, is_eu, city, region, region_code, country_name, country_code, continent_name, continent_code, latitude, longitude, postal, calling_code, flag, emoji_flag, emoji_unicode, asn, carrier, languages, currency, time_zone, threat, company, count. Omit to return all fields. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"ip": {
"type": "string",
"description": "IPv4 or IPv6 address to look up (e.g. '8.8.8.8' or '2001:4860:4860::8888')"
},
"fields": {
"type": "string",
"description": "Comma-separated list of fields to return. Available fields: ip, is_eu, city, region, region_code, country_name, country_code, continent_name, continent_code, latitude, longitude, postal, calling_code, flag, emoji_flag, emoji_unicode, asn, carrier, languages, currency, time_zone, threat, company, count. Omit to return all fields."
}
},
"required": [
"PCID",
"ip"
]
}

