Quickstart
1. Create an Account
Section titled “1. Create an Account”curl -X POST https://api.giltiq.de/v1/auth/signup \ -H "Content-Type: application/json" \ -d '{"email": "you@example.com", "password": "your-password"}'2. Verify Your Email
Section titled “2. Verify Your Email”Check your inbox for a verification token, then:
curl -X POST https://api.giltiq.de/v1/auth/verify-email \ -H "Content-Type: application/json" \ -d '{"token": "your-verification-token"}'3. Log In
Section titled “3. Log In”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.
4. Create an API Key
Section titled “4. Create an API Key”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!
5. Validate a VAT ID
Section titled “5. Validate a VAT ID”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.