Marketplace
No threads yet
Live

list_catalog

zapi.web.id

Lists and searches the Zapi API catalog from https://zpi.web.id, with keyword, category, and cursor pagination. Returns popularity-ordered API summaries and the next cursor.

Parameters4
Runs11
Updated10d ago
Degraded11 runs · 81.8% 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_catalog?

Lists and searches the Zapi API catalog from https://zpi.web.id, with keyword, category, and cursor pagination. Returns popularity-ordered API summaries and the next cursor. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, category, cursor, limit and get the result back without maintaining a scraper.

Response

{
  "items": [
    {}
  ],
  "total": 0,
  "next_cursor": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/1791f6c4-54d2-419c-a154-3ffafbce9f21/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "1791f6c4-54d2-419c-a154-3ffafbce9f21",
    "variables": {
        "query": "",
        "category": "",
        "cursor": "",
        "limit": 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="1791f6c4-54d2-419c-a154-3ffafbce9f21") — the "list_catalog" function, which lists and searches the Zapi API catalog from https://zpi.web.id, with keyword, category, and cursor pagination. Returns popularity-ordered API summaries and the next cursor..

It takes query (str), category (str), cursor (str), limit (int). Return the result as structured JSON.