College API Documentation

Welcome to the College API by the-bipu. Here we've tried to list all the colleges of India with this API.

Get a Random College.

Use this endpoint to retrieve a random college.

Example Request:

GET

Example Response:

{
  "college": "Sample College Name",
  "location": "Sample Location",
  "state": "Sample State"
}

Get Colleges with First Letter.

Use this endpoint to retrieve a list of colleges with same starting letter.

Example Request:

GET

Example Response:

[
  {
    "college": "College Starting with Z",
    "location": "Location",
    "state": "State"
  }
]

Get all Colleges.

Use this endpoint to retrieve a list of available colleges.

Example Request:

GET

Example Response:

[
  {
    "college": "College Name 1",
    "location": "Location 1",
    "state": "State 1"
  },
  {
    "college": "College Name 2",
    "location": "Location 2",
    "state": "State 2"
  }
]