# CrowdPull Actors List Search

> CrowdPull Actors List Search is a paid API for AI agents from crowdpull.click, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Searches and lists available CrowdPull web-scraping actors (scrapers) by keyword or family slug, returning metadata about which public-data extractors are available.

## Facts

- Endpoint: POST https://crowdpull.click/api/actors/list
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crowdpull-actors-list-search-cadb1e5c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_glW6JRoLSCqUQx2VfpqXE

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-actors-list-search-cadb1e5c -d '<json body>'
```

Example prompt: Search CrowdPull for up to 10 available scrapers related to 'Facebook Marketplace' listings so I can see which actors exist for pulling marketplace data.

## When to prefer this

Use this endpoint when you need to discover which CrowdPull scrapers exist before invoking one — i.e., as a catalog/search step before running an actual data extraction. Prefer this over guessing actor names directly when exploring CrowdPull's coverage for a new domain like housing, reviews, or job boards.

## Known failure modes

- limit out of range (must be 1-20) returns validation error
- empty results array if no actors match the query or family slug
- invalid family slug returns empty or error response
- missing required POST body returns 400
- payment not included or invalid returns 402 payment required

## 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 with a count of matching actors, a source identifier, a paidApi reference object, and a results array where each item describes an available CrowdPull scraping actor including its name, family, and capabilities for extracting public web data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "default": 10,
   "maximum": 20,
   "minimum": 1
  },
  "query": {
   "type": "string",
   "description": "Search text such as Facebook Marketplace, OfferUp, AliExpress reviews, furniture, local deals, or product reviews."
  },
  "family": {
   "type": "string",
   "description": "Optional CrowdPull family slug such as marketplace-listings, facebook-data, or ecommerce-products-reviews."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "type": "object",
  "properties": {
   "count": {
    "type": "integer"
   },
   "source": {
    "type": "string"
   },
   "paidApi": {
    "type": "object"
   },
   "results": {
    "type": "array",
    "items": {
     "type": "object"
    }
   }
  },
  "additionalProperties": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crowdpull-actors-list-search-cadb1e5c/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)
