Skip to content

List API Keys

GET
/v1/users/self/api-keys
curl --request GET \
--url https://example.com/api/v1/users/self/api-keys \
--header 'Authorization: <Authorization>'

OK

Media type application/json
Array<object>
object
createdAt
string
expiresAt
string
nullable
id
string
lastUsedAt
string
nullable
name
string
userId
string
Example generated
[
{
"createdAt": "example",
"expiresAt": "example",
"id": "example",
"lastUsedAt": "example",
"name": "example",
"userId": "example"
}
]