Leo1 institute API

The institute API from Leo1 — 3 operation(s) for institute.

Operations 3

POST /api/v1/institute/settlement Retrieve Institute Settlements #
POST /api/v1/institute/transactions/date Retrieve Institute Transactions Date #
POST /api/v1/institute/transactions Get Txn Details #

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/leo1-institute-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

leo1-institute-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: leofees_backend Institute API
  version: version
  description: General system endpoints for the API.
servers:
- url: https://api.leo1.in
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: institute
paths:
  /api/v1/institute/settlement:
    post:
      tags:
      - institute
      summary: Retrieve Institute Settlements
      operationId: retrieve_institute_settlements_api_v1_institute_settlement_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RetrieveSettlementsRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/institute/transactions/date:
    post:
      tags:
      - institute
      summary: Retrieve Institute Transactions Date
      operationId: retrieve_institute_transactions_date_api_v1_institute_transactions_date_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RetrieveInstituteTransactionsByDateRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/institute/transactions:
    post:
      tags:
      - institute
      summary: Get Txn Details
      operationId: get_txn_details_api_v1_institute_transactions_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GetInstituteTransactionRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RetrieveInstituteTransactionsByDateRequest:
      title: RetrieveInstituteTransactionsByDateRequest
      required:
      - key
      - transaction_date
      - hash
      - email
      type: object
      properties:
        key:
          title: Key
          type: string
        transaction_date:
          title: Transaction Date
          type: string
        hash:
          title: Hash
          type: string
        email:
          title: Email
          type: string
    HTTPValidationError:
      title: HTTPValidationError
      type: object
      properties:
        detail:
          title: Detail
          type: array
          items:
            $ref: '#/components/schemas/ValidationError'
    ValidationError:
      title: ValidationError
      required:
      - loc
      - msg
      - type
      type: object
      properties:
        loc:
          title: Location
          type: array
          items:
            anyOf:
            - type: string
            - type: integer
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
    GetInstituteTransactionRequest:
      title: GetInstituteTransactionRequest
      required:
      - erp_transaction_id
      - key
      - email
      - phone
      - hash
      type: object
      properties:
        erp_transaction_id:
          title: Erp Transaction Id
          type: string
        key:
          title: Key
          type: string
        email:
          title: Email
          type: string
        phone:
          title: Phone
          type: string
        hash:
          title: Hash
          type: string
    RetrieveSettlementsRequest:
      title: RetrieveSettlementsRequest
      required:
      - key
      - payout_date
      - email
      - hash
      type: object
      properties:
        key:
          title: Key
          type: string
        payout_date:
          title: Payout Date
          type: string
        email:
          title: Email
          type: string
        hash:
          title: Hash
          type: string
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: secret-key