OfferUp Scraper avatar

OfferUp Scraper

Pricing

from $10.00 / 1,000 results

Go to Apify Store
OfferUp Scraper

OfferUp Scraper

Scrape OfferUp.com listings by keyword with filters for location, category, condition, price, delivery, and sorting. Optional detail enrichment includes descriptions, seller info, GPS, stats, and images.

Pricing

from $10.00 / 1,000 results

Rating

0.0

(0)

Developer

Jamshaid Arif

Jamshaid Arif

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

OfferUp Scraper (Apify Actor)

Scrape OfferUp.com classifieds by keyword, with filters for location, radius, category, condition, price range, delivery type and sort order. Optional detail-page enrichment pulls full description, seller info, GPS, and all photos.

Input

FieldTypeDefaultDescription
querystring (required)Search keywords
locationstringCity, state, or ZIP. Leave blank to use whatever location OfferUp infers from the proxy's IP.
radiusint (0–200)Miles around location
categoryIdstringOptional numeric category ID
minPrice / maxPriceintPrice range (USD)
conditionenumanynew / used / refurbished / for_parts
deliveryenumanylocal / shipping
sortenumrelevantrelevant / new / price_asc / price_desc
maxPagesint (1–50)1Search pages to fetch
includeDetailsboolfalsePer-item detail page fetch
maxListingsint0Hard cap on items pushed
impersonateenumchrome124curl_cffi TLS profile
proxyConfigurationobjectRESIDENTIAL (US)Proxy settings

Example input

{
"query": "macbook pro",
"location": "Seattle, WA",
"radius": 50,
"minPrice": 400,
"maxPrice": 1500,
"condition": "used",
"delivery": "local",
"sort": "new",
"maxPages": 3,
"includeDetails": true,
"maxListings": 100,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"],
"apifyProxyCountry": "US"
}
}

Output

Search-only item

{
"id": "1234567890",
"title": "MacBook Pro 14\" M3 Pro 18GB 1TB — Mint Condition",
"price": "$1,450",
"price_value": 1450,
"image": "https://images.offerupnow.com/.../jpg",
"location": "Bellevue, WA",
"url": "https://offerup.com/item/detail/1234567890/macbook-pro-14",
"is_promoted": false
}

With includeDetails: true, each item additionally carries

{
"description": "Selling my 14-inch M3 Pro MacBook, bought last year...",
"condition": "Used - like new",
"category": "Computers",
"category_id": 11,
"latitude": 47.6101,
"longitude": -122.2015,
"posted": "2026-05-22T14:30:00Z",
"updated": "2026-05-24T09:15:00Z",
"views": 247,
"saves": 18,
"shipping_available": false,
"delivery_methods": ["local_pickup"],
"images": ["https://images.offerupnow.com/.../1.jpg", "..."],
"seller": {
"id": "u-987654321",
"name": "Alex M.",
"username": "alex.m",
"rating": 4.9,
"reviews": 87,
"joined": "2019-03-15",
"url": "https://offerup.com/p/alex.m",
"avatar": "https://images.offerupnow.com/avatars/..."
}
}