GET
/
v1
/
exposure
/
check
curl --request GET \
  --url https://api.antei.com/v1/exposure/check \
  --header 'Authorization: Bearer <token>'
{
  "country": "US",
  "state": "CA",
  "county": "Los Angeles",
  "currency": "USD",
  "exposure_amount": 198000
}

Use this endpoint to fetch tax exposure for a specific country. You can optionally filter by state and county to get a more granular view. This is useful for risk analysis, jurisdictional reporting, or identifying compliance obligations in specific regions.


Required Query Parameters

  • country (string, required) — ISO 3166-1 alpha-2 country code (e.g., US, DE, IN)

Optional Query Parameters

  • state (string, optional) — Two-letter or full state name depending on country conventions (e.g., CA, Bayern)
  • county (string, optional) — Specific county or district within the state (e.g., Los Angeles, Cook)

Response Fields

  • country (string) — Country for which the exposure is returned
  • state (string, optional) — State-level filter applied
  • county (string, optional) — County-level filter applied
  • currency (string) — ISO currency code (e.g., USD, EUR)
  • exposure_amount (integer) — Exposure amount in minor units (e.g., 198000 = $1,980.00)

Notes

  • All exposure amounts are returned in minor units (e.g., cents or paise).
  • Use this endpoint to build dashboards, exposure summaries, or jurisdiction-level heatmaps.
  • Returns 0 if no exposure is recorded for that region.

Authorizations

Authorization
string
header
required

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

Query Parameters

country
string
required

ISO 3166-1 alpha-2 country code.

Example:

"US"

state
string

State or region code (optional).

Example:

"CA"

county
string

County name (optional).

Example:

"Los Angeles"

Response

200
application/json

Exposure for the given jurisdiction

The response is of type object.