Marketplace
No threads yet
Live

get_listing_details

olx.uz

Gets full details for a specific listing ID from https://olx.uz, including description, photos, seller/location data, map coordinates, and all listing parameters. When phone visibility is enabled by the seller, it also attempts the site’s challenge flow to return the real phone number as a top-level field.

Parameters3
Runs10
Updated8d ago
Degraded10 runs · 90% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_listing_details?

Gets full details for a specific listing ID from https://olx.uz, including description, photos, seller/location data, map coordinates, and all listing parameters. When phone visibility is enabled by the seller, it also attempts the site’s challenge flow to return the real phone number as a top-level field. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass listing_id, include_phone, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "error": {
    "code": "<string>",
    "kind": "<string>",
    "message": "<string>"
  },
  "source": "<string>",
  "listing": {},
  "listing_id": 0,
  "phone_number": "<string>",
  "phone_fetch_error": "<string>",
  "phone_fetch_status": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/9a4f4d39-96fa-462f-abab-73d39c5c1a34/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "9a4f4d39-96fa-462f-abab-73d39c5c1a34",
    "variables": {
        "listing_id": 65434165,
        "include_phone": true,
        "timeout_seconds": 35
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="9a4f4d39-96fa-462f-abab-73d39c5c1a34") — the "get_listing_details" function, which gets full details for a specific listing ID from https://olx.uz, including description, photos, seller/location data, map coordinates, and all listing parameters. When phone visibility is enabled by the seller, it also attempts the site’s challenge flow to return the real phone number as a top-level field..

It takes listing_id (int), include_phone (bool), timeout_seconds (int). Return the result as structured JSON.