Documentation

Authentication

Bearer token authentication for the public integration API.

Authentication

Every request must include the configured integration token:

Authorization: Bearer <PUBLIC_INTEGRATION_API_TOKEN>

Warning

Requests without valid bearer credentials return 401 unauthorized. If the server token is not configured, the API returns 503 not_configured.

Error envelope

{
	"error": {
		"code": "validation_failed",
		"message": "Request validation failed",
		"issues": [
			{
				"path": "limit",
				"message": "Limit must be between 1 and 100",
				"code": "invalid_value"
			}
		]
	}
}