Live
get_bug_reports
dofus.comReturns up to 100 current bug and improvement records from the Dofus bug tracker CSV at https://dofus.com. Optionally filters records by an exact, case-insensitive State value.
Parameters2
Runs9
Updated10d ago
Operational9 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_bug_reports?
Returns up to 100 current bug and improvement records from the Dofus bug tracker CSV at https://dofus.com. Optionally filters records by an exact, case-insensitive State value. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass status, limit and get the result back without maintaining a scraper.
Response
{
"bugs": [
{}
],
"returned_count": 0,
"matched_records": 0,
"total_source_records": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/d2287b30-2a94-40db-9d00-7e41694a5a20/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d2287b30-2a94-40db-9d00-7e41694a5a20",
"variables": {
"status": "",
"limit": 100
}
}'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="d2287b30-2a94-40db-9d00-7e41694a5a20") — the "get_bug_reports" function, which returns up to 100 current bug and improvement records from the Dofus bug tracker CSV at https://dofus.com. Optionally filters records by an exact, case-insensitive State value.. It takes status (str), limit (int). Return the result as structured JSON.