Galatea Bio Auth API

The auth API from Galatea Bio — 5 operation(s) for auth.

Operations 5

POST /users/auth #
POST /users/confirm #
POST /users/logout #
POST /users/refresh #
POST /users/request-new-code #

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/galatea-bio-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

galatea-bio-auth-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Octopod Auth API
  version: v1
servers:
- url: https://api.galatea.bio/api/v1
security:
- Bearer: []
tags:
- name: auth
paths:
  /users/auth:
    parameters: []
    post:
      operationId: users_auth_create
      description: Login
      responses:
        '401':
          description: '{"detail": "Unauthorized request"}'
        '200':
          description: '{"status": "Ok"}'
      tags:
      - auth
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                email:
                  description: Email
                  type: string
                password:
                  description: Password
                  type: string
              in: body
        required: true
  /users/confirm:
    parameters: []
    post:
      operationId: users_confirm_create
      description: MFA confirmation
      responses:
        '401':
          description: '{"detail": "Unauthorized request"}'
        '200':
          description: '{"status": "Ok"}'
      tags:
      - auth
      requestBody:
        content:
          application/json:
            schema:
              required:
              - code
              - mfa_session_id
              type: object
              properties:
                code:
                  title: Code
                  type: integer
                mfa_session_id:
                  title: Mfa session id
                  type: string
                  minLength: 1
        required: true
  /users/logout:
    parameters: []
    post:
      operationId: users_logout_create
      description: Logout from user session
      responses:
        '400':
          description: '{"detail": "Bad request"}'
        '401':
          description: '{"detail": "Unauthorized request"}'
        '403':
          description: '{"detail": "Forbidden"}'
        '200':
          description: '[{"status": "Ok"}]'
      tags:
      - auth
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                refresh:
                  description: Refresh token
                  type: string
              in: body
        required: true
  /users/refresh:
    parameters: []
    post:
      operationId: users_refresh_create
      description: Refresh access tokens
      responses:
        '401':
          description: '{"detail": "Unauthorized request"}'
        '200':
          description: '{"status": "Ok"}'
      tags:
      - auth
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                refresh:
                  description: Refresh token
                  type: string
                access:
                  description: Expired access token
                  type: string
              in: body
        required: true
  /users/request-new-code:
    parameters: []
    post:
      operationId: users_request-new-code_create
      description: Request new MFA code
      responses:
        '401':
          description: '{"detail": "Unauthorized request"}'
        '200':
          description: '{"status": "Ok"}'
      tags:
      - auth
      requestBody:
        content:
          application/json:
            schema:
              required:
              - mfa_session_id
              type: object
              properties:
                mfa_session_id:
                  title: Mfa session id
                  type: string
                  minLength: 1
        required: true
components:
  securitySchemes:
    Bearer:
      type: apiKey
      name: Authorization
      in: header