Leo1 Institute Fee Type API

The Institute Fee Type API from Leo1 — 2 operation(s) for institute fee type.

Operations 5

GET /api/v1/institute_fee_type/ Get Institute Fee Types #
PUT /api/v1/institute_fee_type/ Bulk Update Institute Fee Types #
POST /api/v1/institute_fee_type/ Create Institute Fee Type #
DELETE /api/v1/institute_fee_type/ Bulk Delete Institute Fee Types #
POST /api/v1/institute_fee_type/fee_types_bulk_create Bulk Create Institute Fee Type #

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-fee-type-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-fee-type-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: leofees_backend Institute Fee Type 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 Fee Type
paths:
  /api/v1/institute_fee_type/:
    get:
      tags:
      - Institute Fee Type
      summary: Get Institute Fee Types
      operationId: get_institute_fee_types_api_v1_institute_fee_type__get
      parameters:
      - required: true
        schema:
          title: Institute Id
          type: integer
        name: institute_id
        in: query
      - required: true
        schema:
          title: Branch Id
          type: integer
        name: branch_id
        in: query
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - APIKeyHeader: []
    put:
      tags:
      - Institute Fee Type
      summary: Bulk Update Institute Fee Types
      operationId: bulk_update_institute_fee_types_api_v1_institute_fee_type__put
      parameters:
      - required: true
        schema:
          title: Institute Id
          type: integer
        name: institute_id
        in: query
      - required: true
        schema:
          title: Branch Id
          type: integer
        name: branch_id
        in: query
      requestBody:
        content:
          application/json:
            schema:
              title: Request Data
              type: array
              items:
                $ref: '#/components/schemas/UpdateInstituteFeeTypeRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - APIKeyHeader: []
    post:
      tags:
      - Institute Fee Type
      summary: Create Institute Fee Type
      operationId: create_institute_fee_type_api_v1_institute_fee_type__post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateInstituteFeeTypeRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - APIKeyHeader: []
    delete:
      tags:
      - Institute Fee Type
      summary: Bulk Delete Institute Fee Types
      operationId: bulk_delete_institute_fee_types_api_v1_institute_fee_type__delete
      parameters:
      - required: true
        schema:
          title: Institute Id
          type: integer
        name: institute_id
        in: query
      - required: true
        schema:
          title: Branch Id
          type: integer
        name: branch_id
        in: query
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeleteInstituteFeeTypeRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - APIKeyHeader: []
  /api/v1/institute_fee_type/fee_types_bulk_create:
    post:
      tags:
      - Institute Fee Type
      summary: Bulk Create Institute Fee Type
      operationId: bulk_create_institute_fee_type_api_v1_institute_fee_type_fee_types_bulk_create_post
      parameters:
      - required: true
        schema:
          title: Institute Id
          type: integer
        name: institute_id
        in: query
      - required: true
        schema:
          title: Branch Id
          type: integer
        name: branch_id
        in: query
      requestBody:
        content:
          application/json:
            schema:
              title: Request Data
              type: array
              items:
                $ref: '#/components/schemas/BulkCreateInstituteFeeTypeRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - APIKeyHeader: []
components:
  schemas:
    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
    BulkCreateInstituteFeeTypeRequest:
      title: BulkCreateInstituteFeeTypeRequest
      required:
      - fee_type_name
      type: object
      properties:
        fee_type_name:
          title: Fee Type Name
          type: string
          description: Fee type name is required
        common_fee_type_id:
          title: Common Fee Type Id
          type: integer
          description: Common fee type is optional
    DeleteInstituteFeeTypeRequest:
      title: DeleteInstituteFeeTypeRequest
      required:
      - fee_type_ids
      type: object
      properties:
        fee_type_ids:
          title: Fee Type Ids
          type: array
          items:
            type: integer
          description: fee_type_ids is required
    UpdateInstituteFeeTypeRequest:
      title: UpdateInstituteFeeTypeRequest
      required:
      - fee_type_id
      - fee_type_name
      type: object
      properties:
        fee_type_id:
          title: Fee Type Id
          type: integer
          description: fee_type_id is required
        fee_type_name:
          title: Fee Type Name
          type: string
          description: fee_type_name is required
        is_checked:
          title: Is Checked
          type: boolean
          description: is_checked is optional
    CreateInstituteFeeTypeRequest:
      title: CreateInstituteFeeTypeRequest
      required:
      - fee_type_name
      - institute_id
      - branch_id
      type: object
      properties:
        fee_type_name:
          title: Fee Type Name
          type: string
          description: Fee type name is required
        institute_id:
          title: Institute Id
          type: integer
          description: Institute ID is required
        branch_id:
          title: Branch Id
          type: integer
          description: Branch ID is required
        common_fee_type_id:
          title: Common Fee Type Id
          type: integer
          description: Common fee type is optional
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: secret-key