Leo1 Institute Payment API

The Institute Payment API from Leo1 — 5 operation(s) for institute payment.

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-payment-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

leo1-institute-payment-api-openapi.yml Raw ↑
openapi: 3.0.2
info:
  title: leofees_backend api Institute Payment API
  version: version
  description: General system endpoints for the API.
tags:
- name: Institute Payment
paths:
  /institute_payment/v1/:
    get:
      tags:
      - Institute Payment
      summary: Index
      operationId: index_institute_payment_v1__get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
  /institute_payment/v1/create-temp-student:
    post:
      tags:
      - Institute Payment
      summary: Get Or Create Temp Student
      operationId: get_or_create_temp_student_institute_payment_v1_create_temp_student_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TempStudentCreate'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /institute_payment/v1/get-temp-student-details:
    get:
      tags:
      - Institute Payment
      summary: Get Temp Student Details
      operationId: get_temp_student_details_institute_payment_v1_get_temp_student_details_get
      parameters:
      - required: true
        schema:
          title: Mobile No
          type: string
        name: mobile_no
        in: query
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /institute_payment/v1/get-latest-payment-record:
    get:
      tags:
      - Institute Payment
      summary: Get Latest Payment Record
      operationId: get_latest_payment_record_institute_payment_v1_get_latest_payment_record_get
      parameters:
      - required: true
        schema:
          title: Student Id
          type: integer
        name: student_id
        in: query
      - required: false
        schema:
          title: User Status
          type: string
        name: user_status
        in: query
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /institute_payment/v1/download-institute-payment-receipt:
    get:
      tags:
      - Institute Payment
      summary: Download Institute Payment Receipt
      description: API to download institute payment receipt
      operationId: download_institute_payment_receipt_institute_payment_v1_download_institute_payment_receipt_get
      parameters:
      - required: true
        schema:
          title: Transaction Id
          type: string
        name: transaction_id
        in: query
      - required: true
        schema:
          title: New Student
          type: boolean
        name: new_student
        in: query
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      title: HTTPValidationError
      type: object
      properties:
        detail:
          title: Detail
          type: array
          items:
            $ref: '#/components/schemas/ValidationError'
    TempStudentCreate:
      title: TempStudentCreate
      required:
      - name
      - terms_conditions_agreed
      type: object
      properties:
        name:
          title: Name
          type: string
        course:
          title: Course
          type: string
        mobile_no:
          title: Mobile No
          type: string
        email:
          title: Email
          type: string
        father_name:
          title: Father Name
          type: string
        terms_conditions_agreed:
          title: Terms Conditions Agreed
          type: boolean
        institute_id:
          title: Institute Id
          type: integer
        institute_name:
          title: Institute Name
          type: string
        division:
          title: Division
          type: string
        year_of_study:
          title: Year Of Study
          type: string
    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
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: secret-key