v32

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-151,1412,2144.5 MB
Everywhere Inference

List inference API keys

This endpoint retrieves a list of API keys for everywhere inference.

get/cloud/v3/inference/{project_id}/api_keys

Path parameters

project_idinteger required

Project ID

Example:1

Project ID

Query parameters

limitinteger

Optional. Limit the number of returned items

Example:100

Optional. Limit the number of returned items

offsetinteger

Optional. Offset value is used to exclude the first set of records from the result

Optional. Offset value is used to exclude the first set of records from the result

Response

OK

countinteger required

Number of objects

Example response

{
  "count": 1,
  "results": [
    {
      "created_at": "2023-10-01T12:00:00Z",
      "deployment_names": [
        "inference-1",
        "inference-2"
      ],
      "description": "This key is used for accessing the inference service.",
      "expires_at": "2024-10-01T12:00:00Z",
      "name": "my-api-key"
    }
  ]
}