get_seller_phone_numbers
olx.roRetrieves seller phone numbers for a specific ad from https://olx.ro in a single request. Returns phone data when available and the upstream OLX error payload for protected or restricted listings.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_seller_phone_numbers?
Retrieves seller phone numbers for a specific ad from https://olx.ro in a single request. Returns phone data when available and the upstream OLX error payload for protected or restricted listings. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass ad_id, friction_token, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"data": {},
"ad_id": 0,
"error": {},
"phones": [
"<string>"
],
"status": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/3641e265-30ac-4ea6-86ee-bdddc7a24cb2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "3641e265-30ac-4ea6-86ee-bdddc7a24cb2",
"variables": {
"ad_id": 307346263,
"friction_token": "",
"timeout_seconds": 25
}
}'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="3641e265-30ac-4ea6-86ee-bdddc7a24cb2") — the "get_seller_phone_numbers" function, which retrieves seller phone numbers for a specific ad from https://olx.ro in a single request. Returns phone data when available and the upstream OLX error payload for protected or restricted listings.. It takes ad_id (int), friction_token (str), timeout_seconds (int). Return the result as structured JSON.