get_new_releases
dlsite.comGets newly released products from https://dlsite.com for a chosen recent-day period and site section, returning source-rich summaries with pricing, ratings, tags, images, availability, creators, and release dates. An optional DLsite work-type code filters the fetched results client-side.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_new_releases?
Gets newly released products from https://dlsite.com for a chosen recent-day period and site section, returning source-rich summaries with pricing, ratings, tags, images, availability, creators, and release dates. An optional DLsite work-type code filters the fetched results client-side. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass days, section, work_type, limit and get the result back without maintaining a scraper.
Response
{
"days": 0,
"section": "<string>",
"products": [
{}
],
"truncated": true,
"period_end": "<string>",
"period_start": "<string>",
"result_count": 0,
"source_total": 0,
"matched_total": 0,
"reference_date": "<string>",
"work_type_filter": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/ce4aaf33-70be-40ba-b32a-101becc58b28/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ce4aaf33-70be-40ba-b32a-101becc58b28",
"variables": {
"days": 1,
"section": "maniax",
"work_type": "",
"limit": 30
}
}'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="ce4aaf33-70be-40ba-b32a-101becc58b28") — the "get_new_releases" function, which gets newly released products from https://dlsite.com for a chosen recent-day period and site section, returning source-rich summaries with pricing, ratings, tags, images, availability, creators, and release dates. An optional DLsite work-type code filters the fetched results client-side.. It takes days (int), section (str), work_type (str), limit (int). Return the result as structured JSON.