Skip to main content
GET
Get Model Prediction

Authorizations

Authorization
string
header
required

API key passed as an Authorization Bearer token: Authorization: Bearer YOUR_API_KEY

Path Parameters

id
string
required

Prediction ID

Response

Prediction retrieved successfully

id
string

Unique prediction identifier

Example:

"abc123-def456-ghi789"

input
object

Input parameters used for the prediction

Example:
status
enum<string>

Current status of the prediction. starting and processing are non-terminal. success, failed, and cancelled are terminal.

Available options:
starting,
processing,
success,
failed,
cancelled
Example:

"success"

output

Prediction output (type varies based on model)

Example:

"https://storage.example.com/predictions/abc123/image.jpg"

logs
string | null

Execution logs from the prediction

Example:

null

metrics
object

Performance and cost metrics

urls
object

Related API endpoints

Last modified on July 27, 2026