HYPERLABS Admin Account API

The AdminAccount API from HYPERLABS — 5 operation(s) for adminaccount.

Operations 5

POST /v1/admin/account/login
POST /v1/admin/account/forgot-password
POST /v1/admin/account/reset-password
POST /v1/admin/account/validate-invite
POST /v1/admin/account/confirm-invite

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/hyperlabs-adminaccount-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

hyperlabs-adminaccount-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Hyperlabs.Web Admin Account API
  version: '1.0'
servers:
- url: /api
tags:
- name: AdminAccount
paths:
  /v1/admin/account/login:
    post:
      tags:
      - AdminAccount
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Hyperlabs.Web.Models.Accounts.LoginDto'
          text/json:
            schema:
              $ref: '#/components/schemas/Hyperlabs.Web.Models.Accounts.LoginDto'
          application/*+json:
            schema:
              $ref: '#/components/schemas/Hyperlabs.Web.Models.Accounts.LoginDto'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Hyperlabs.Web.Models.Accounts.LoginResultDto'
            application/json:
              schema:
                $ref: '#/components/schemas/Hyperlabs.Web.Models.Accounts.LoginResultDto'
            text/json:
              schema:
                $ref: '#/components/schemas/Hyperlabs.Web.Models.Accounts.LoginResultDto'
  /v1/admin/account/forgot-password:
    post:
      tags:
      - AdminAccount
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Hyperlabs.Web.Models.Accounts.ForgotPasswordDto'
          text/json:
            schema:
              $ref: '#/components/schemas/Hyperlabs.Web.Models.Accounts.ForgotPasswordDto'
          application/*+json:
            schema:
              $ref: '#/components/schemas/Hyperlabs.Web.Models.Accounts.ForgotPasswordDto'
      responses:
        '204':
          description: No Content
  /v1/admin/account/reset-password:
    post:
      tags:
      - AdminAccount
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Hyperlabs.Web.Models.Accounts.ResetPasswordDto'
          text/json:
            schema:
              $ref: '#/components/schemas/Hyperlabs.Web.Models.Accounts.ResetPasswordDto'
          application/*+json:
            schema:
              $ref: '#/components/schemas/Hyperlabs.Web.Models.Accounts.ResetPasswordDto'
      responses:
        '204':
          description: No Content
  /v1/admin/account/validate-invite:
    post:
      tags:
      - AdminAccount
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Hyperlabs.Web.Models.Accounts.ValidateInviteDto'
          text/json:
            schema:
              $ref: '#/components/schemas/Hyperlabs.Web.Models.Accounts.ValidateInviteDto'
          application/*+json:
            schema:
              $ref: '#/components/schemas/Hyperlabs.Web.Models.Accounts.ValidateInviteDto'
      responses:
        '200':
          description: OK
  /v1/admin/account/confirm-invite:
    post:
      tags:
      - AdminAccount
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Hyperlabs.Web.Models.Accounts.ConfirmInviteDto'
          text/json:
            schema:
              $ref: '#/components/schemas/Hyperlabs.Web.Models.Accounts.ConfirmInviteDto'
          application/*+json:
            schema:
              $ref: '#/components/schemas/Hyperlabs.Web.Models.Accounts.ConfirmInviteDto'
      responses:
        '200':
          description: OK
components:
  schemas:
    Hyperlabs.Web.Models.Accounts.ValidateInviteDto:
      title: ValidateInviteDto
      type: object
      properties:
        userName:
          title: String
          type:
          - string
          - 'null'
        token:
          title: String
          type:
          - string
          - 'null'
      additionalProperties: false
    Hyperlabs.Web.Models.Accounts.ResetPasswordDto:
      title: ResetPasswordDto
      type: object
      properties:
        userName:
          title: String
          type:
          - string
          - 'null'
        newPassword:
          title: String
          type:
          - string
          - 'null'
        token:
          title: String
          type:
          - string
          - 'null'
      additionalProperties: false
    Hyperlabs.Web.Models.Accounts.LoginResultDto:
      title: LoginResultDto
      type: object
      properties:
        tokenType:
          title: String
          type:
          - string
          - 'null'
        accessToken:
          title: String
          type:
          - string
          - 'null'
      additionalProperties: false
    Hyperlabs.Web.Models.Accounts.ConfirmInviteDto:
      title: ConfirmInviteDto
      type: object
      properties:
        userName:
          title: String
          type:
          - string
          - 'null'
        token:
          title: String
          type:
          - string
          - 'null'
        password:
          title: String
          type:
          - string
          - 'null'
      additionalProperties: false
    Hyperlabs.Web.Models.Accounts.LoginDto:
      title: LoginDto
      type: object
      properties:
        userName:
          title: String
          type:
          - string
          - 'null'
        password:
          title: String
          type:
          - string
          - 'null'
      additionalProperties: false
    Hyperlabs.Web.Models.Accounts.ForgotPasswordDto:
      title: ForgotPasswordDto
      type: object
      properties:
        userName:
          title: String
          type:
          - string
          - 'null'
      additionalProperties: false
  securitySchemes:
    oauth2:
      type: apiKey
      description: 'Standard Authorization header using the Bearer scheme. Example: "Bearer {token}"'
      name: Authorization
      in: header