GET
/
KYB
/
countries
curl --request GET \
  --url https://api-umbrella.io/api/services/KYB/countries \
  --header 'Authorization: Bearer <token>'
{
  "error": true,
  "message": "<string>",
  "version": "<string>",
  "data": {
    "countries": [
      {
        "countryName": "<string>",
        "states": [
          "<string>"
        ],
        "countryCode": "<string>"
      }
    ]
  }
}

For a usage description of the KYB Countries Service, please refer to the KYB page.

Endpoint

GET /KYB/countries

Authorizations

Authorization
string
header
required

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

Response

200
application/json
Successfully retrieved list of countries.
error
boolean

Indicates whether an error occurred. false means no errors.

message
string

A message describing the result of the request.

version
string | null

Reserved for future use.

data
object