Skip to main content
GET
/
v1
/
loops
/
checkpoints
/
{checkpoint_id}
/
files
cURL
curl --request GET \
--url https://api.baseten.co/v1/loops/checkpoints/{checkpoint_id}/files \
--header "Authorization: Bearer $BASETEN_API_KEY"
{
  "presigned_urls": [
    {
      "url": "<string>",
      "relative_file_name": "<string>",
      "node_rank": 123,
      "size_bytes": 123,
      "last_modified": "<string>"
    }
  ],
  "total_count": 123,
  "next_page_token": 123
}

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.

Path Parameters

checkpoint_id
string
required

Response

200 - application/json

Response with presigned URLs for files under a Loops checkpoint.

presigned_urls
CheckpointFile · object[]
required

List of presigned URLs for checkpoint files.

total_count
integer
required

Total number of checkpoint files available.

next_page_token
integer | null

Token to use for fetching the next page of results. None when there are no more results.