# Country Search
source: https://developer.mastercard.com/locations/documentation/use-cases/country-code/index.md

## Country Search {#country-search}

This endpoint allows customers to retrieve a list of supported countries available within the Mastercard ATM Locations dataset, including country names and associated reference codes.

### Where it applies {#where-it-applies}

Organizations that provide consumer-facing financial experiences and need to support customer cash-access journeys.

* Issuers
* Retail Banks
* Digital Banks
* Fintechs
* Digital Wallet Providers
* Consumer Banking Applications

## How it works {#how-it-works}

Diagram sequence-country

**RESTful Response:**

```json
{
  "countries": [
    {
      "countryName": "CANADA",
      "countryCode": "CAN"
    },
    {
      "countryName": "UNITED KINGDOM",
      "countryCode": "GBR"
    },
    {
      "countryName": "UNITED STATES",
      "countryCode": "USA"
    }
  ]
}
```

## Relevant Endpoints {#relevant-endpoints}

[Countries](https://developer.mastercard.com/locations/documentation/api-reference/index.md#tag/ATMs/operation/getCountries)
This API allows customers to obtain a list of countries and country codes.

API Reference: `GET /countries`

## Useful Links {#useful-links}

* [View the full Open API Specification](https://developer.mastercard.com/locations/documentation/api-reference/index.md)
* [Review the APIs error responses](https://developer.mastercard.com/locations/documentation/code-and-formats/index.md)
