List API Keys
Last updated
Last updated
curl -X GET '{API_URL}/api_keys' \
-H 'Authorization: Bearer {TOKEN/KEY}'{
"data": [
{
"id": 5,
"name": "api-test-key",
"description": "This is the test API key",
"partial_key_data": "ak_..."
},
{
"id": 6,
"name": "api-test-key2",
"description": "This is the test API key #2",
"partial_key_data": "ak_..."
}
],
"message": "API keys successfully retrieved",
"status": "success"
}