# CrowdPull Marketplace Leads API

> CrowdPull Marketplace Leads API is a paid API for AI agents from crowdpull.click, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Scrapes and structures public marketplace web pages into lead datasets including listings, sellers, prices, and contact signals.

## Facts

- Endpoint: POST https://crowdpull.click/api/instant/marketplace-leads
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crowdpull-marketplace-leads-api-d84040f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rSiPPmXf79pr2Qsc3Rbi_

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 crowdpull-marketplace-leads-api-d84040f5 -d '<json body>'
```

Example prompt: Pull up to 50 live marketplace leads for used furniture sellers in Austin, TX — search for 'mid-century modern sofa' across public marketplace sites, refreshed within the last 2 hours.

## When to prefer this

Use this endpoint when you need structured lead data from public marketplace pages without building your own scraper, especially when you need location-filtered, freshness-controlled, multi-source aggregation of marketplace listings at low per-call cost.

## Known failure modes

- No results found for the given query or location — empty dataset returned
- Source sites unavailable or blocked — partial or empty response
- maxAgeMinutes too restrictive — no fresh data available within the window
- Query too broad — returns noisy or irrelevant listings
- Live refresh fails — may fall back to cached data or return error

## How this service works

CrowdPull turns public web pages into useful datasets for marketplaces, housing, reviews, jobs, social posts, drug prices, video, and public records.

## Output

Returns a JSON object containing structured marketplace lead records extracted from public web pages, including listing details, seller signals, pricing, and other available metadata from the specified sources and location.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "query": {
     "type": "string"
    },
    "sources": {
     "type": "array",
     "items": {
      "type": "string"
     }
    },
    "location": {
     "type": "string"
    },
    "maxItems": {
     "type": "integer",
     "default": 25,
     "maximum": 100,
     "minimum": 1
    },
    "refreshLive": {
     "type": "boolean",
     "default": true
    },
    "searchQuery": {
     "type": "string"
    },
    "maxAgeMinutes": {
     "type": "integer",
     "default": 240,
     "maximum": 1440,
     "minimum": 1
    }
   },
   "additionalProperties": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "type": "object",
  "additionalProperties": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crowdpull-marketplace-leads-api-d84040f5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crowdpull.click](https://www.zero.xyz/host/crowdpull.click/llms.txt)
