Live
search_products
redmagic.ggSearches products by keyword on https://redmagic.gg and returns every non-empty suggestion field, including live availability, prices, images, variants, and product metadata.
Parameters3
Runs7
Updated3d ago
Operational7 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 search_products?
Searches products by keyword on https://redmagic.gg and returns every non-empty suggestion field, including live availability, prices, images, variants, and product metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, limit, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"count": 0,
"query": "<string>",
"products": [
{
"id": 0,
"url": "<string>",
"body": "<string>",
"tags": [
"<string>"
],
"type": "<string>",
"image": "<string>",
"price": "<string>",
"title": "<string>",
"handle": "<string>",
"vendor": "<string>",
"variants": [
{}
],
"available": true,
"price_max": "<string>",
"price_min": "<string>",
"featured_image": {},
"compare_at_price_max": "<string>",
"compare_at_price_min": "<string>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/76869bda-c163-4d41-8a7c-90c6731dee0b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "76869bda-c163-4d41-8a7c-90c6731dee0b",
"variables": {
"query": "phone",
"limit": 10,
"timeout_seconds": 30
}
}'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="76869bda-c163-4d41-8a7c-90c6731dee0b") — the "search_products" function, which searches products by keyword on https://redmagic.gg and returns every non-empty suggestion field, including live availability, prices, images, variants, and product metadata.. It takes query (str), limit (int), timeout_seconds (int). Return the result as structured JSON.