Skip to main content
POST
/
v1
/
loops
/
checkpoints
/
validate
cURL
curl --request POST \
--url https://api.baseten.co/v1/loops/checkpoints/validate \
--header "Authorization: Bearer $BASETEN_API_KEY" \
--data '{
  "checkpoint_path": "bt://loops:k4q95w5/sampler_weights/step-100"
}'
{}

Documentation Index

Fetch the complete documentation index at: https://docs.baseten.co/llms.txt

Use this file to discover all available pages before exploring further.

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

application/json

Request body for POST /v1/loops/checkpoints/validate.

checkpoint_path
string
required

bt:// URI of a sampler checkpoint. Form: bt://loops:<run_id>/sampler_weights/<checkpoint_name>.

Example:

"bt://loops:k4q95w5/sampler_weights/step-100"

Response

200 - application/json

Response for POST /v1/loops/checkpoints/validate. Empty on success; inaccessible or malformed paths raise 400.