get_product_details
dlsite.comFetches full DLsite product details from https://dlsite.com for a single product ID, searching across site sections and returning maker info, pricing, ratings, sale status, and metadata.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_product_details?
Fetches full DLsite product details from https://dlsite.com for a single product ID, searching across site sections and returning maker info, pricing, ratings, sale status, and metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass product_id, sections, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"maker": {},
"title": "<string>",
"pricing": {},
"ratings": {},
"metadata": {},
"product_id": "<string>",
"product_url": "<string>",
"sale_status": {},
"matched_section": "<string>",
"searched_sections": [
"<string>"
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/2c992da4-eea0-40f3-b83b-7d17f2423c0f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "2c992da4-eea0-40f3-b83b-7d17f2423c0f",
"variables": {
"product_id": "RJ01678178",
"sections": null,
"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.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="2c992da4-eea0-40f3-b83b-7d17f2423c0f") — the "get_product_details" function, which fetches full DLsite product details from https://dlsite.com for a single product ID, searching across site sections and returning maker info, pricing, ratings, sale status, and metadata.. It takes product_id (str), sections (list[str] | None), timeout_seconds (int). Return the result as structured JSON.