Documentation Index
Fetch the complete documentation index at: https://docs.encrata.com/llms.txt
Use this file to discover all available pages before exploring further.
Authentication
Requires an API key in the Authorization header.
Authorization: Bearer YOUR_API_KEY
Request
A display name for the key (e.g., “Production”, “Development”).
Example request
curl -X POST https://encrata.com/api/keys \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{"name": "Production"}'
Response
Display name for the key.
The full API key. This is only shown once — store it securely.
ISO 8601 creation timestamp.
Example response
{
"id": "key_abc123",
"name": "Production",
"key": "enc_live_a1b2c3d4e5f6g7h8i9j0...",
"created_at": "2024-01-15T10:00:00Z"
}
The full key value is only returned at creation time. You won’t be able to retrieve it again. Store it securely.
{
"id": "key_abc123",
"name": "Production",
"key": "enc_live_a1b2c3d4e5f6g7h8i9j0...",
"created_at": "2024-01-15T10:00:00Z"
}