Skip to main content
GET
/
countries
/
{country_code}
/
compliance
Get Country Compliance Info
curl --request GET \
  --url https://api.kallabot.com/countries/{country_code}/compliance \
  --header 'Authorization: Bearer <token>'
{
  "country_code": "US",
  "has_regulations": false,
  "regulations": [],
  "compliance_level": "low"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

country_code
string
required

ISO country code

Response

Country compliance information

country_code
string
required
has_regulations
boolean
required
compliance_level
enum<string>
required
Available options:
low,
medium,
high
regulations
object[]