Galileo Technologies auth API

The auth API from Galileo Technologies — 46 operation(s) for auth.

Operations 46

POST /login Login Email #
POST /login/api_key Login Api Key #
POST /login/social Login Social #
GET /saml/login Saml Login #
POST /saml/acs Saml Acs #
GET /saml/metadata Saml Metadata #
POST /logout Logout #
POST /verify_email Verify Email #
GET /token Get Token #
POST /refresh_token Refresh Token #
GET /v1/token Get Token #
POST /v1/login Login Email #
POST /v1/login/api_key Login Api Key #
POST /v1/login/social Login Social #
GET /v1/saml/login Saml Login #
POST /v1/saml/acs Saml Acs #
GET /v1/saml/metadata Saml Metadata #
POST /v1/verify_email Verify Email #
POST /v1/refresh_token Refresh Token #
GET /v2/token Get Token #
POST /v2/login Login Email #
POST /v2/login/api_key Login Api Key #
POST /v2/login/social Login Social #
GET /v2/saml/login Saml Login #
POST /v2/saml/acs Saml Acs #
GET /v2/saml/metadata Saml Metadata #
POST /v2/verify_email Verify Email #
POST /v2/refresh_token Refresh Token #
GET /public/v1/token Get Token #
POST /public/v1/login Login Email #
POST /public/v1/login/api_key Login Api Key #
POST /public/v1/login/social Login Social #
GET /public/v1/saml/login Saml Login #
POST /public/v1/saml/acs Saml Acs #
GET /public/v1/saml/metadata Saml Metadata #
POST /public/v1/verify_email Verify Email #
POST /public/v1/refresh_token Refresh Token #
GET /public/v2/token Get Token #
POST /public/v2/login Login Email #
POST /public/v2/login/api_key Login Api Key #
POST /public/v2/login/social Login Social #
GET /public/v2/saml/login Saml Login #
POST /public/v2/saml/acs Saml Acs #
GET /public/v2/saml/metadata Saml Metadata #
POST /public/v2/verify_email Verify Email #
POST /public/v2/refresh_token Refresh 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/galileo-technologies-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

galileo-technologies-auth-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Galileo API Server annotation Auth API
  version: 1.1085.0
servers:
- url: https://api.galileo.ai
  description: Galileo API Server - galileo-v2
