Zesty Password API

Password management operations.

Operations 2

POST /password/request Zesty Request a password reset #
POST /password/reset Zesty Reset a user password #

Documentation

Specifications

Schemas & Data

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/zesty-password-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

zesty-password-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Zesty Auth Password API
  description: The Zesty.io Auth API is used to authenticate users with the Zesty.io platform. It returns a session token that grants access to the Instances API, Accounts API, and Media API. Auth is a standalone service designed to connect to many services in the Zesty.io infrastructure. User authentication is done by providing a user account email and password combination, which issues a short-lived 30-minute session token that is extended whenever an authenticated action is taken.
  version: 1.0.0
  contact:
    name: Zesty.io
    url: https://www.zesty.io/
  license:
    name: Proprietary
    url: https://www.zesty.io/
servers:
- url: https://auth.api.zesty.io
  description: Zesty Auth API Production Server
tags:
- name: Password
  description: Password management operations.
paths:
  /password/request:
    post:
      operationId: requestPasswordReset
      summary: Zesty Request a password reset
      description: Sends a password reset email to the specified email address if an account with that email exists.
      tags:
      - Password
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - email
              properties:
                email:
                  type: string
                  format: email
                  description: The email address associated with the account.
      responses:
        '200':
          description: Password reset email sent if the account exists.
        '400':
          description: Invalid request.
  /password/reset:
    post:
      operationId: resetPassword
      summary: Zesty Reset a user password
      description: Resets the user's password using the reset token received via email.
      tags:
      - Password
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - token
              - password
              properties:
                token:
                  type: string
                  description: The password reset token from the email.
                password:
                  type: string
                  format: password
                  description: The new password.
      responses:
        '200':
          description: Password successfully reset.
        '400':
          description: Invalid or expired token.
components:
  securitySchemes:
    sessionToken:
      type: apiKey
      in: header
      name: Authorization
      description: A session token obtained from the login endpoint. Short-lived 30-minute token extended on each authenticated action.
externalDocs:
  description: Zesty Auth API Documentation
  url: https://docs.zesty.io/docs/auth-api