cURL
curl --request GET \ --url https://api.entityml.com/api/v1/keys
{ "user_id": "<string>", "api_keys": [ { "id": "<string>", "status": "<string>", "created_at": "<string>", "last_used_at": "<string>" } ], "total": 123 }
Retrieve all active API keys for a user.
Show Key fields
"active"
"inactive"
curl "https://api.entityml.com/api/v1/keys?user_id=YOUR_USER_ID"
{ "user_id": "user-uuid", "api_keys": [ { "id": "key-uuid", "status": "active", "created_at": "2025-01-15T10:30:00Z", "last_used_at": "2025-01-15T11:45:00Z" } ], "total": 1 }