Solver
Report accuracy feedback
Submit feedback on whether a previously returned solution was correct. Reporting accuracy helps improve the models for your account's traffic.
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
clientKey*string
Your API key.
taskId*string
The taskId of the solved task you are reporting on.
correct?boolean
Whether the returned solution was correct.
comment?string
Optional free-text note about the result.
Response Body
application/json
curl -X POST "https://example.com/reportAccuracy" \ -H "Content-Type: application/json" \ -d '{ "clientKey": "your_api_key_here", "taskId": "task_abc123", "correct": false, "comment": "token was rejected by the site" }'{ "status": "ok"}