get_listing_details
avito.ruGet full details for one classified listing from https://avito.ru using its full URL or item path. Returns the complete item record, description, parameters, seller information, images, pricing, and listing statistics.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_listing_details?
Get full details for one classified listing from https://avito.ru using its full URL or item path. Returns the complete item record, description, parameters, seller information, images, pricing, and listing statistics. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass listing_url and get the result back without maintaining a scraper.
Response
{
"item": {},
"title": "<string>",
"images": [
"<any>"
],
"seller": {},
"item_id": 0,
"parameters": [
{}
],
"source_url": "<string>",
"statistics": {},
"description": "<string>",
"price_details": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/1571831e-21cd-4458-9a80-c39a5e3df5c5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "1571831e-21cd-4458-9a80-c39a5e3df5c5",
"variables": {
"listing_url": "DEFAULT_LISTING"
}
}'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="1571831e-21cd-4458-9a80-c39a5e3df5c5") — the "get_listing_details" function, which get full details for one classified listing from https://avito.ru using its full URL or item path. Returns the complete item record, description, parameters, seller information, images, pricing, and listing statistics.. It takes listing_url (str). Return the result as structured JSON.