Live
list_search_results_continuation
temu.comContinues a paginated search session on https://temu.com from its opaque token, returning the next product page, an updated token, and automatic expired-session recovery status.
Parameters2
Runs8
Updated3d ago
Operational8 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_search_results_continuation?
Continues a paginated search session on https://temu.com from its opaque token, returning the next product page, an updated token, and automatic expired-session recovery status. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass pagination_token, limit and get the result back without maintaining a scraper.
Response
{
"error": {
"code": "<string>",
"message": "<string>",
"retryable": true
},
"query": "<string>",
"locale": "<string>",
"list_id": "<string>",
"success": true,
"has_more": true,
"products": [
{}
],
"returned": 0,
"recovery_status": "<string>",
"starting_offset": 0,
"pagination_token": "<string>",
"recovery_message": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/06be6cf4-c70a-40fc-9ac1-f58f319812de/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "06be6cf4-c70a-40fc-9ac1-f58f319812de",
"variables": {
"pagination_token": "DEFAULT_TOKEN",
"limit": 12
}
}'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="06be6cf4-c70a-40fc-9ac1-f58f319812de") — the "list_search_results_continuation" function, which continues a paginated search session on https://temu.com from its opaque token, returning the next product page, an updated token, and automatic expired-session recovery status.. It takes pagination_token (str), limit (int). Return the result as structured JSON.