> For the complete documentation index, see [llms.txt](https://docs.sendstackhq.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sendstackhq.com/delivery-api/locations/get-countries.md).

# Get Countries

## Get Countries

<mark style="color:blue;">`GET`</mark> `{baseUrl}/countries`

This endpoint allows you to view mapped countries and their country code.

```json
// Sample Response Body - 200 OK
{
    "status": true,
    "message": "Countries fetched successfully",
    "data": [
        {
            "_id": "64ffa3196e17045193d73a45",
            "countryCode": "AF",
            "createdAt": "2023-09-11T23:30:33.801Z",
            "name": "Afghanistan",
            "updatedAt": "2023-09-11T23:30:33.801Z"
        },
        //...truncated for brevity
}
```
