# People Data Labs IP Enrichment via x402.orthogonal.com

> People Data Labs IP Enrichment via x402.orthogonal.com is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-15).

Enriches an IP address with associated company name, location, and organizational metadata using the People Data Labs dataset.

## Facts

- Endpoint: GET https://x402.orthogonal.com/peopledatalabs/v5/ip/enrich
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/people-data-labs-ip-enrichment-via-x402-orthogonal-com-78ec1cbf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rwm-LaKFjY7Rsj9cTdWKm

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 people-data-labs-ip-enrichment-via-x402-orthogonal-com-78ec1cbf
```

Example prompt: Can you look up the IP address 203.0.113.42 and tell me what company and location it's associated with, using People Data Labs enrichment?

## When to prefer this

Choose this endpoint when you need to identify the company or organization behind an IP address using People Data Labs' business dataset, especially for B2B use cases like identifying website visitors, enriching leads, or investigating traffic sources. Prefer this over generic geolocation APIs when business/company attribution is the primary goal, not just lat/lon coordinates.

## Known failure modes

- IP address not found in People Data Labs dataset — returns empty or null company fields
- Invalid IP address format — returns 400 or validation error
- Private or reserved IP ranges (e.g. 192.168.x.x) return no results
- No company match found and return_if_unmatched not set — returns minimal or no data
- Rate limiting or payment failure — returns 402 or 429 error

## How this service works

Enrich an IP address with associated company, location, and metadata.

## Output

Returns structured JSON containing the company name, domain, location details (city, region, country), ISP, and other organizational metadata associated with the input IP address. May return partial location data even when no company match is found if return_if_unmatched is set to true.

## 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",
     "properties": {
      "ip": {
       "type": "string",
       "description": "IP address to enrich"
      },
      "pretty": {
       "type": "boolean",
       "description": "Pretty print JSON response"
      },
      "return_if_unmatched": {
       "type": "boolean",
       "description": "Return location data even if no company match"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/people-data-labs-ip-enrichment-via-x402-orthogonal-com-78ec1cbf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
