# B2b Lead Magnet Enterprise Quickstart Sample Run

**Use case:** 

Zero-friction sample run of the B2B Lead Enrichment Engine. Discovers and enriches up to 10 leads from a real seed domain, verifying emails via DNS/MX at the low-cost basic_lead tier (no AI intent scoring). Run once to see the real output shape before pointing it at your own seed list or OSM discovery area.

## Input

```json
{
  "discoveryMode": "seedList",
  "seedList": [
    "apify.com"
  ],
  "maxLeads": 10,
  "includeIntentScore": false,
  "skipKnownLeads": false
}
```

## Output

```json
{
  "recipient_or_defendant_name": {
    "label": "Business Name",
    "format": "string"
  },
  "website": {
    "label": "Website",
    "format": "string"
  },
  "discoverySource": {
    "label": "Discovery Source",
    "format": "string"
  },
  "emailsFound": {
    "label": "Emails Found",
    "format": "array"
  },
  "emailPlausible": {
    "label": "Email Plausible",
    "format": "boolean"
  },
  "intentScore": {
    "label": "Intent Score",
    "format": "number"
  },
  "jurisdiction": {
    "label": "Jurisdiction",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [OSM Business Data + DNS Verify - B2B Lead JSON Feed](https://apify.com/stefano_seggio/osm-b2b-lead-verifier.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/stefano_seggio/osm-b2b-lead-verifier.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/stefano_seggio/osm-b2b-lead-verifier.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
