# Authentiq Connect API **Provider:** Authentiq Connect **Category:** auth **Base URL:** `https://connect.authentiq.io` **Auth:** api-key — `Authorization: YOUR_API_KEY` **Rate Limit:** Not officially published **Free Tier:** Yes — available **Pricing:** Enterprise / contact sales (subscription) **Docs:** https://www.authentiq.com/ ## Description Authentiq Connect OAuth 2.0 and OpenID Connect API reference. Learn about Authentiq ID or check out the Authentiq Connect developer documentation. ## Endpoints | Method | Endpoint | Description | |--------|----------|-------------| | GET | `https://connect.authentiq.io/authorize` | Authenticate a user | | GET | `https://connect.authentiq.io/client` | List clients | | POST | `https://connect.authentiq.io/client` | Register a client | | DELETE | `https://connect.authentiq.io/client/{client_id}` | Delete a client | | GET | `https://connect.authentiq.io/client/{client_id}` | View a client | | PUT | `https://connect.authentiq.io/client/{client_id}` | Update a client | | POST | `https://connect.authentiq.io/token` | Obtain an ID Token | | GET | `https://connect.authentiq.io/userinfo` | Retrieve a user profile | ## Authentication API key in the request header (Authorization) ``` Authorization: YOUR_API_KEY ``` ## Sample Request ```bash curl -X GET 'https://connect.authentiq.io/authorize' \ -H 'Authorization: YOUR_API_KEY' ``` ## Sample Response ```json {} ``` ## Pricing Details Free tier available. Passwordless authentication OpenID Connect provider. --- *Source: [API Map](https://apimap.dev/apis/authentiq-connect/) — CC BY 4.0*