Voiceitt Auth API

The Auth API from Voiceitt — 3 operation(s) for auth.

Operations 3

POST /v1/auth/login/user_id Authenticate app using App ID and API key #
POST /v1/auth/login/email Authenticate app using App ID API key and existing credentials #
POST /v1/auth/refresh_token Refresh authentication token #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/voiceitt-auth-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

voiceitt-auth-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: REST Auth API
  description: ''
  version: '1.0'
  contact: {}
servers: []
tags:
- name: Auth
paths:
  /v1/auth/login/user_id:
    post:
      operationId: PublicApiController_loginUserId
      summary: Authenticate app using App ID and API key
      description: Verifies the provided App ID and API key. Optionally accepts a user ID to authenticate a specific user under that app.
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SignInUserIdDTO'
      responses:
        '200':
          description: Authentication successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthResponseDTO'
        '403':
          description: Invalid App ID or API key
      tags:
      - Auth
      security:
      - bearer: []
  /v1/auth/login/email:
    post:
      operationId: PublicApiController_loginEmail
      summary: Authenticate app using App ID API key and existing credentials
      description: Verifies the provided App ID, API key and credentials.
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SignInEmailDTO'
      responses:
        '200':
          description: Authentication successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthResponseDTO'
        '403':
          description: Invalid App ID, API key or credentials
      tags:
      - Auth
      security:
      - bearer: []
  /v1/auth/refresh_token:
    post:
      operationId: PublicApiController_refreshToken
      summary: Refresh authentication token
      description: Exchanges a valid refresh token for new tokens.
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RefreshTokenDTO'
      responses:
        '200':
          description: Refresh token succeeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthResponseDTO'
        '403':
          description: Invalid App ID or API key
      tags:
      - Auth
      security:
      - bearer: []
components:
  schemas:
    RefreshTokenDTO:
      type: object
      properties:
        refresh_token:
          type: string
      required:
      - refresh_token
    SignInUserIdDTO:
      type: object
      properties:
        app_id:
          type: string
          description: Application ID, typically obtained from the developer portal
        api_key:
          type: string
          description: API key, typically obtained from the developer portal
        user_id:
          type: string
          maxLength: 36
      required:
      - app_id
      - api_key
    SignInEmailDTO:
      type: object
      properties:
        app_id:
          type: string
          description: Application ID, typically obtained from the developer portal
        api_key:
          type: string
          description: API key, typically obtained from the developer portal
        email:
          type: string
        password:
          type: string
      required:
      - app_id
      - api_key
      - email
      - password
    AuthResponseDTO:
      type: object
      properties:
        token:
          type: string
          description: JWT or access token issued upon successful authentication
        token_expires_at:
          type: number
          description: Expiration timestamp of the access token in milliseconds since Unix epoch
        refresh_token:
          type: string
          description: Refresh token used to obtain a new tokens
        refresh_token_expires_at:
          type: number
          description: Expiration timestamp of the refresh token in milliseconds since Unix epoch
      required:
      - token
      - token_expires_at
      - refresh_token
      - refresh_token_expires_at
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http