Leo1 Institute Course Fee Structure API

The Institute Course Fee Structure API from Leo1 — 4 operation(s) for institute course fee structure.

Operations 6

GET /api/v1/institute/fee_structure/ Get Institute Course Fee Structures #
POST /api/v1/institute/fee_structure/ Create Institute Course Fee Structure #
DELETE /api/v1/institute/fee_structure/ Delete Institute Course Fee Structure #
POST /api/v1/institute/fee_structure/create_bulk_course_fee_structure Create Bulk Institute Course Fee Structure #
POST /api/v1/institute/fee_structure/create_bulk_course_fee_structure_excel Create Bulk Institute Course Fee Structure Excel #
PUT /api/v1/institute/fee_structure/update_bulk_course_fee_structure Update Bulk Institute Course Fee Structure #

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-course-fee-structure-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-course-fee-structure-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: leofees_backend Institute Course Fee Structure 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 Course Fee Structure
paths:
  /api/v1/institute/fee_structure/:
    get:
      tags:
      - Institute Course Fee Structure
      summary: Get Institute Course Fee Structures
      operationId: get_institute_course_fee_structures_api_v1_institute_fee_structure__get
      parameters:
      - required: true
        schema:
          title: Class Ids
          type: string
        name: class_ids
        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: []
    post:
      tags:
      - Institute Course Fee Structure
      summary: Create Institute Course Fee Structure
      operationId: create_institute_course_fee_structure_api_v1_institute_fee_structure__post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateInstituteCourseFeeStructureRequest'
        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 Course Fee Structure
      summary: Delete Institute Course Fee Structure
      operationId: delete_institute_course_fee_structure_api_v1_institute_fee_structure__delete
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeleteInstituteCourseFeeStructureRequest'
        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_structure/create_bulk_course_fee_structure:
    post:
      tags:
      - Institute Course Fee Structure
      summary: Create Bulk Institute Course Fee Structure
      operationId: create_bulk_institute_course_fee_structure_api_v1_institute_fee_structure_create_bulk_course_fee_structure_post
      requestBody:
        content:
          application/json:
            schema:
              title: Request Data
              type: array
              items:
                $ref: '#/components/schemas/CreateInstituteCourseFeeStructureRequest'
        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_structure/create_bulk_course_fee_structure_excel:
    post:
      tags:
      - Institute Course Fee Structure
      summary: Create Bulk Institute Course Fee Structure Excel
      operationId: create_bulk_institute_course_fee_structure_excel_api_v1_institute_fee_structure_create_bulk_course_fee_structure_excel_post
      requestBody:
        content:
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/Body_create_bulk_institute_course_fee_structure_excel_api_v1_institute_fee_structure_create_bulk_course_fee_structure_excel_post'
        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_structure/update_bulk_course_fee_structure:
    put:
      tags:
      - Institute Course Fee Structure
      summary: Update Bulk Institute Course Fee Structure
      operationId: update_bulk_institute_course_fee_structure_api_v1_institute_fee_structure_update_bulk_course_fee_structure_put
      requestBody:
        content:
          application/json:
            schema:
              title: Request Data
              type: array
              items:
                $ref: '#/components/schemas/UpdateInstituteCourseFeeStructureRequest'
        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'
    DeleteInstituteCourseFeeStructureRequest:
      title: DeleteInstituteCourseFeeStructureRequest
      required:
      - fee_structure_ids
      type: object
      properties:
        fee_structure_ids:
          title: Fee Structure Ids
          type: array
          items:
            type: integer
          description: Fee structure IDs is required
    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
    UpdateInstituteCourseFeeStructureRequest:
      title: UpdateInstituteCourseFeeStructureRequest
      required:
      - course_id
      - class_id
      - fee_structure_id
      type: object
      properties:
        course_id:
          title: Course Id
          type: integer
          description: Course ID is required
        class_id:
          title: Class Id
          type: integer
          description: Class ID is required
        fee_structure_id:
          title: Fee Structure Id
          type: integer
          description: Fee structure ID is required
        due_amount:
          title: Due Amount
          type: integer
          description: Due amount is optional
        due_date:
          title: Due Date
          type: string
          description: Due date is optional
        fee_type:
          title: Fee Type
          type: string
          description: Fee type is optional
        description:
          title: Description
          type: string
          description: Description is optional
    CreateInstituteCourseFeeStructureRequest:
      title: CreateInstituteCourseFeeStructureRequest
      required:
      - class_id
      - due_amount
      - due_date
      - fee_type
      type: object
      properties:
        class_id:
          title: Class Id
          type: integer
          description: Institute class ID is required
        due_amount:
          title: Due Amount
          type: integer
          description: Due amount is required
        due_date:
          title: Due Date
          type: string
          description: Due date of terms is required
        fee_type:
          title: Fee Type
          type: string
          description: Fee type is required
        description:
          title: Description
          type: string
          description: Description is required
    ? Body_create_bulk_institute_course_fee_structure_excel_api_v1_institute_fee_structure_create_bulk_course_fee_structure_excel_post
    : title: Body_create_bulk_institute_course_fee_structure_excel_api_v1_institute_fee_structure_create_bulk_course_fee_structure_excel_post
      required:
      - file
      - course_id
      - institute_id
      - branch_id
      - course_name
      - institute_name
      - branch_name
      type: object
      properties:
        file:
          title: File
          type: string
          format: binary
        course_id:
          title: Course Id
          type: integer
        institute_id:
          title: Institute Id
          type: integer
        branch_id:
          title: Branch Id
          type: integer
        course_name:
          title: Course Name
          type: string
        institute_name:
          title: Institute Name
          type: string
        branch_name:
          title: Branch Name
          type: string
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: secret-key