Altinity Auth API

The Auth API from Altinity — 8 operation(s) for auth.

Operations 11

POST /login Provides a token for a pair of users login and password #
POST /login/recover Sends out an email with password reset link #
GET /login/reset Checks whether password reset token is active #
POST /login/reset Checks whether password reset token is active #
POST /login/verify Login with 2FA verification code #
GET /probe System probe #
POST /signup-email Creates a trial account in Altinity.Cloud using only Email #
GET /signup/confirm Checks whether signup token is active #
POST /signup/confirm Finishes up signup procedure #
GET /singleauth Provides with a target URL for Auth0 #
POST /singleauth Authenticate user with Auth0 oAuth 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/altinity-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

altinity-auth-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 26.2.43
  title: Altinity Cloud Manager Auth API
  description: API Reference for Altinity Cloud Manager
  contact:
    name: Altinity
    email: support@altinity.com
  termsOfService: https://altinity.com/wp-content/uploads/2022/09/Altinity.Cloud-Terms-of-Service.pdf
servers:
- url: https://acm.altinity.cloud/api/
  description: Primary API Server
tags:
- name: Auth
paths:
  /login:
    post:
      summary: Provides a token for a pair of users login and password
      tags:
      - Auth
      parameters: []
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema: {}
        '401':
          description: Unauthorized
        '404':
          description: Not found
      operationId: Login
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                login:
                  type: string
                password:
                  type: string
  /login/recover:
    post:
      summary: Sends out an email with password reset link
      tags:
      - Auth
      parameters: []
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema: {}
        '401':
          description: Unauthorized
        '404':
          description: Not found
      operationId: LoginRecovery
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                login:
                  type: string
  /login/reset:
    get:
      summary: Checks whether password reset token is active
      tags:
      - Auth
      parameters:
      - name: code
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema: {}
        '401':
          description: Unauthorized
        '404':
          description: Not found
      operationId: LoginResetCheck
    post:
      summary: Checks whether password reset token is active
      tags:
      - Auth
      parameters: []
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema: {}
        '401':
          description: Unauthorized
        '404':
          description: Not found
      operationId: LoginReset
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                code:
                  type: string
                password:
                  type: string
  /login/verify:
    post:
      summary: Login with 2FA verification code
      tags:
      - Auth
      parameters: []
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema: {}
        '401':
          description: Unauthorized
        '404':
          description: Not found
      operationId: LoginVerify
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                code:
                  type: string
                user:
                  type: string
  /probe:
    get:
      summary: System probe
      tags:
      - Auth
      parameters: []
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema: {}
        '401':
          description: Unauthorized
        '404':
          description: Not found
      operationId: SystemProbe
  /signup-email:
    post:
      summary: Creates a trial account in Altinity.Cloud using only Email
      tags:
      - Auth
      parameters: []
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema: {}
        '401':
          description: Unauthorized
        '404':
          description: Not found
      operationId: SignupQuick
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                email:
                  type: string
                captcha:
                  type: string
  /signup/confirm:
    get:
      summary: Checks whether signup token is active
      tags:
      - Auth
      parameters:
      - name: code
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema: {}
        '401':
          description: Unauthorized
        '404':
          description: Not found
      operationId: SignupCheck
    post:
      summary: Finishes up signup procedure
      tags:
      - Auth
      parameters: []
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema: {}
        '401':
          description: Unauthorized
        '404':
          description: Not found
      operationId: SignupConfirm
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                code:
                  type: string
                password:
                  type: string
  /singleauth:
    get:
      summary: Provides with a target URL for Auth0
      tags:
      - Auth
      parameters:
      - name: type
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema: {}
        '401':
          description: Unauthorized
        '404':
          description: Not found
      operationId: GetSingleAuth
    post:
      summary: Authenticate user with Auth0 oAuth token
      tags:
      - Auth
      parameters: []
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema: {}
        '401':
          description: Unauthorized
        '404':
          description: Not found
      operationId: DoSingleAuth
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                code:
                  type: string
                state:
                  type: string
                token:
                  type: string
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Auth-Token