Authentication
Obtaining a Token
Making Authenticated Requests
curl -X GET "https://api.occuspace.io/v2/locations" \
-H "Authorization: Bearer YOUR_API_TOKEN"Security Best Practices
Error Responses
{
"type": "https://api.occuspace.io/problems/unauthorized",
"title": "Unauthorized",
"status": 401,
"detail": "Invalid API key",
"instance": "/v2/locations",
"request_id": "f1b8698f-b0e8-4fb9-82e1-ddf89029350c"
}Last updated