POST /api/olx/users/offers
Price: 5 credits
List all active offers of one OLX seller: full offer cards with title, price, category, location, photos and attributes. Supports narrowing by category and result ordering.
List what a given OLX seller currently has for sale, on any OLX country marketplace via domain. Accepts the numeric seller id (seller.id on any offer), the user uuid or the seller's profile URL — the same identifiers as the users endpoint — and returns full offer objects, same shape as the offers endpoint. Useful for sizing a shop's assortment or tracking a dealer's inventory. Narrow with category_id and order with sort.
access-token string requiredtimeout integer — Max scrapping execution timeout (in seconds) (default: 300; min: 20; max: 1500)domain string — OLX country marketplace domain. (default: "olx.pl"; one of: "olx.pl", "olx.ua", "olx.ro", "olx.bg", "olx.pt", "olx.kz", "olx.uz")user string required — Seller identifier: numeric user id, user uuid, or the seller's OLX profile URL. (examples: "31707449", "e2a6f25c-374b-4145-92fa-534805b7ce1e")count integer required — Max number of offers to return (min: 1; max: 1000)category_id integer nullable — Restrict results to this category id (>: 0)sort string nullable — Result ordering; source default order when omitted (one of: "relevance", "newest", "oldest", "price_asc", "price_desc")@type string (default: "OlxOffer")id string requiredurl string nullableoffer_title string nullabledescription string nullablestatus string nullableoffer_type string nullableis_business boolean nullableprice number nullableprevious_price number nullablecurrency string nullableprice_label string nullableis_negotiable boolean nullableis_price_arranged boolean nullablesalary_from number nullablesalary_to number nullablesalary_currency string nullablesalary_period string nullableis_salary_gross boolean nullablecreated_at integer nullablerefreshed_at integer nullablepushed_at integer nullableomnibus_pushed_at integer nullableexpires_at integer nullablecategory_id string nullablecategory_type string nullablelocation object nullable@type string (default: "OlxOfferLocation")city_id string nullablecity string nullablecity_alias string nullabledistrict_id string nullabledistrict string nullableregion_id string nullableregion string nullableregion_alias string nullablelatitude number nullablelongitude number nullableradius number nullablezoom integer nullableis_detailed boolean nullableseller object nullable@type string (default: "OlxOfferSeller")id string nullableuuid string nullablename string nullablecompany_name string nullableabout string nullableimage string nullablealias string nullablehas_business_page boolean nullableis_online boolean nullablecreated_at integer nullablelast_seen_at integer nullablesocial_network_account_type string nullablehas_other_offers boolean nullablecontact_name string nullableattributes array (default: [])@type string (default: "OlxOfferAttribute")key string requiredname string nullabletype string nullablevalues array (default: [])label string nullablekey_attributes array (default: [])images array (default: [])is_highlighted boolean nullableis_top_ad boolean nullableis_promoted boolean nullableis_b2c_ad boolean nullablepromotion_options array (default: [])has_phone boolean nullablehas_chat boolean nullablehas_negotiation boolean nullablehas_delivery boolean nullabledelivery_mode string nullablehas_gpsr_info boolean nullableis_phone_protected boolean nullableexternal_url string nullablepartner_code string nullableshop_alias string nullable422 — The request body did not validate Check the fields against this schema. A URN with the wrong prefix is the most common cause.408 — The request ran past its time limit Raise `timeout` in the request body, up to the maximum this endpoint documents. Lowering `count` or turning off the `with_*` flags also helps, because less work finishes sooner.412 — Seller not found on this OLX domain Retrying will not help: either the entity does not exist, or the input points at a different one.429 — Too many requests: a rate limit or a usage window is exhausted When the response carries an X-Retry-After header, wait that many seconds and retry: the same number is in the body as `detail.retry_after`, and the limit clears once that window passes. The message in the body names the limit that was hit.500 — Something broke on our side Retrying will not help. If it keeps happening, send us the X-Request-ID from the response headers.529 — Rate limit reached, or the endpoint is overloaded Wait at least 30 seconds, then retry.X-Error — Error message text (present only on error)X-Request-ID — Unique request identifierX-Execution-Time — Execution time in secondsX-Result-Count — How many records the body carries. 0 means an empty result, which is a normal answer and not by itself an error. A non-zero count can come back together with X-Error when the failure happened partway through — read this header and X-Error independently.X-Total-Available-Results — How many records exist for this query, when the endpoint can say. On a `dry_run` request this is the answer and the body is empty. It saturates: the endpoint's documented maximum means 'at least that many', any smaller number is exact.X-Warning — Present when the request body carried keys this endpoint does not document. They were ignored, so any filter you meant to apply through them did not apply. Check the spelling against this schema and retry.X-Retry-After — Seconds to wait before retrying. Present only on 429.