Skip to main content
GET
/
v1
/
loops
/
runs
cURL
curl --request GET \
--url https://api.baseten.co/v1/loops/runs \
--header "Authorization: Bearer $BASETEN_API_KEY"
{
  "runs": [
    {
      "id": "<string>",
      "session_id": "<string>",
      "base_model": "<string>",
      "base_url": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "sampler": {
        "id": "<string>",
        "base_url": "<string>",
        "base_model": "<string>",
        "created_at": "2023-11-07T05:31:56Z",
        "model_id": "<string>",
        "deployment_id": "<string>"
      }
    }
  ]
}

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.

Query Parameters

run_id
string | null

Filter by run ID.

Example:

"k4q95w5"

base_model
string | null

Filter runs by base model name.

Example:

"Qwen/Qwen3-8B"

Response

200 - application/json

Runs matching the query filters.

runs
LoopsRunV1 · object[]
required

List of runs.