search_listings
olx.uzSearches product listings on https://olx.uz and returns paginated full listing records with native and UZS pricing, specifications, location, and page-level deal indicators.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_listings?
Searches product listings on https://olx.uz and returns paginated full listing records with native and UZS pricing, specifications, location, and page-level deal indicators. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, category_id, min_price_uzs, max_price_uzs, limit, offset and get the result back without maintaining a scraper.
Response
{
"limit": 0,
"query": "<string>",
"offset": 0,
"source": "<string>",
"has_more": true,
"listings": [
{}
],
"category_id": 0,
"next_offset": 0,
"max_price_uzs": 0,
"min_price_uzs": 0,
"total_results": 0,
"returned_count": 0,
"deal_methodology": "<string>",
"visible_total_count": 0,
"best_deal_listing_ids": [
0
],
"page_median_price_uzs": 0,
"price_filter_currency": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/ad71316c-0c3a-43fd-823f-859a00a1e2da/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ad71316c-0c3a-43fd-823f-859a00a1e2da",
"variables": {
"query": "ноутбук",
"category_id": 80,
"min_price_uzs": 0,
"max_price_uzs": 0,
"limit": 10,
"offset": 0
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="ad71316c-0c3a-43fd-823f-859a00a1e2da") — the "search_listings" function, which searches product listings on https://olx.uz and returns paginated full listing records with native and UZS pricing, specifications, location, and page-level deal indicators.. It takes query (str), category_id (int), min_price_uzs (int), max_price_uzs (int), limit (int), offset (int). Return the result as structured JSON.