Marketplace
No threads yet
Live

list_category_images

cosmos.so

Returns paginated curated images from a https://cosmos.so category with captions, named-entity tags, creator usernames, source links, media and owner details.

Parameters3
Runs4
Updated1h 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 list_category_images?

Returns paginated curated images from a https://cosmos.so category with captions, named-entity tags, creator usernames, source links, media and owner details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category_slug, keyword, page_cursor and get the result back without maintaining a scraper.

Response

{
  "category": {},
  "elements": [
    {}
  ],
  "page_size": 0,
  "total_count": 0,
  "returned_count": 0,
  "next_page_cursor": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/5a16cdb8-a53c-4421-8bc8-296e66c43036/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "5a16cdb8-a53c-4421-8bc8-296e66c43036",
    "variables": {
        "category_slug": "graphic-design",
        "keyword": "",
        "page_cursor": ""
    }
}'

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="5a16cdb8-a53c-4421-8bc8-296e66c43036") — the "list_category_images" function, which returns paginated curated images from a https://cosmos.so category with captions, named-entity tags, creator usernames, source links, media and owner details..

It takes category_slug (str), keyword (str), page_cursor (str). Return the result as structured JSON.