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

Authorizations

Authorization
string
header
required

API key with the Api-Key prefix, e.g. Authorization: Api-Key abcd1234.abcd1234.

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.