GET
/
lists
/
countries
Get countries
curl --request GET \
  --url https://api.bridge.xyz/v0/lists/countries \
  --header 'Api-Key: <api-key>'
{
  "count": 123,
  "data": [
    {
      "name": "<string>",
      "alpha3": "<string>",
      "postal_code_format": "<string>",
      "subdivisions": [
        {
          "name": "<string>",
          "code": "<string>"
        }
      ]
    }
  ]
}

Authorizations

Api-Key
string
header
required

Response

200 - application/json

List of supported countries

The response is of type object.