Skip to content

Quickstart

Terminal window
curl -X POST https://api.giltiq.de/v1/auth/signup \
-H "Content-Type: application/json" \
-d '{"email": "you@example.com", "password": "your-password"}'

Check your inbox for a verification token, then:

Terminal window
curl -X POST https://api.giltiq.de/v1/auth/verify-email \
-H "Content-Type: application/json" \
-d '{"token": "your-verification-token"}'
Terminal window
curl -X POST https://api.giltiq.de/v1/auth/login \
-H "Content-Type: application/json" \
-d '{"email": "you@example.com", "password": "your-password"}'

Save the token from the response.

Terminal window
curl -X POST https://api.giltiq.de/v1/auth/api-keys \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{"name": "My App"}'

Save the key from the response — it’s only shown once!

Terminal window
curl https://api.giltiq.de/v1/validate/DE811575812 \
-H "X-API-Key: gq_live_your_key_here"

That’s it! Check the API Reference for all available options.