Marketplace
No threads yet
Live

search_ready_to_ship_products

alibaba.com

Returns Ready to Ship product listings from https://www.alibaba.com with pricing, supplier details, service badges, and automatic multi-page pagination.

Parameters3
Runs4
Updated1d ago
Operational4 runs · 100% 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 search_ready_to_ship_products?

Returns Ready to Ship product listings from https://www.alibaba.com with pricing, supplier details, service badges, and automatic multi-page pagination. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, start_page, max_pages and get the result back without maintaining a scraper.

Response

{
  "query": "<string>",
  "has_more": true,
  "products": [
    {}
  ],
  "start_page": 0,
  "total_pages": 0,
  "pages_fetched": [
    0
  ],
  "returned_count": 0,
  "pages_requested": 0,
  "total_available": 0,
  "ready_to_ship_only": true,
  "products_per_source_page": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/b88bd17e-17c5-4e00-990f-54b8f24acf81/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "b88bd17e-17c5-4e00-990f-54b8f24acf81",
    "variables": {
        "query": "7 inch 1024x600 ips rgb",
        "start_page": 1,
        "max_pages": 2
    }
}'

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="b88bd17e-17c5-4e00-990f-54b8f24acf81") — the "search_ready_to_ship_products" function, which returns Ready to Ship product listings from https://www.alibaba.com with pricing, supplier details, service badges, and automatic multi-page pagination..

It takes query (str), start_page (int), max_pages (int). Return the result as structured JSON.