[Goto Home](/docs/index.html)

# 🌍 GET `/communities`

## Description

- Returns the list of available communities
- Returns as per pagination

## Response Body

```json
{
  "communities": [
    {
      "_id": "6940fb887695b40bdcd6053c",
      "id": "MCGILL",
      "name": "McGill",
      "isUniversity": true,
      "emailDomain": "mcgill.ca",
      "isRelief": true,
      "emergencyContacts": [
        {
          "_id": "6940fb887695b40bdcd605cd",
          "name": "Ambulance",
          "phone": "102",
          "photo?": "https://cdn-icons-png.flaticon.com/512/2894/2894975.png"
        },
        {
          "_id": "6940fb887695b40bdcd601d4",
          "name": "Police",
          "phone": "112",
          "photo?": "https://www.flaticon.com/free-icon/police_10295611"
        },
      ],
      "createdAt": "2026-02-23T06:27:41.335Z",
      "updatedAt": "2026-02-23T06:27:41.335Z"
    },
    {
      "_id": "6940fb887695b40bdcd6043f",
      "id": "MIT",
      "name": "MIT",
      "isUniversity": true,
      "emailDomain": "mit.edu",
      "createdAt": "2026-02-23T06:27:41.335Z",
      "updatedAt": "2026-02-23T06:27:41.335Z"
    }
  ],
  "count": 2
}
```

# Links

[Goto Home](/docs/index.html)