curl --request GET \
--url https://api.galileo.ai/v2/users/{user_id}/api_keys \
--header 'Galileo-API-Key: <api-key>'
{
"starting_token": 0,
"limit": 100,
"paginated": false,
"next_starting_token": 123,
"api_keys": [
{
"id": "<string>",
"description": "<string>",
"expires_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"last_used": "2023-11-07T05:31:56Z",
"project_id": "<string>",
"project_role": "owner",
"created_by": "<string>",
"truncated": "<string>"
}
]
}
Successful Response
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.galileo.ai/v2/users/{user_id}/api_keys \
--header 'Galileo-API-Key: <api-key>'
{
"starting_token": 0,
"limit": 100,
"paginated": false,
"next_starting_token": 123,
"api_keys": [
{
"id": "<string>",
"description": "<string>",
"expires_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"last_used": "2023-11-07T05:31:56Z",
"project_id": "<string>",
"project_role": "owner",
"created_by": "<string>",
"truncated": "<string>"
}
]
}