# DopamineDesk Lead Enrichment API

> DopamineDesk Lead Enrichment API is a paid API for AI agents from ai-data-marketplace-1042299154756.us-central1.run.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Enriches a sales lead with verified contact details (email, phone) and company firmographics given a name, domain, or LinkedIn URL

## Facts

- Endpoint: GET https://ai-data-marketplace-1042299154756.us-central1.run.app/api/v1/enrich_leads
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dopaminedesk-lead-enrichment-api-f947206d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xJ1XxIUZfW4zy-xN1ch1n

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 dopaminedesk-lead-enrichment-api-f947206d
```

Example prompt: Can you look up the work email and phone number for John Smith at microsoft.com and tell me how big the company is? You can also use his LinkedIn if it helps: linkedin.com/in/johnsmith.

## When to prefer this

Choose this endpoint when you need real-time, per-lead contact enrichment with email verification included in a single call, especially for B2B sales workflows that require verified emails and phone numbers alongside firmographic data. It settles via x402 USDC micropayments on Base, making it ideal for agent-native pipelines that already handle x402 payments without API key management.

## Known failure modes

- Contact not found in database — partial or empty fields returned
- Invalid or unresolvable domain — lookup fails with error
- LinkedIn URL not recognized or blocked — falls back to name+domain lookup
- Email verification inconclusive — email_verified may be false or null
- Rate limiting or payment failure via x402 — 402 or 429 response

## How this service works

Resolve up to ten company-domain strings against Clearbit's live company autocomplete service.

## Output

A JSON object containing the contact's verified work email, phone number, company domain, company size bucket (e.g. '10000+'), and a boolean email_verified flag confirming whether the email address is deliverable.

## 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 contact."
      },
      "domain": {
       "type": "string",
       "description": "Company website domain."
      },
      "linkedin_url": {
       "type": "string",
       "description": "LinkedIn profile URL."
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "success",
      "source",
      "data",
      "marketplace_metadata"
     ],
     "properties": {
      "data": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "domain",
         "matches"
        ],
        "properties": {
         "domain": {
          "type": "string"
         },
         "matches": {
          "type": "array",
          "items": {}
         }
        },
        "additionalProperties": true
       }
      },
      "source": {
       "type": "string"
      },
      "success": {
       "type": "boolean"
      },
      "marketplace_metadata": {
       "type": "object",
       "required": [
        "data_mode",
        "billable",
        "availability",
        "source"
       ],
       "properties": {
        "source": {
         "type": "string"
        },
        "billable": {
         "type": "boolean"
        },
        "data_mode": {
         "type": "string"
        },
        "availability": {
         "type": "string"
        }
       },
       "additionalProperties": true
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "domain": "microsoft.com",
    "matches": [
     "[nested detail omitted from the challenge header; see the full example in /openapi.json]",
     "[nested detail omitted from the challenge header; see the full example in /openapi.json]"
    ]
   }
  ],
  "source": "Clearbit Autocomplete",
  "success": true,
  "marketplace_metadata": {
   "source": "Clearbit Autocomplete API",
   "billable": true,
   "data_mode": "live_source",
   "availability": "operational"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dopaminedesk-lead-enrichment-api-f947206d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ai-data-marketplace-1042299154756.us-central1.run.app](https://www.zero.xyz/host/ai-data-marketplace-1042299154756.us-central1.run.app/llms.txt)
