GET
/
v1
/
exposure
/
countries
curl --request GET \
  --url https://api.antei.com/v1/exposure/countries \
  --header 'Authorization: Bearer <token>'
{
  "exposure": [
    {
      "country_code": "<string>",
      "country_name": "<string>",
      "exposure_amount": 123,
      "jurisdictions": [
        {
          "jurisdiction_code": "<string>",
          "jurisdiction_name": "<string>",
          "exposure_amount": 123,
          "counties": [
            {
              "county_name": "<string>",
              "exposure_amount": 123
            }
          ]
        }
      ]
    }
  ]
}

Use this endpoint to fetch a real-time summary of your tax exposure across all supported countries. The response includes a nested structure showing totals at the country level, with optional breakdowns for states and counties where applicable.


Response Fields

Each item in the response may include:

  • country – ISO 3166-1 alpha-2 country code (e.g., US, IN, FR)
  • country_name – Full name of the country
  • exposure_amount – Total exposure in minor units (e.g., cents, paise)
  • currency – ISO 4217 currency code (e.g., USD, EUR, INR)
  • jurisdictions[] (optional) – State or region-level breakdowns:
    • state – State or region code
    • state_name – Full name of the state or region
    • exposure_amount – Exposure amount at the state level
    • counties[] (optional) – County-level exposure within the state:
      • county – Name of the county
      • exposure_amount – County-level exposure

Notes

  • All monetary fields (exposure_amount) are returned as integers, multiplied by 100 (e.g., 190000 = 1,900.00).
  • Jurisdiction and county fields only appear if exposure exists at those levels.
  • Ideal for generating compliance dashboards, audit reports, or jurisdiction-specific financial summaries.

Authorizations

Authorization
string
header
required

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

Response

200
application/json

Exposure summary across supported countries and jurisdictions

The response is of type object.