Fyno Fyno Verify API

The Fyno Verify API from Fyno — 1 operation(s) for fyno verify.

Operations 1

POST /{WSID}/{version}/verify/validate Verify OTP

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/fyno-fyno-verify-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

fyno-fyno-verify-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Fyno Rest Fire an Event Fyno Verify API
  version: v1
servers:
- url: https://api.fyno.io/v1
security:
- BearerAuth: []
tags:
- name: Fyno Verify
paths:
  /{WSID}/{version}/verify/validate:
    post:
      tags:
      - Fyno Verify
      summary: Verify OTP
      description: This API enables you to validate the OTP entered by the user using either `request_id` (received in response of the Fire an Event API) or `destination` (such as phone number, email).
      parameters:
      - name: WSID
        in: path
        description: Enter your workspace ID. You can obtain this value from the API Keys page within your Fyno account.
        required: true
        style: simple
        explode: false
        schema:
          type: string
        example: FYXXXXXXXX
      - name: version
        in: path
        description: Specify the version for which you would like to manage the user profile.
        required: true
        style: simple
        explode: false
        schema:
          type: string
          default: live
          enum:
          - live
          - test
      - name: request_id
        in: query
        description: Specify the request id of the triggered notification event that sent the OTP to the user.<br/>You must use this query parameter if **you've disabled "Use destination as id"** in the Fyno Verify setting.
        required: false
        style: form
        explode: true
        schema:
          type: string
        example: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
      - name: destination
        in: query
        description: Enter the destination where the OTP is sent. It can be either mobile no or email id.<br/>You must use this query parameter if **you've enabled "Use destination as id"** in the Fyno Verify setting.
        required: false
        style: form
        explode: true
        schema:
          type: string
        example: xxxxxxxxxx
      - name: otp
        in: query
        description: Enter the OTP which you want to validate.
        required: true
        style: form
        explode: true
        schema:
          type: string
        example: 1234
      responses:
        '200':
          $ref: '#/components/responses/OTPSuccess'
        '400':
          $ref: '#/components/responses/OTPInvalid'
        '401':
          $ref: '#/components/responses/APIKeyInvalid'
components:
  responses:
    OTPInvalid:
      description: Invalid OTP entered by user
      content:
        application/json:
          schema:
            properties:
              _message:
                example: user entered the wrong OTP
                type: string
              status:
                example: error
                type: string
            type: object
            required:
            - _message
            - status
    APIKeyInvalid:
      description: API Key or Workspace ID is invalid. User is unauthorised.
      content:
        application/json:
          schema:
            properties:
              _message:
                example: Invalid API details
                type: string
              status:
                example: error
                type: string
            type: object
            required:
            - _message
            - status
    OTPSuccess:
      description: OTP successfully validated
      content:
        application/json:
          schema:
            properties:
              _message:
                example: OTP successfully validated.
                type: string
              status:
                example: ok
                type: string
            type: object
            required:
            - _message
            - status
  securitySchemes:
    BearerAuth:
      type: http
      description: Enter your API Key. If you don't have it already, you can create one from the API Keys page within your Fyno account
      scheme: bearer
      x-fern-bearer:
        name: apiKey
        env: FYNO_API_KEY