Skip to main content
GET
/
v2
/
{entity}
/
{project}
/
predictions
/
{prediction_id}
Prediction Read
curl --request GET \
  --url https://api.example.com/v2/{entity}/{project}/predictions/{prediction_id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "prediction_id": "<string>",
  "model": "<string>",
  "inputs": {},
  "output": "<unknown>",
  "evaluation_run_id": "<string>",
  "wb_user_id": "<string>"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

entity
string
required
project
string
required
prediction_id
string
required

Response

Successful Response

prediction_id
string
required

The prediction ID

model
string
required

The model reference (weave:// URI)

inputs
Inputs · object
required

The inputs to the prediction

output
any
required

The output of the prediction

evaluation_run_id
string | null

Evaluation run ID if this prediction is linked to one

wb_user_id
string | null

Do not set directly. Server will automatically populate this field.