Earnipay Authentication API

User authentication and authorization endpoints

Operations 8

POST /v1/auth/signup Register new user account #
POST /v1/auth/verify-email Verify email with code #
POST /v1/auth/resend-code Resend verification code #
POST /v1/auth/login Login with email and password #
POST /v1/auth/refresh Refresh access token #
POST /v1/auth/logout Logout user (invalidate refresh token) #
POST /v1/auth/forgot-password Request password reset link #
POST /v1/auth/reset-password Reset password with 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/earnipay-authentication-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

earnipay-authentication-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Earnipay Invoicing App Authentication API
  description: FIRS-compliant e-invoicing platform API
  version: '1.0'
  contact: {}
servers: []
tags:
- name: Authentication
  description: User authentication and authorization endpoints
paths:
  /v1/auth/signup:
    post:
      operationId: AuthController_signup_v1
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SignupDto'
      responses:
        '201':
          description: User registered successfully. Verification code sent to email.
        '409':
          description: User already exists
      summary: Register new user account
      tags:
      - Authentication
  /v1/auth/verify-email:
    post:
      operationId: AuthController_verifyEmail_v1
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VerifyEmailDto'
      responses:
        '200':
          description: Email verified successfully. User is logged in.
        '400':
          description: Invalid or expired verification code
      summary: Verify email with code
      tags:
      - Authentication
  /v1/auth/resend-code:
    post:
      operationId: AuthController_resendVerificationCode_v1
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ResendCodeDto'
      responses:
        '200':
          description: Verification code sent
        '400':
          description: User not found or already verified
      summary: Resend verification code
      tags:
      - Authentication
  /v1/auth/login:
    post:
      operationId: AuthController_login_v1
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LoginDto'
      responses:
        '200':
          description: Login successful
        '401':
          description: Invalid credentials or email not verified
      summary: Login with email and password
      tags:
      - Authentication
  /v1/auth/refresh:
    post:
      operationId: AuthController_refreshToken_v1
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RefreshTokenDto'
      responses:
        '200':
          description: Tokens refreshed successfully
        '401':
          description: Invalid or expired refresh token
      summary: Refresh access token
      tags:
      - Authentication
  /v1/auth/logout:
    post:
      operationId: AuthController_logout_v1
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RefreshTokenDto'
      responses:
        '200':
          description: Logged out successfully
      summary: Logout user (invalidate refresh token)
      tags:
      - Authentication
  /v1/auth/forgot-password:
    post:
      operationId: AuthController_forgotPassword_v1
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ForgotPasswordDto'
      responses:
        '200':
          description: If account exists, password reset link will be sent
      summary: Request password reset link
      tags:
      - Authentication
  /v1/auth/reset-password:
    post:
      operationId: AuthController_resetPassword_v1
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ResetPasswordDto'
      responses:
        '200':
          description: Password reset successfully. All sessions invalidated.
        '400':
          description: Invalid or expired reset token
      summary: Reset password with token
      tags:
      - Authentication
components:
  schemas:
    VerifyEmailDto:
      type: object
      properties:
        email:
          type: string
          example: john.doe@example.com
          description: User email address
        code:
          type: string
          example: '123456'
          description: 6-digit verification code
          minLength: 6
          maxLength: 6
      required:
      - email
      - code
    RefreshTokenDto:
      type: object
      properties:
        refreshToken:
          type: string
          example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
          description: Refresh token
      required:
      - refreshToken
    ResendCodeDto:
      type: object
      properties:
        email:
          type: string
          example: john.doe@example.com
          description: User email address
      required:
      - email
    ResetPasswordDto:
      type: object
      properties:
        token:
          type: string
          example: abc123def456...
          description: Password reset token from email
        newPassword:
          type: string
          example: NewStrongP@ss123
          description: New password
          minLength: 8
      required:
      - token
      - newPassword
    ForgotPasswordDto:
      type: object
      properties:
        email:
          type: string
          example: john.doe@example.com
          description: User email address
      required:
      - email
    LoginDto:
      type: object
      properties:
        email:
          type: string
          example: john.doe@example.com
          description: User email address
        password:
          type: string
          example: StrongP@ss123
          description: User password
      required:
      - email
      - password
    SignupDto:
      type: object
      properties:
        email:
          type: string
          example: john.doe@example.com
          description: User email address
        password:
          type: string
          example: StrongP@ss123
          description: Password must be at least 8 characters with uppercase, lowercase, and number/special character
          minLength: 8
        firstName:
          type: string
          example: John
          description: User first name (optional)
        lastName:
          type: string
          example: Doe
          description: User last name (optional)
      required:
      - email
      - password
  securitySchemes:
    JWT-auth:
      scheme: bearer
      bearerFormat: JWT
      type: http
      name: JWT
      description: Enter JWT token
      in: header
    API-Key:
      type: apiKey
      in: header
      name: X-API-Key
      description: API Key for third-party integrations