Emotive Auth0 API

The Auth0 API from Emotive — 5 operation(s) for auth0.

Operations 5

POST /auth0/google_token Accept Auth0 JWT for Google login, create Emotive admin JWT, redirect to Emotive admin brand selection page. #
POST /auth0/login Authenticate username/password for auth0 #
POST /auth0/password-reset Password reset from auth0 #
POST /auth0/token Accept Auth0 JWT, create Emotive JWT, redirect to Emotive home page. #
GET /auth0/user/{email} Get user profile info for password reset using Auth0 #

Documentation

Specifications

Other Resources

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/emotive-auth0-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

emotive-auth0-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  license:
    name: Private
  title: Emotive Auth Server Auth0 API
  version: 0.1.0
  x-origin:
  - url: https://api-gw.emotiveapp.co/auth/openapi.json
    format: openapi
    version: 3.0.2
    method: searched
    retrieved: '2026-08-13'
    note: 'Fetched verbatim from the Emotive API gateway. Original servers[] was relative ([{"url": "/auth"}]); resolved to the absolute gateway base for portability. Verbatim copy retained at openapi/_original/emotive-auth-openapi.json.'
servers:
- url: https://api-gw.emotiveapp.co/auth
  description: Emotive API gateway — auth service
tags:
- name: Auth0
paths:
  /auth0/google_token:
    post:
      operationId: controllers.auth0.issue_token_for_google_login
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/Auth0JWTPayload'
      responses:
        '302':
          description: Emotive admin brand selection page.
          headers:
            Location:
              description: Emotive admin brand selection page.
              schema:
                format: uri
                type: string
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonResponse'
          description: Bad Request
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonResponse'
          description: Authentication Failed
      summary: Accept Auth0 JWT for Google login, create Emotive admin JWT, redirect to Emotive admin brand selection page.
      tags:
      - Auth0
  /auth0/login:
    post:
      operationId: controllers.auth0.login
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Auth0LoginPayload'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonResponse'
          description: Authentication Succeeded
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonResponse'
          description: Bad Request
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonResponse'
          description: Authentication Failed
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonResponse'
          description: Brand is not active
      security:
      - ApiKeyAuth: []
      summary: Authenticate username/password for auth0
      tags:
      - Auth0
  /auth0/password-reset:
    post:
      operationId: controllers.auth0.password_reset
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Auth0PasswordResetPayload'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonResponse'
          description: Password reset Succeeded
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonResponse'
          description: Bad Request (includes existing password chosen as new password)
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonResponse'
          description: Password reset Failed
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonResponse'
          description: User does not exist
      security:
      - ApiKeyAuth: []
      summary: Password reset from auth0
      tags:
      - Auth0
  /auth0/token:
    post:
      operationId: controllers.auth0.issue_token
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/Auth0JWTPayload'
      responses:
        '302':
          description: Emotive home page.
          headers:
            Location:
              description: Emotive home page.
              schema:
                format: uri
                type: string
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonResponse'
          description: Bad Request
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonResponse'
          description: Authentication Failed
      summary: Accept Auth0 JWT, create Emotive JWT, redirect to Emotive home page.
      tags:
      - Auth0
  /auth0/user/{email}:
    get:
      operationId: controllers.auth0.get_user
      parameters:
      - description: email of the user for Emotive
        in: path
        name: email
        required: true
        schema:
          format: email
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonResponse'
          description: User found
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonResponse'
          description: Bad Request
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonResponse'
          description: Authentication Failed
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonResponse'
          description: User does not exist
      security:
      - ApiKeyAuth: []
      summary: Get user profile info for password reset using Auth0
      tags:
      - Auth0
components:
  schemas:
    Auth0LoginPayload:
      properties:
        password:
          description: password of the user for Emotive
          maxLength: 100
          minLength: 3
          type: string
        username:
          description: username of the user for Emotive
          maxLength: 50
          minLength: 3
          type: string
      required:
      - username
      - password
      type: object
    Auth0PasswordResetPayload:
      properties:
        email:
          description: email of the user for Emotive
          format: email
          type: string
        password:
          description: new password of the user for Emotive
          maxLength: 100
          minLength: 3
          type: string
      required:
      - email
      - password
      type: object
    JsonResponse:
      properties:
        message:
          type: string
      type: object
    Auth0JWTPayload:
      properties:
        access_token:
          type: string
        id_token:
          type: string
      required:
      - access_token
      - id_token
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: X-API-Key
      type: apiKey
      x-apikeyInfoFunc: core.api_security.api_key