# Authentiq API **Provider:** Authentiq **Category:** auth **Base URL:** `https://6-dot-authentiqio.appspot.com` **Auth:** none — `# No auth required` **Rate Limit:** See documentation **Free Tier:** Yes — available **Pricing:** Enterprise / contact sales (subscription) **Docs:** http://authentiq.io/support ## Description Strong authentication, without the passwords. ## Endpoints | Method | Endpoint | Description | |--------|----------|-------------| | DELETE | `https://6-dot-authentiqio.appspot.com/key` | Revoke an Authentiq ID using email & phone. If called with `email` and `phone` | | POST | `https://6-dot-authentiqio.appspot.com/key` | Register a new ID `JWT(sub, devtoken)` v5: `JWT(sub, pk, devtoken, ...)` See: | | DELETE | `https://6-dot-authentiqio.appspot.com/key/{PK}` | Revoke an Identity (Key) with a revocation secret | | GET | `https://6-dot-authentiqio.appspot.com/key/{PK}` | Get public details of an Authentiq ID. | | POST | `https://6-dot-authentiqio.appspot.com/key/{PK}` | update properties of an Authentiq ID. (not operational in v4; use PUT for now) | | PUT | `https://6-dot-authentiqio.appspot.com/key/{PK}` | Update Authentiq ID by replacing the object. v4: `JWT(sub,email,phone)` to bind | | POST | `https://6-dot-authentiqio.appspot.com/login` | push sign-in request See: https://github.com/skion/authentiq/wiki/JWT-Examples | | POST | `https://6-dot-authentiqio.appspot.com/scope` | scope verification request See: https://github.com/skion/authentiq/wiki/JWT-Exam | ## Authentication No authentication required ``` # No auth required ``` ## Sample Request ```bash curl -X GET 'https://6-dot-authentiqio.appspot.com/key' \ -H '# No auth required' ``` ## Sample Response ```json {} ``` ## Pricing Details Free — open public API, no authentication required. --- *Source: [API Map](https://apimap.dev/apis/authentiq/) — CC BY 4.0*