Skip to main content
GET
/
api
/
v0
/
auth
/
apikeys
/
show api keys
curl --request GET \
  --url https://console.vast.ai/api/v0/auth/apikeys/ \
  --header 'Authorization: Bearer <token>'
{
  "apikeys": [
    {
      "id": 123,
      "user_id": 456,
      "rights": "read",
      "team_id": 789,
      "team_name": "Team Alpha"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key must be provided in the Authorization header

Response

API keys successfully retrieved

apikeys
object[]