Skip to main content
GET
Fetch a stability analysis

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

stability_analysis_id
string<uuid>
required

Response

Successful Response

Stability analysis job envelope — pipeline status + typed result.

id
string
required

Opaque stability-analysis identifier (UUID).

Example:

"bbbb2222-cccc-3333-dddd-444455556666"

status
enum<string>
required

Lifecycle state. pendingrunningcompleted | failed. canceled is terminal and only reachable via POST /v1/stability-analyses/{id}/cancel on a still-pending job.

Available options:
pending,
running,
completed,
failed,
canceled
Example:

"pending"

created_at
string
required

ISO-8601 timestamp (UTC) when the job was submitted.

Example:

"2026-04-22T14:15:00+00:00"

credit_cost
integer
required

Credits debited at submission for this job type.

Example:

3

inputs
StabilityAnalysisInputs · object
required

Echo of the caller's submit body.

object
string
default:stability_analysis

Polymorphic discriminator. Always stability_analysis.

Allowed value: "stability_analysis"
started_at
string | null

ISO-8601 timestamp when execution started. null while pending.

completed_at
string | null

ISO-8601 timestamp when the job completed successfully.

failed_at
string | null

ISO-8601 timestamp when the job failed. null unless status=failed.

canceled_at
string | null

ISO-8601 timestamp when the job was canceled. null unless status=canceled.

error
StabilityAnalysisError · object | null

Populated only when status=failed. Same shape as problem+json.

results
StabilityAnalysisResult · object | null

Stability scorecard. null until status=completed.