メインコンテンツへスキップ
GET
/
v1
/
preview
/
models
/
{model_id}
/
checkpoints
List Model Checkpoints
curl --request GET \
  --url https://api.example.com/v1/preview/models/{model_id}/checkpoints \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "step": 123,
      "metrics": {}
    }
  ],
  "has_more": true,
  "object": "list",
  "first_id": "",
  "last_id": ""
}

承認

Authorization
string
header
必須

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

パスパラメータ

model_id
string
必須

クエリパラメータ

after
string

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

limit
integer
デフォルト:20

Number of items to return

必須範囲: 1 <= x <= 100
order
enum<string>
デフォルト:asc

Sort order

利用可能なオプション:
asc,
desc

レスポンス

Successful Response

data
CheckpointResponse · object[]
必須

Array of items

has_more
boolean
必須

Whether there are more items available

object
string
デフォルト:list

Object type identifier

first_id
string
デフォルト:""

ID of the first item in the current page

last_id
string
デフォルト:""

ID of the last item in the current page