Live
get_file_details
curseforge.comReturns detailed file records for selected project file IDs from https://curseforge.com, including versions, loaders, sizes, dates, downloads, download URLs, and per-ID errors.
Parameters2
Runs6
Updated3d ago
Operational6 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_file_details?
Returns detailed file records for selected project file IDs from https://curseforge.com, including versions, loaders, sizes, dates, downloads, download URLs, and per-ID errors. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass project_id, file_ids and get the result back without maintaining a scraper.
Response
{
"count": 0,
"files": [
{}
],
"project_id": 0,
"error_count": 0,
"success_count": 0,
"requested_file_ids": [
0
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/122a3d6c-f78a-4159-992d-c81d11c606b2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "122a3d6c-f78a-4159-992d-c81d11c606b2",
"variables": {
"project_id": 238222,
"file_ids": [8697738, 8697737]
}
}'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="122a3d6c-f78a-4159-992d-c81d11c606b2") — the "get_file_details" function, which returns detailed file records for selected project file IDs from https://curseforge.com, including versions, loaders, sizes, dates, downloads, download URLs, and per-ID errors.. It takes project_id (int), file_ids (list[int]). Return the result as structured JSON.