# Orthogonal Phone Intelligence

> Orthogonal Phone Intelligence is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Returns detailed intelligence on a phone number including carrier, line type, geographic location, risk score, and data breach exposure.

## Facts

- Endpoint: GET https://x402.orthogonal.com/phone-intelligence/v1
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-phone-intelligence-2fb2f0ce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WZ5XW5mdJa_V9bl35fnFP

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 orthogonal-phone-intelligence-2fb2f0ce
```

Example prompt: Can you pull full intelligence on the phone number +14155552671 — I need the carrier, whether it's mobile or VoIP, the location, a risk score, and any data breaches it's been found in?

## When to prefer this

Choose this endpoint when you need comprehensive phone number intelligence beyond simple validation — specifically when you need carrier details, line type classification, fraud risk scoring, AND breach data all in a single call. Prefer this over basic phone validation endpoints when fraud detection or security screening is the primary goal.

## Known failure modes

- Invalid or malformed phone number returns an error or empty result
- Number not found in intelligence databases returns partial data
- Rate limiting or payment failure results in 402 response
- International numbers outside coverage region may return incomplete carrier or location data

## How this service works

Get detailed intelligence about a phone number including carrier, line type, location, risk score, and breach data.

## Output

Returns a structured record containing the phone carrier name, line type (mobile, landline, VoIP, prepaid, etc.), geographic location (country, region, city), a numerical risk score indicating likelihood of fraud or abuse, and any known data breach exposures associated with that number.

## 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": {
      "phone": {
       "type": "string",
       "description": "The phone number to look up"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-phone-intelligence-2fb2f0ce/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)
