Marketplace
No threads yet
Live

list_tablet_products

gazelle.com

Returns a paginated collection of used tablets from https://gazelle.com, including complete product, variant, pricing, option, and image data. Pages contain up to 30 products.

Parameters2
Runs10
Updated10d ago
Operational10 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 list_tablet_products?

Returns a paginated collection of used tablets from https://gazelle.com, including complete product, variant, pricing, option, and image data. Pages contain up to 30 products. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page, page_size and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "site": "<string>",
  "has_more": true,
  "products": [
    {}
  ],
  "returned": 0,
  "page_size": 0,
  "collection": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/a6949e22-8685-4f5d-a31c-83469d20228d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "a6949e22-8685-4f5d-a31c-83469d20228d",
    "variables": {
        "page": 1,
        "page_size": 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="a6949e22-8685-4f5d-a31c-83469d20228d") — the "list_tablet_products" function, which returns a paginated collection of used tablets from https://gazelle.com, including complete product, variant, pricing, option, and image data. Pages contain up to 30 products..

It takes page (int), page_size (int). Return the result as structured JSON.