Stax Forgot API

The Forgot API from Stax — 1 operation(s) for forgot.

Operations 1

POST /forgot Initiate Password Reset #

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/stax-forgot-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

stax-forgot-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: stax-api Forgot API
  version: '0.1'
servers:
- url: https://apiprod.fattlabs.com/
security:
- ApiKeyAuth: []
tags:
- name: Forgot
paths:
  /forgot:
    post:
      summary: Initiate Password Reset
      description: Initiate resetting a user's password
      operationId: initiate-password-reset
      parameters:
      - name: email
        in: query
        description: The e-mail of an existing user.
        required: true
        schema:
          type: string
      - name: url
        in: query
        description: The URL login reset URL that gets appended with the merchant's token.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value: "\n[\n  \"email sent\"\n]"
              schema:
                type: array
                items:
                  type: string
                  example: email sent
        '422':
          description: '422'
          content:
            application/json:
              examples:
                Result:
                  value: "{\n  \"url\": [\n    \"The url field is required.\"\n  ],\n  \"email\": [\n    \"The selected email is required.\"\n  ]\n}"
              schema:
                type: object
                properties:
                  url:
                    type: array
                    items:
                      type: string
                      example: The url field is required.
                  email:
                    type: array
                    items:
                      type: string
                      example: The selected email is required.
      deprecated: false
      tags:
      - Forgot
components:
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: API key for merchant-level operations. Provides access to merchant-specific endpoints including transactions, payments, customer management, and merchant account settings. This key is scoped to a single merchant account and cannot access partner-level functionality.
    PartnerApiKey:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Partner-level API key with elevated privileges. Grants access to all partner operations including merchant management, portfolio oversight, reporting across multiple merchant accounts, and partner-specific administrative functions. Also provides access to all merchant-level operations for accounts under the partner's management.
    EphemeralAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Temporary authentication token with limited lifespan. Used for short-term access to specific operations, typically generated for secure one-time actions or time-bounded sessions. Automatically expires after a predefined period for enhanced security.