Documentation
Authentication
All requests to /api/v1/* require an API key. Pass it via the X-API-Key header. Keys are per-product; using a key on the wrong product returns 403 wrong_product.
bash
# Request without a key
$ curl https://loftpress.shop/api/v1/currency/latest
{
"detail": {
"success": false,
"error": { "code": "missing_api_key", "message": "Provide an API key via X-API-Key header." },
"request_id": "req_abc123"
}
}