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,
      "key": "your-api-key-value",
      "rights": "read",
      "team_id": 789,
      "team_name": "Team Alpha"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

API keys successfully retrieved

apikeys
object[]