FCHubFCHub.co

Get country tax rates

Retrieve all tax rates configured for a specific country.

GET
/tax/rates/country/rates/{country_code}

Authorization

applicationPassword
AuthorizationBasic <token>

WordPress Application Password authentication. Generate one at wp-admin > Users > Application Passwords. Use as Basic Auth with username:application_password (base64-encoded).

In: header

Path Parameters

country_code*string

ISO country code (e.g. "PL", "DE", "US")

Response Body

application/json

curl -X GET "https://your-site.com/wp-json/fluent-cart/v2/tax/rates/country/rates/string"
{
  "tax_rates": [
    {
      "id": 0,
      "country_code": "string",
      "state_code": "string",
      "tax_class_slug": "string",
      "rate": 0.1,
      "tax_name": "string",
      "priority": 0,
      "compound": true,
      "is_shipping_taxable": true,
      "created_at": "2019-08-24T14:15:22Z",
      "updated_at": "2019-08-24T14:15:22Z"
    }
  ]
}