Skip to main content
POST
/
production
/
predict
Call the production environment of a model.
curl --request POST \
  --url https://model-{model_id}.api.baseten.co/production/predict \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{}

Authorizations

Authorization
string
header
required

Pass your Baseten API key. Clients automatically send Authorization: Bearer <key>. Direct callers can also use Authorization: Api-Key <key>; both schemes are accepted.

Body

JSON-serializable model input. The shape is defined by the model's predict function.

Response

Successful synchronous prediction.

JSON-serializable output. The shape is defined by the model.