Authentication
All API requests require authentication using an API key. Include your API key in the request headers.
Headers Required
Include your API key in the request headers:
X-Api-Key: your_api_key_here
Example Request
curl -X GET "https://obelisk.li/api/v1/entries/your-entry-id" \
-H "X-Api-Key: your_api_key_here"
Authentication Errors
If authentication fails, you'll receive a 401 Unauthorized response:
{
"data": null,
"meta": {},
"error": "Unauthorized"
}