Skip to main content
GET
/
v1
/
preview
/
models
/
{model_id}
/
checkpoints
{
  "object": "list",
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "step": 123,
      "metrics": {}
    }
  ],
  "first_id": "",
  "last_id": "",
  "has_more": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

model_id
string
required

Query Parameters

after
string

Cursor for pagination - ID of the last item from previous page

limit
integer
default:20

Number of items to return

Required range: 1 <= x <= 100
order
enum<string>
default:asc

Sort order

Available options:
asc,
desc

Response

Successful Response

data
CheckpointResponse · object[]
required

Array of items

has_more
boolean
required

Whether there are more items available

object
string
default:list

Object type identifier

first_id
string
default:""

ID of the first item in the current page

last_id
string
default:""

ID of the last item in the current page

I