Thrixel API

Auto-fix

Run an automatic refinement pass on a completed Architect or Auto-fix result.

Run an automatic refinement pass on a completed Architect or Auto-fix submission. Thrixel inspects the result and produces an improved version.

Auto-refine

POST /api/v1/autofix/submit

Requires API key.

Request Body

NameTypeDescription
parent_submission_idstring (required)ID of a completed Architect or Auto-fix submission.
project_idstringInherit or override the parent's project.
adaptive_thinkingbooleanEnable extended thinking for higher quality. Default: false.

Example Request

curl -X POST https://api.thrixel.com/api/v1/autofix/submit \
  -H "Authorization: Bearer sk-thrixel-<YOUR_KEY>" \
  -H "Content-Type: application/json" \
  -d '{"parent_submission_id": "a1b2c3d4-..."}'

Example Response

{
  "submission_id": "b2c3d4e5-...",
  "status": "queued",
  "created_at": "2026-04-20T14:35:22Z"
}

On this page