tags:
- name: auth
paths:
  /login:
    post:
      tags:
      - auth
      summary: Login Email
      operationId: login_email_login_post
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/Body_login_email_login_post'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - OAuth2PasswordBearer: []
  /login/api_key:
    post:
      tags:
      - auth
      summary: Login Api Key
      operationId: login_api_key_login_api_key_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiKeyLoginRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - OAuth2PasswordBearer: []
  /login/social:
    post:
      tags:
      - auth
      summary: Login Social
      operationId: login_social_login_social_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SocialLoginRequest'
              examples:
              - id_token: token1234
                provider: google
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - OAuth2PasswordBearer: []
  /saml/login:
    get:
      tags:
      - auth
      summary: Saml Login
      operationId: saml_login_saml_login_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
  /saml/acs:
    post:
      tags:
      - auth
      summary: Saml Acs
      operationId: saml_acs_saml_acs_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
      - OAuth2PasswordBearer: []
  /saml/metadata:
    get:
      tags:
      - auth
      summary: Saml Metadata
      operationId: saml_metadata_saml_metadata_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
  /logout:
    post:
      tags:
      - auth
      summary: Logout
      operationId: logout_logout_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
      security:
      - ClassicAPIKeyHeader: []
      - APIKeyHeader: []
      - OAuth2PasswordBearer: []
      - HTTPBasic: []
  /verify_email:
    post:
      tags:
      - auth
      summary: Verify Email
      operationId: verify_email_verify_email_post
      security:
      - OAuth2PasswordBearer: []
      parameters:
      - name: verification_token
        in: query
        required: true
        schema:
          type: string
          title: Verification Token
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EmailVerificationRequest'
              examples:
              - email: user@example.com
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /token:
    get:
      tags:
      - auth
      summary: Get Token
      operationId: get_token_token_get
      deprecated: true
      security:
      - ClassicAPIKeyHeader: []
      - APIKeyHeader: []
      - OAuth2PasswordBearer: []
      - HTTPBasic: []
      parameters:
      - name: organization_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid4
          - type: 'null'
          title: Organization Id
      - name: organization_slug
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Organization Slug
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetTokenResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /refresh_token:
    post:
      tags:
      - auth
      summary: Refresh Token
      operationId: refresh_token_refresh_token_post
      security:
      - OAuth2PasswordBearer: []
      parameters:
      - name: refresh_token
        in: cookie
        required: true
        schema:
          type: string
          title: Refresh Token
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v1/token:
    get:
      tags:
      - auth
      summary: Get Token
      operationId: get_token_v1_token_get
      security:
      - ClassicAPIKeyHeader: []
      - APIKeyHeader: []
      - OAuth2PasswordBearer: []
      - HTTPBasic: []
      parameters:
      - name: organization_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid4
          - type: 'null'
          title: Organization Id
      - name: organization_slug
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Organization Slug
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetTokenResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v1/login:
    post:
      tags:
      - auth
      summary: Login Email
      operationId: login_email_v1_login_post
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/Body_login_email_v1_login_post'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - OAuth2PasswordBearer: []
  /v1/login/api_key:
    post:
      tags:
      - auth
      summary: Login Api Key
      operationId: login_api_key_v1_login_api_key_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiKeyLoginRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - OAuth2PasswordBearer: []
  /v1/login/social:
    post:
      tags:
      - auth
      summary: Login Social
      operationId: login_social_v1_login_social_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SocialLoginRequest'
              examples:
              - id_token: token1234
                provider: google
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - OAuth2PasswordBearer: []
  /v1/saml/login:
    get:
      tags:
      - auth
      summary: Saml Login
      operationId: saml_login_v1_saml_login_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
  /v1/saml/acs:
    post:
      tags:
      - auth
      summary: Saml Acs
      operationId: saml_acs_v1_saml_acs_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
      - OAuth2PasswordBearer: []
  /v1/saml/metadata:
    get:
      tags:
      - auth
      summary: Saml Metadata
      operationId: saml_metadata_v1_saml_metadata_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
  /v1/verify_email:
    post:
      tags:
      - auth
      summary: Verify Email
      operationId: verify_email_v1_verify_email_post
      security:
      - OAuth2PasswordBearer: []
      parameters:
      - name: verification_token
        in: query
        required: true
        schema:
          type: string
          title: Verification Token
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EmailVerificationRequest'
              examples:
              - email: user@example.com
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v1/refresh_token:
    post:
      tags:
      - auth
      summary: Refresh Token
      operationId: refresh_token_v1_refresh_token_post
      security:
      - OAuth2PasswordBearer: []
      parameters:
      - name: refresh_token
        in: cookie
        required: true
        schema:
          type: string
          title: Refresh Token
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v2/token:
    get:
      tags:
      - auth
      summary: Get Token
      operationId: get_token_v2_token_get
      security:
      - ClassicAPIKeyHeader: []
      - APIKeyHeader: []
      - OAuth2PasswordBearer: []
      - HTTPBasic: []
      parameters:
      - name: organization_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid4
          - type: 'null'
          title: Organization Id
      - name: organization_slug
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Organization Slug
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetTokenResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v2/login:
    post:
      tags:
      - auth
      summary: Login Email
      operationId: login_email_v2_login_post
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/Body_login_email_v2_login_post'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - OAuth2PasswordBearer: []
  /v2/login/api_key:
    post:
      tags:
      - auth
      summary: Login Api Key
      operationId: login_api_key_v2_login_api_key_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiKeyLoginRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - OAuth2PasswordBearer: []
  /v2/login/social:
    post:
      tags:
      - auth
      summary: Login Social
      operationId: login_social_v2_login_social_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SocialLoginRequest'
              examples:
              - id_token: token1234
                provider: google
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - OAuth2PasswordBearer: []
  /v2/saml/login:
    get:
      tags:
      - auth
      summary: Saml Login
      operationId: saml_login_v2_saml_login_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
  /v2/saml/acs:
    post:
      tags:
      - auth
      summary: Saml Acs
      operationId: saml_acs_v2_saml_acs_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
      - OAuth2PasswordBearer: []
  /v2/saml/metadata:
    get:
      tags:
      - auth
      summary: Saml Metadata
      operationId: saml_metadata_v2_saml_metadata_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
  /v2/verify_email:
    post:
      tags:
      - auth
      summary: Verify Email
      operationId: verify_email_v2_verify_email_post
      security:
      - OAuth2PasswordBearer: []
      parameters:
      - name: verification_token
        in: query
        required: true
        schema:
          type: string
          title: Verification Token
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EmailVerificationRequest'
              examples:
              - email: user@example.com
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v2/refresh_token:
    post:
      tags:
      - auth
      summary: Refresh Token
      operationId: refresh_token_v2_refresh_token_post
      security:
      - OAuth2PasswordBearer: []
      parameters:
      - name: refresh_token
        in: cookie
        required: true
        schema:
          type: string
          title: Refresh Token
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /public/v1/token:
    get:
      tags:
      - auth
      summary: Get Token
      operationId: get_token_public_v1_token_get
      security:
      - ClassicAPIKeyHeader: []
      - APIKeyHeader: []
      - OAuth2PasswordBearer: []
      - HTTPBasic: []
      parameters:
      - name: organization_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid4
          - type: 'null'
          title: Organization Id
      - name: organization_slug
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Organization Slug
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetTokenResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /public/v1/login:
    post:
      tags:
      - auth
      summary: Login Email
      operationId: login_email_public_v1_login_post
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/Body_login_email_public_v1_login_post'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - OAuth2PasswordBearer: []
  /public/v1/login/api_key:
    post:
      tags:
      - auth
      summary: Login Api Key
      operationId: login_api_key_public_v1_login_api_key_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiKeyLoginRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - OAuth2PasswordBearer: []
  /public/v1/login/social:
    post:
      tags:
      - auth
      summary: Login Social
      operationId: login_social_public_v1_login_social_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SocialLoginRequest'
              examples:
              - id_token: token1234
                provider: google
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - OAuth2PasswordBearer: []
  /public/v1/saml/login:
    get:
      tags:
      - auth
      summary: Saml Login
      operationId: saml_login_public_v1_saml_login_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
  /public/v1/saml/acs:
    post:
      tags:
      - auth
      summary: Saml Acs
      operationId: saml_acs_public_v1_saml_acs_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
      - OAuth2PasswordBearer: []
  /public/v1/saml/metadata:
    get:
      tags:
      - auth
      summary: Saml Metadata
      operationId: saml_metadata_public_v1_saml_metadata_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
  /public/v1/verify_email:
    post:
      tags:
      - auth
      summary: Verify Email
      operationId: verify_email_public_v1_verify_email_post
      security:
      - OAuth2PasswordBearer: []
      parameters:
      - name: verification_token
        in: query
        required: true
        schema:
          type: string
          title: Verification Token
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EmailVerificationRequest'
              examples:
              - email: user@example.com
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /public/v1/refresh_token:
    post:
      tags:
      - auth
      summary: Refresh Token
      operationId: refresh_token_public_v1_refresh_token_post
      security:
      - OAuth2PasswordBearer: []
      parameters:
      - name: refresh_token
        in: cookie
        required: true
        schema:
          type: string
          title: Refresh Token
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /public/v2/token:
    get:
      tags:
      - auth
      summary: Get Token
      operationId: get_token_public_v2_token_get
      security:
      - ClassicAPIKeyHeader: []
      - APIKeyHeader: []
      - OAuth2PasswordBearer: []
      - HTTPBasic: []
      parameters:
      - name: organization_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid4
          - type: 'null'
          title: Organization Id
      - name: organization_slug
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Organization Slug
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetTokenResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /public/v2/login:
    post:
      tags:
      - auth
      summary: Login Email
      operationId: login_email_public_v2_login_post
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/Body_login_email_public_v2_login_post'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - OAuth2PasswordBearer: []
  /public/v2/login/api_key:
    post:
      tags:
      - auth
      summary: Login Api Key
      operationId: login_api_key_public_v2_login_api_key_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiKeyLoginRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - OAuth2PasswordBearer: []
  /public/v2/login/social:
    post:
      tags:
      - auth
      summary: Login Social
      operationId: login_social_public_v2_login_social_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SocialLoginRequest'
              examples:
              - id_token: token1234
                provider: google
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - OAuth2PasswordBearer: []
  /public/v2/saml/login:
    get:
      tags:
      - auth
      summary: Saml Login
      operationId: saml_login_public_v2_saml_login_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
  /public/v2/saml/acs:
    post:
      tags:
      - auth
      summary: Saml Acs
      operationId: saml_acs_public_v2_saml_acs_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
      - OAuth2PasswordBearer: []
  /public/v2/saml/metadata:
    get:
      tags:
      - auth
      summary: Saml Metadata
      operationId: saml_metadata_public_v2_saml_metadata_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
  /public/v2/verify_email:
    post:
      tags:
      - auth
      summary: Verify Email
      operationId: verify_email_public_v2_verify_email_post
      security:
      - OAuth2PasswordBearer: []
      parameters:
      - name: verification_token
        in: query
        required: true
        schema:
          type: string
          title: Verification Token
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EmailVerificationRequest'
              examples:
              - email: user@example.com
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /public/v2/refresh_token:
    post:
      tags:
      - auth
      summary: Refresh Token
      operationId: refresh_token_public_v2_refresh_token_post
      security:
      - OAuth2PasswordBearer: []
      parameters:
      - name: refresh_token
        in: cookie
        required: true
        schema:
          type: string
          title: Refresh Token
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    Body_login_email_public_v1_login_post:
      properties:
        grant_type:
          anyOf:
          - type: string
            pattern: ^password$
          - type: 'null'
          title: Grant Type
        username:
          type: string
          title: Username
        password:
          type: string
          format: password
          title: Password
        scope:
          type: string
          title: Scope
          default: ''
        client_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Client Id
        client_secret:
          anyOf:
          - type: string
          - type: 'null'
          format: password
          title: Client Secret
      type: object
      required:
      - username
      - password
      title: Body_login_email_public_v1_login_post
    SocialProvider:
      type: string
      enum:
      - google
      - github
      - okta
      - azure-ad
      - custom
      - saml
      title: SocialProvider
    ApiKeyLoginRequest:
      properties:
        api_key:
          type: string
          title: Api Key
      type: object
      required:
      - api_key
      title: ApiKeyLoginRequest
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    Body_login_email_public_v2_login_post:
      properties:
        grant_type:
          anyOf:
          - type: string
            pattern: ^password$
          - type: 'null'
          title: Gr

# --- truncated at 32 KB (36 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/galileo-technologies/refs/heads/main/openapi/galileo-technologies-auth-api-openapi.yml