Skip to content

Authentication

Giltiq uses a tiered access model. Most integrations use Tier 1 (API key).

TierAuth requiredHow to authenticate
Tier 0: Anonymous trialNoneNo header required
Tier 1: Free (100/mo)API keyX-API-Key: gq_live_...
Tier 2: Paid (Starter/Business)API keySame as Tier 1

Anonymous callers (Tier 0) can make 5–10 validation requests without any setup. When that limit is reached, register for a free API key to continue.

API keys are the primary authentication method for all validation requests. Obtain one via POST /v1/register — no email verification required.

Pass your key using either of these methods:

  • Header: X-API-Key: gq_live_...
  • Bearer: Authorization: Bearer gq_live_...

API keys start with gq_live_ and are 32 characters long.

PlanMonthly limitPer-minute limit
Anonymous (Tier 0)5–10 calls5
Free10010
Starter1,00060
Business5,000120

Every API response includes headers so your application — or an agent — can self-regulate without a dashboard visit:

HeaderExampleDescription
X-Giltiq-Usage85/100Validations used vs. your plan limit for the current period
X-Giltiq-Upgradehttps://giltiq.de/pricing/Present only when usage exceeds 80% of your limit

X-Giltiq-Upgrade is omitted below the 80% threshold. When it appears, agents can surface an upgrade prompt to their operator without requiring a manual dashboard check.

See Usage Endpoint for a full usage breakdown via GET /v1/usage.

Giltiq uses three distinct status codes for access boundaries and rate limiting:

StatusCodeMeaning
401ANONYMOUS_LIMIT_REACHEDAnonymous trial limit reached — register for a free API key to continue
402PLAN_LIMIT_REACHEDMonthly plan limit reached — upgrade required to continue
429RATE_LIMITEDPer-minute rate limit exceeded — back off and retry

401 and 402 are tier boundaries, not errors. They signal that the caller needs to move to the next tier. 429 is transient: wait for the per-minute window to reset (the Retry-After header gives the exact number of seconds).

See Error Handling for the full error code reference.