search_products
dlsite.comSearches https://dlsite.com by keyword within a chosen site section and returns a paginated page of up to 30 products enriched with pricing, ratings, images, release data, and source metadata. Supports DLsite work-type filtering, including BJ-prefix products in the books section.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_products?
Searches https://dlsite.com by keyword within a chosen site section and returns a paginated page of up to 30 products enriched with pricing, ratings, images, release data, and source metadata. Supports DLsite work-type filtering, including BJ-prefix products in the books section. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass keyword, section, page, work_type and get the result back without maintaining a scraper.
Response
{
"page": 0,
"query": "<string>",
"section": "<string>",
"has_next": true,
"products": [
{}
],
"page_size": 0,
"total_pages": 0,
"has_previous": true,
"result_count": 0,
"total_results": 0,
"work_type_filter": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/fb70e6f5-bde1-45c6-baad-be74ca57072d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "fb70e6f5-bde1-45c6-baad-be74ca57072d",
"variables": {
"keyword": "RPG",
"section": "maniax",
"page": 1,
"work_type": ""
}
}'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="fb70e6f5-bde1-45c6-baad-be74ca57072d") — the "search_products" function, which searches https://dlsite.com by keyword within a chosen site section and returns a paginated page of up to 30 products enriched with pricing, ratings, images, release data, and source metadata. Supports DLsite work-type filtering, including BJ-prefix products in the books section.. It takes keyword (str), section (str), page (int), work_type (str). Return the result as structured JSON.