curl --request GET \
--url https://api.staging.kathan.tech/api-keys \
--header 'Authorization: Bearer <token>' \
--header 'X-User-ID: <api-key>'[
{
"id": "<string>",
"name": "<string>",
"created_at": "<string>",
"last_used_at": "<string>",
"key_type": "secret",
"key": "<string>"
}
]List all API keys for the authenticated user.
curl --request GET \
--url https://api.staging.kathan.tech/api-keys \
--header 'Authorization: Bearer <token>' \
--header 'X-User-ID: <api-key>'[
{
"id": "<string>",
"name": "<string>",
"created_at": "<string>",
"last_used_at": "<string>",
"key_type": "secret",
"key": "<string>"
}
]API key authentication.
Required user id for API key requests.
Was this page helpful?