FCHubFCHub.co

List tax rates

Retrieve all configured tax rates across all countries.

GET
/tax/rates

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

Response Body

application/json

curl -X GET "https://your-site.com/wp-json/fluent-cart/v2/tax/rates"
{
  "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"
    }
  ]
}