# RocketReach Person & Company Lookup

> RocketReach Person & Company Lookup 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-15).

Look up a person's professional profile and their associated company data in a single request using name, email, LinkedIn URL, or employer.

## Facts

- Endpoint: GET https://x402.orthogonal.com/rocketreach/profile-company/lookup
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rocketreach-person-company-lookup-1cda3454
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EbfUt2IbQEQ6MT17Ey4Wp

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-company-lookup-1cda3454
```

Example prompt: Can you look up Jane Smith from Acme Corp on RocketReach and pull back her professional profile along with her company details? Her email is jane.smith@acme.com.

## When to prefer this

Choose this endpoint when you need to enrich a contact with both personal professional details and company-level data in a single API call, particularly for B2B sales, recruiting, or CRM enrichment workflows. Prefer this over separate person and company lookups when you already have at least one identifier (name, email, or LinkedIn URL). Best when the underlying RocketReach database coverage is sufficient for your target audience (primarily English-language professional markets).

## Known failure modes

- Person not found in RocketReach database — returns empty or null result
- Ambiguous name with no employer provided leads to wrong person match
- Invalid or malformed LinkedIn URL causes lookup failure
- Email domain does not match known company records
- Rate limiting or payment failure returns 402 error

## How this service works

Look up a person and their associated company data in a single request.

## Output

Returns a combined profile object containing the person's professional details (name, job title, location, social profiles) and associated company data (company name, size, industry, website) sourced from RocketReach.

## 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_employer": {
       "type": "string",
       "description": "Current employer name"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rocketreach-person-company-lookup-1cda3454/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)
