Skip to main content
GET
/
public
/
common
/
countries
List Countries
curl --request GET \
  --url https://apigw.ipxo.com/ecommerce/public/common/countries \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "name": "United States Minor Outlying Islands",
      "code": "CH"
    },
    {
      "name": "Guernsey",
      "code": "LT"
    }
  ],
  "meta": {
    "current_page": 1,
    "total": 2,
    "per_page": 10
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json
data
object[]
Example:
[
{
"name": "United States Minor Outlying Islands",
"code": "CH"
},
{ "name": "Guernsey", "code": "LT" }
]
meta
object