# Orthogonal Bytemine Contact Enrichment

> Orthogonal Bytemine Contact Enrichment is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Enriches a single contact by email, phone, LinkedIn, Facebook, or name+company, returning a full profile with work email, phone, job title, and company info.

## Facts

- Endpoint: POST https://x402.orthogonal.com/bytemine/contacts/enrich
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-bytemine-contact-enrichment-dd9b1eea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FGV5btzOqqzJ713zsTHb4

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-bytemine-contact-enrichment-dd9b1eea -d '<json body>'
```

Example prompt: Can you enrich the contact info for jane.doe@acme.com? I need her job title, phone number, and LinkedIn profile if available — and only return a result if she has a work email on file.

## When to prefer this

Use this endpoint when you have a partial contact identifier (email, phone, LinkedIn URL, or name+company) and need a full professional profile including verified work email, direct dial, and job title. Prefer this over generic people-search APIs when you need structured B2B contact data with filtering by phone/email availability. Best for sales prospecting, lead enrichment, and CRM population workflows.

## Known failure modes

- No match found for provided identifiers — returns empty result and no credit charged
- Ambiguous name+company combination — may return incorrect person
- LinkedIn URL not resolvable — returns null profile
- Invalid email format — request rejected with validation error
- Rate limiting or payment failure — request blocked

## How this service works

Enrich a single contact by email, phone, LinkedIn, Facebook, or name+company. Returns full profile with work email, phone, job title, company info. 1 credit per match.

## Output

Returns a full contact profile including work email, phone number, job title, company name, company domain, and social profile links. Costs 1 credit per matched result. Returns empty or partial if no match is found.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "email": {
   "type": "string",
   "description": "Email address to look up"
  },
  "phone": {
   "type": "string",
   "description": "Phone number to look up"
  },
  "hasPhone": {
   "type": "boolean",
   "description": "Only return if phone available"
  },
  "lastName": {
   "type": "string",
   "description": "Last name"
  },
  "linkedin": {
   "type": "string",
   "description": "LinkedIn profile URL"
  },
  "firstName": {
   "type": "string",
   "description": "First name (combine with lastName/company)"
  },
  "companyName": {
   "type": "string",
   "description": "Company name for lookup"
  },
  "hasWorkEmail": {
   "type": "boolean",
   "description": "Only return if work email available"
  },
  "companyDomain": {
   "type": "string",
   "description": "Company domain for lookup"
  },
  "hasDirectDial": {
   "type": "boolean",
   "description": "Only return if direct dial available"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-bytemine-contact-enrichment-dd9b1eea/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)
