API Keys
List all API keys for the current user
API Keys
List all API keys for the current user
GET
/
v1
/
api-keys
{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z",
"last_used_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z",
"status": "ACTIVE",
"name": "<string>",
"prefix": "<string>"
}
],
"pagination": {
"total_pages": 123,
"current_page": 123,
"items_per_page": 123
}
}
Authorizations
Query Parameters
Page number to retrieve
Required range:
x >= 1
Number of items to return per page
Required range:
x >= 1
Response
200
application/json
API keys retrieved successfully
{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z",
"last_used_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z",
"status": "ACTIVE",
"name": "<string>",
"prefix": "<string>"
}
],
"pagination": {
"total_pages": 123,
"current_page": 123,
"items_per_page": 123
}
}