curl --request GET \
--url https://api.example.com/v1/organizations/{organizationId}/projects/{projectId}/api-keys/{id}Retrieve API key details
curl --request GET \
--url https://api.example.com/v1/organizations/{organizationId}/projects/{projectId}/api-keys/{id}{
"id": "afd8012b-d81e-41c6-92cd-eed0c6cb3676",
"projectId": "70093272-90ef-43df-807b-b66dd0a0b322",
"name": "iOS Production App",
"status": "active",
"createdAt": "2024-03-20T10:00:00Z",
"updatedAt": "2024-03-20T10:00:00Z",
"lastUsed": "2024-03-21T15:30:00Z",
"createdBy": "user456"
}
{
"error": {
"code": "NOT_FOUND",
"message": "API key not found",
"details": {
"id": "afd8012b-d81e-41c6-92cd-eed0c6cb3676"
}
}
}
curl -X GET "https://api.metabind.ai/v1/organizations/org123/projects/proj456/api-keys/key123" \
-H "Authorization: Bearer YOUR_API_KEY"