Skip to main content

Get List

GET 

/api/librarys

API Endpoint: Get Library Data

This endpoint retrieves a list of libraries from the UdyogX application. It is a simple GET request that does not require any request body.

Request Format

  • Method: GET
  • URL: https://app.udyogx.in/api/librarys

Expected Response Format

The response will be in JSON format and will include an array of library objects. Each object may contain various properties related to the library, such as its name, location, and available resources. The exact structure of the response will depend on the data stored in the application.

Example Response

{
"libraries": [
{
"id": "string",
"name": "string",
"location": "string",
"resources": "array"
}
]
}

Responses