# Tomba Combined Person & Company Lookup by Email

> Tomba Combined Person & Company Lookup by Email is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns combined person and company information enriched from a given email address.

## Facts

- Endpoint: GET https://x402.orthogonal.com/tomba/v1/combined/find
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tomba-combined-person-company-lookup-by-email-382527e1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oQ1O8hBzRQacKJHf1e39m

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 tomba-combined-person-company-lookup-by-email-382527e1
```

Example prompt: Can you look up the person and company details for the email address john.smith@acme.com and tell me who they are, their job title, and what the company does?

## When to prefer this

Use this endpoint when you have an email address and need both person-level details (name, title) and company-level information (employer, industry) in a single call. It is ideal for lead enrichment, sales prospecting, and CRM data augmentation workflows where you want to avoid separate person and company lookup calls.

## Known failure modes

- Email not found in database — returns empty or null results
- Invalid email format — returns a 400 or validation error
- Email domain not associated with any known company — partial results with no company data
- Rate limiting or payment failure — returns 402 or 429 error
- Temporary upstream Tomba API outage — returns 5xx error

## How this service works

Get combined person and company information from an email.

## Output

A combined JSON object containing enriched person data (name, job title, LinkedIn profile, location) and company data (company name, industry, size, website, description) associated with the provided email address.

## 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": {
      "email": {
       "type": "string",
       "description": "Email address to enrich"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tomba-combined-person-company-lookup-by-email-382527e1/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)
