Marketplace
No threads yet
Live

get_ranked_products

dlsite.com

Gets DLsite ranked products for a chosen ranking term from https://dlsite.com and enriches each ranked product ID with full metadata including title, pricing, and ratings.

Parameters4
Runs10
Updated8d 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 get_ranked_products?

Gets DLsite ranked products for a chosen ranking term from https://dlsite.com and enriches each ranked product ID with full metadata including title, pricing, and ratings. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass term, section, limit, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "term": "<string>",
  "section": "<string>",
  "products": [
    {}
  ],
  "source_url": "<string>",
  "result_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/65a23857-ec9f-4c9d-8cb2-c38ccf3ce231/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "65a23857-ec9f-4c9d-8cb2-c38ccf3ce231",
    "variables": {
        "term": "day",
        "section": "maniax",
        "limit": 30,
        "timeout_seconds": 25
    }
}'

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="65a23857-ec9f-4c9d-8cb2-c38ccf3ce231") — the "get_ranked_products" function, which gets DLsite ranked products for a chosen ranking term from https://dlsite.com and enriches each ranked product ID with full metadata including title, pricing, and ratings..

It takes term (str), section (str), limit (int), timeout_seconds (int). Return the result as structured JSON.