Skip to main content
GET
/
v1
/
flow
/
alignment
/
{alignment_job_id}
Get alignment job
curl --request GET \
  --url https://flow.seekr.com/v1/flow/alignment/{alignment_job_id} \
  --header 'Authorization: <api-key>'
{
  "id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "completed_at": "2023-11-07T05:31:56Z",
  "current_step": "<string>",
  "step_progress": 123,
  "progress": 123,
  "estimated_completion_at": "2023-11-07T05:31:56Z",
  "eta_minutes": 123,
  "status_message": "<string>"
}

Authorizations

Authorization
string
header
required

Seekr API Key without 'Bearer' Prefix

Path Parameters

alignment_job_id
string
required

Response

Successful Response

id
string
required
created_at
string<date-time>
required
status
enum<string>
required
Available options:
pending,
queued,
running,
cancelled,
failed,
completed,
stopped
updated_at
string<date-time> | null
completed_at
string<date-time> | null
current_step
string | null
step_progress
progress
number | null
estimated_completion_at
string<date-time> | null
eta_minutes
integer | null
status_message
string | null
Last modified on June 18, 2026