Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.cariqa.com/llms.txt

Use this file to discover all available pages before exploring further.

The Cariqa Connect API uses JWT-based Bearer tokens for authentication. All requests to protected endpoints must include a valid token in the Authorization header.

Access Token

  1. Contact Cariqa to request an Access Token
  2. Tokens are provided through private communication channels during onboarding

Using the Bearer Token

Include the Authorization header in all API requests:
curl -X GET "https://connect.cariqa.com/api/v1/stations/around/?latitude=49.630383&longitude=8.368902&distance=10" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json"

Token Expiration

  • Access tokens are currently issued without an expiration date
  • Tokens may be revoked by the Cariqa team upon client request
  • Multiple tokens can be issued for service continuity and zero-downtime rotation

Security Recommendations

  1. Store secrets in a secure environment
  2. Use HTTPS for all API requests
  3. Rotate credentials periodically
  4. Do no log sensitive credentials