List API Keys
Returns
Returns a list of your API keys and size of the list.
GET/api-keys
curl -X GET https://api.next-cron.com/api-keys \
-H "Authorization: Bearer $YOUR_API_KEY"
Response
{
"size": 1,
"apiKeys": [
{
"id": "49d10214-f4f1-497a-94b7-c0e597ad3fea",
"name": "Production API Key",
"status": "Enabled",
"createdAt": "2024-03-19T10:30:00Z",
"lastUsed": "2024-03-20T15:45:00Z"
}
]
}