Indian Institute of Technology Bombay Achievements API

The achievements API from Indian Institute of Technology Bombay — 2 operation(s) for achievements.

Operations 6

GET /achievements Achievements list #
POST /achievements Achievements create #
GET /achievements/{id} Achievements read #
PUT /achievements/{id} Achievements update #
PATCH /achievements/{id} Achievements update #
DELETE /achievements/{id} Achievements delete #

Documentation

Specifications

Schemas & Data

Other Resources

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/iit-bombay-achievements-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

iit-bombay-achievements-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: InstiApp Achievements API
  description: InstiApp IIT Bombay API
  termsOfService: https://insti.app/tos.html
  contact:
    email: devcom@iitb.ac.in
  license:
    name: AGPLv3
  version: v1
servers:
- url: https://gymkhana.iitb.ac.in/instiapp/api
security:
- Basic: []
tags:
- name: Achievements
paths:
  /achievements:
    parameters: []
    get:
      operationId: achievements_list
      description: List the user's achivements and requests.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AchievementUser'
      tags:
      - Achievements
      summary: Achievements list
      x-summary-source: derived
    post:
      operationId: achievements_create
      description: Make a request to a body for a new achievement.
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AchievementUser'
      tags:
      - Achievements
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AchievementUser'
        required: true
      summary: Achievements create
      x-summary-source: derived
  /achievements/{id}:
    parameters:
    - name: id
      in: path
      description: A UUID string identifying this achievement.
      required: true
      schema:
        type: string
        format: uuid
    get:
      operationId: achievements_read
      description: Views for Achievements
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AchievementUser'
      tags:
      - Achievements
      summary: Achievements read
      x-summary-source: derived
    put:
      operationId: achievements_update
      description: 'Update/Verify an achievement.

        Needs BodyRole with `VerA` or can patch own achievement'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AchievementUser'
      tags:
      - Achievements
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AchievementUser'
        required: true
      summary: Achievements update
      x-summary-source: derived
    patch:
      operationId: achievements_update
      description: 'Update/Verify an achievement.

        Needs BodyRole with `VerA` or can patch own achievement'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AchievementUser'
      tags:
      - Achievements
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AchievementUser'
        required: true
      summary: Achievements update
      x-summary-source: derived
    delete:
      operationId: achievements_delete
      description: 'Delete an achievement or request.

        Needs BodyRole with `VerA`'
      responses:
        '204':
          description: ''
      tags:
      - Achievements
      summary: Achievements delete
      x-summary-source: derived
components:
  schemas:
    BodySerializerMin:
      required:
      - name
      type: object
      properties:
        id:
          title: Id
          type: string
          format: uuid
          readOnly: true
        str_id:
          title: Str id
          type:
          - string
          - 'null'
          readOnly: true
          minLength: 1
        name:
          title: Name
          type: string
          maxLength: 50
          minLength: 1
        short_description:
          title: Short description
          type: string
          maxLength: 50
        website_url:
          title: Website url
          type:
          - string
          - 'null'
          format: uri
          maxLength: 200
        image_url:
          title: Image url
          type:
          - string
          - 'null'
          format: uri
          maxLength: 200
        cover_url:
          title: Cover url
          type:
          - string
          - 'null'
          format: uri
          maxLength: 200
        followers_count:
          title: Followers count
          type: string
          readOnly: true
        short_name:
          title: Short name
          type:
          - string
          - 'null'
          maxLength: 20
    AchievementUser:
      required:
      - title
      type: object
      properties:
        id:
          title: Id
          type: string
          format: uuid
          readOnly: true
        title:
          title: Title
          type: string
          maxLength: 80
          minLength: 1
        description:
          title: Description
          type: string
        admin_note:
          title: Admin note
          type:
          - string
          - 'null'
        body_detail:
          $ref: '#/components/schemas/BodySerializerMin'
        dismissed:
          title: Dismissed
          type: boolean
        verified:
          title: Verified
          type: boolean
        user:
          $ref: '#/components/schemas/UserProfile'
        body:
          title: Body
          type:
          - string
          - 'null'
          format: uuid
        verified_by:
          title: Verified by
          type:
          - string
          - 'null'
          format: uuid
        event:
          title: Event
          type:
          - string
          - 'null'
          format: uuid
        event_detail:
          $ref: '#/components/schemas/EventMin'
        offer:
          title: Offer
          type:
          - string
          - 'null'
          format: uuid
        isSkill:
          title: IsSkill
          type: boolean
    UserProfile:
      type: object
      properties:
        id:
          title: Id
          type: string
          format: uuid
          readOnly: true
        name:
          title: Name
          type: string
          maxLength: 50
        profile_pic:
          title: Profile pic
          type:
          - string
          - 'null'
          format: uri
          maxLength: 200
        ldap_id:
          title: Ldap id
          type:
          - string
          - 'null'
          maxLength: 50
    EventMin:
      required:
      - name
      - start_time
      - end_time
      type: object
      properties:
        id:
          title: Id
          type: string
          format: uuid
          readOnly: true
        str_id:
          title: Str id
          type:
          - string
          - 'null'
          readOnly: true
          minLength: 1
        name:
          title: Name
          type: string
          maxLength: 60
          minLength: 1
        tags:
          title: Tags
          type:
          - string
          - 'null'
          enum:
          - event
          - announcement
        image_url:
          title: Image url
          type:
          - string
          - 'null'
          format: uri
          maxLength: 200
        start_time:
          title: Start time
          type: string
          format: date-time
        end_time:
          title: End time
          type: string
          format: date-time
  securitySchemes:
    Basic:
      type: http
      scheme: basic