# Orthogonal Person Social Profiles Lookup

> Orthogonal Person Social Profiles Lookup is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.363/call, status unknown (last checked 2026-09-14).

Asynchronously retrieves all social media profiles associated with a given person.

## Facts

- Endpoint: POST https://x402.orthogonal.com/nyne/person/social-profiles
- Price: $0.363/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-person-social-profiles-lookup-da2432fa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CeQqp2Ge-BRvRgjz2-_hF

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-person-social-profiles-lookup-da2432fa -d '<json body>'
```

Example prompt: Find all the social media profiles associated with Jane Smith — she's at janesmith@email.com — and tell me which platforms she's on.

## When to prefer this

Choose this endpoint when you need to discover and aggregate multiple social media profiles for a specific person across platforms in a single call. It is well-suited for OSINT research, lead enrichment, background checks, or identity verification workflows where a comprehensive social media footprint is needed. The async model is ideal for pipelines that can tolerate a short wait in exchange for broader coverage across many social networks.

## Known failure modes

- Person not found — no profiles discovered if the individual has no indexed social presence
- Ambiguous identity — multiple people share the same name, leading to mixed or incorrect results
- Async timeout — retrieval job takes too long or fails to complete
- Invalid input — missing or malformed person identifier causes request rejection
- Rate limiting — too many concurrent requests may be throttled

## How this service works

Start async retrieval of all social media profiles associated with a person.

## Output

An async job is started and returns a request/job identifier. Once complete, the result contains a list of discovered social media profiles for the person, including platform names, profile URLs, usernames/handles, and potentially profile metadata across networks such as Twitter/X, Instagram, LinkedIn, Facebook, TikTok, and others.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "email": {
       "type": "string",
       "description": "Email address to look up"
      },
      "phone": {
       "type": "string",
       "description": "Phone number to look up"
      },
      "callback_url": {
       "type": "string",
       "description": "URL to receive results via webhook"
      },
      "social_media_url": {
       "type": "string",
       "description": "Social media profile URL to find other profiles from"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-person-social-profiles-lookup-da2432fa/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)
