batch_lookup
Retrieve geolocation and network data for multiple IP addresses simultaneously using IPInfo's API to analyze IP intelligence in bulk operations.
Instructions
Batch lookup multiple IP addresses.
Args: ips: List of IP addresses to lookup (can include field paths like "8.8.8.8/city")
Returns: Dictionary with IP information for each address.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| ips | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "ips": {
      "items": {
        "type": "string"
      },
      "title": "Ips",
      "type": "array"
    }
  },
  "required": [
    "ips"
  ],
  "type": "object"
}