# CrowdPull OfferUp Scraper

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

Scrapes OfferUp listings by search query or URL, returning structured marketplace data including items, prices, conditions, and seller info.

## Facts

- Endpoint: POST https://crowdpull.click/api/actors/offerup-scraper/call
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crowdpull-offerup-scraper-d5a80a53
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eZAisReY8OyfgmoPhR-oh

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-offerup-scraper-d5a80a53 -d '<json body>'
```

Example prompt: Search OfferUp for used road bikes within 50 miles of Denver, CO, priced between $100 and $800, in used or refurbished condition, sorted by lowest price, and return up to 50 listings.

## When to prefer this

Use this endpoint when you need structured OfferUp marketplace listing data — prices, conditions, seller info — by keyword search or URL, especially when filtering by location, price range, delivery type, or item condition. Prefer it over general web scrapers when you specifically need OfferUp data in a clean dataset format.

## Known failure modes

- Invalid or inaccessible OfferUp URL returns an error or empty result
- Location not recognized by OfferUp causes no results
- Exceeding maxItems limit of 250 results in a validation error
- Job times out before results are ready if waitForFinishSeconds is too low
- OfferUp rate limiting or page changes may cause partial or empty result sets
- Invalid condition enum value returns a schema validation 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 job token and job object (with ID, status, and resultSetId) that the agent uses to poll for or retrieve the scraped OfferUp listing dataset once the collection job completes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "required": [],
   "properties": {
    "url": {
     "type": "string",
     "description": "Single public URL accepted by the selected source."
    },
    "urls": {
     "type": "array",
     "items": {
      "type": "string"
     },
     "description": "Public URLs accepted by the selected source."
    },
    "query": {
     "type": "string",
     "description": "Search query or keyword."
    },
    "sortBy": {
     "enum": [
      "-posted",
      "distance",
      "price",
      "-price"
     ],
     "type": "string",
     "default": "-posted"
    },
    "delivery": {
     "enum": [
      "p",
      "s",
      "p_s"
     ],
     "type": "string",
     "default": "p_s"
    },
    "latitude": {
     "type": "number"
    },
    "location": {
     "type": "string",
     "description": "City, ZIP, state, neighborhood, or source-supported location."
    },
    "maxItems": {
     "type": "integer",
     "default": 25,
     "maximum": 250,
     "minimum": 1
    },
    "maxPrice": {
     "type": "integer",
     "minimum": 0
    },
    "minPrice": {
     "type": "integer",
     "minimum": 0
    },
    "condition": {
     "type": "array",
     "items": {
      "enum": [
       "NEW",
       "OPEN_BOX",
       "REFURBISHED",
       "USED",
       "BROKEN",
       "OTHER"
      ],
      "type": "string"
     }
    },
    "longitude": {
     "type": "number"
    },
    "startUrls": {
     "type": "array",
     "items": {
      "type": "string"
     },
     "description": "Public source URLs to collect from."
    },
    "maxResults": {
     "type": "integer",
     "default": 25,
     "maximum": 250,
     "minimum": 1
    },
    "maxListings": {
     "type": "integer",
     "default": 25,
     "maximum": 250,
     "minimum": 1
    },
    "radiusMiles": {
     "type": "integer",
     "default": 30,
     "maximum": 500,
     "minimum": 1
    },
    "searchQuery": {
     "type": "string",
     "description": "Search query or keyword."
    },
    "includeDetails": {
     "type": "boolean",
     "default": false
    }
   },
   "description": "OfferUp Scraper input. Pass the same public URLs, search terms, filters, and limits you would use on the source page. Extra source-specific fields are forwarded to the runner.",
   "additionalProperties": true
  },
  "options": {
   "type": "object",
   "properties": {
    "build": {
     "type": "string",
     "maxLength": 100,
     "minLength": 1
    },
    "m
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "type": "object",
  "required": [
   "token",
   "job"
  ],
  "properties": {
   "job": {
    "type": "object",
    "required": [
     "id",
     "status"
    ],
    "properties": {
     "id": {
      "type": "string"
     },
     "status": {
      "type": "string"
     },
     "resultSetId": {
      "type": "string"
     }
    },
    "additionalProperties": true
   },
   "token": {
    "type": "string"
   }
  },
  "additionalProperties": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crowdpull-offerup-scraper-d5a80a53/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)
