# RocketReach Person Lookup via x402.orthogonal.com

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

Look up a person's professional profile and contact information by name, email, LinkedIn URL, or other identifiers using RocketReach.

## Facts

- Endpoint: GET https://x402.orthogonal.com/rocketreach/person/lookup
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rocketreach-person-lookup-via-x402-orthogonal-com-24707942
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-ZGfWBHjaQtjPlTxJCzfZ

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 rocketreach-person-lookup-via-x402-orthogonal-com-24707942
```

Example prompt: Can you look up Sarah Chen who works at Stripe as a Head of Product — I need her professional contact info including email if available?

## When to prefer this

Use this endpoint when you need to enrich a person's professional contact information and have at least one identifier such as their full name, email, or LinkedIn URL. It is especially suited for B2B sales prospecting, recruiting outreach, or lead enrichment workflows where RocketReach's database coverage is valuable. Prefer this over general web scraping when you want structured, verified contact data rather than raw HTML.

## Known failure modes

- Person not found in RocketReach database — returns empty or no match
- Ambiguous query with multiple matches — may return wrong person
- Missing required identifiers — lookup fails without at least one identifier (name, email, or LinkedIn URL)
- Rate limiting or credit exhaustion — API returns error if export credits are depleted
- Stale data — contact information may be outdated if profile hasn't been recently updated

## How this service works

Look up a person by name, email, LinkedIn URL, or other identifiers. Returns professional profile and contact information. Consumes 1 export credit.

## Output

Returns a professional profile for the matched person, including contact information such as email addresses, current job title, current employer, LinkedIn URL, and other professional details. Consumes 1 export credit per successful lookup.

## 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": {
      "name": {
       "type": "string",
       "description": "Full name of the person"
      },
      "email": {
       "type": "string",
       "description": "Email address"
      },
      "linkedin_url": {
       "type": "string",
       "description": "LinkedIn profile URL"
      },
      "current_title": {
       "type": "string",
       "description": "Current job title"
      },
      "current_employer": {
       "type": "string",
       "description": "Current employer name"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rocketreach-person-lookup-via-x402-orthogonal-com-24707942/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)
