Skip to main content
GET
/
api
/
tax
/
country-rates
List country tax rates
curl --request GET \
  --url https://api.ai2fin.com/api/tax/country-rates \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "rates": [
      {
        "countryCode": "<string>",
        "taxType": "<string>",
        "taxName": "<string>",
        "standardRate": 123,
        "reducedRate": 123,
        "zeroRate": 123,
        "combinedRate": 123,
        "stateProvince": "<string>",
        "description": "<string>"
      }
    ],
    "ratesByCountry": {}
  }
}

Authorizations

Authorization
string
header
required

JWT token obtained from /api/auth/login endpoint

Response

200 - application/json

Tax rates retrieved

success
boolean
data
object