Skip to main content
GET
/
fine-tune
/
status
curl https://api.u1.archetypeai.app/v0.5/fine-tune/status \
  -H "Authorization: Bearer $ATAI_API_KEY"
{
  "status": "READY",
  "last_updated": "2026-04-27T14:32:18.421000Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.archetypeai.app/llms.txt

Use this file to discover all available pages before exploring further.

Overview

This endpoint returns the current status of the fine-tune runner node, including its readiness to accept new jobs and the time it was last updated.

Response

status
string
Current status of the node. One of:
  • UNKNOWN — Status could not be determined
  • READY — Node is ready to accept jobs
  • BUSY — Node is currently running a job
  • STALE — Node has not reported status recently
  • ERROR — Node encountered an error
last_updated
string
ISO 8601 timestamp of the last status update
curl https://api.u1.archetypeai.app/v0.5/fine-tune/status \
  -H "Authorization: Bearer $ATAI_API_KEY"
{
  "status": "READY",
  "last_updated": "2026-04-27T14:32:18.421000Z"
}