# Interzoid IP Address Profile API

> Interzoid IP Address Profile API is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Retrieves a comprehensive profile for an IPv4 or IPv6 address including geolocation, organization, ASN, CIDR, hostname, reputation, and abuse contact

## Facts

- Endpoint: GET https://api.interzoid.com/getipprofile
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-ip-address-profile-api-52b59f80
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GTbq62zZsOzYAoha_1AFg

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability interzoid-ip-address-profile-api-52b59f80
```

Example prompt: Can you give me the full profile for IP address 8.8.8.8 — I want to know who owns it, where it's located, its ASN, CIDR block, hostname, and whether its reputation is clean or flagged?

## When to prefer this

Use this endpoint when you need a comprehensive, AI-enriched IP address profile that includes not just geolocation but also reputation scoring, organization details, ASN/CIDR routing info, and abuse contacts — especially useful for security investigations, fraud detection, or data enrichment pipelines where a single call needs to return multiple dimensions of IP intelligence.

## Known failure modes

- Invalid or malformed IP address returns an error status
- Private or reserved IP ranges may return limited or no data
- Network timeout or service unavailability returns HTTP 5xx
- Insufficient credits returns a credits exhausted error
- IPv6 address not recognized returns partial or empty profile

## How this service works

Get comprehensive profile information for an IP address including geolocation, ISP, organization, connection type, CIDR block, and reputation assessment.

## Output

A JSON object containing the IP's ASN, CIDR block, organization name, geolocation (city, state, country), hostname, reputation assessment (e.g. 'Clean - Major technology company...'), abuse contact email, IP version (IPv4/IPv6), and a success/error status code.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "lookup": "8.8.8.8"
  }
 },
 "output": {
  "type": "object"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "lookup"
     ],
     "properties": {
      "lookup": {
       "type": "string",
       "description": "IPv4 or IPv6 address to profile"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ASN": "AS15169",
  "CIDR": "8.8.8.0/24",
  "Code": "Success",
  "Credits": "0",
  "Version": "IPv4",
  "Hostname": "dns.google",
  "Reputation": "Clean - Major technology company operating public DNS resolver service with strong security practices",
  "Geolocation": "Mountain View, California, United States",
  "AbuseContact": "abuse@google.com",
  "Organization": "Google LLC"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-ip-address-profile-api-52b59f80/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.interzoid.com](https://www.zero.xyz/host/api.interzoid.com/llms.txt)
