Skip to main content
GET
/
tax-rates
/
2026-03
/
tax-rates
/
{taxRateGroupId}
Get a specific tax rate
curl --request GET \
  --url https://api.hubapi.com/tax-rates/2026-03/tax-rates/{taxRateGroupId} \
  --header 'Authorization: Bearer <token>'
{
  "active": true,
  "createdAt": "2023-11-07T05:31:56Z",
  "id": "<string>",
  "label": "<string>",
  "name": "<string>",
  "percentageRate": 123,
  "updatedAt": "2023-11-07T05:31:56Z"
}

Supported products

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

taxRateGroupId
string
required

Response

successful operation

active
boolean
required

Indicates whether the tax rate group is currently active.

createdAt
string<date-time>
required

The date and time when the tax rate was created.

id
string
required

The unique identifier for the tax rate.

label
string
required

The display label for the tax rate.

name
string
required

The name of the tax rate.

percentageRate
number
required

The percentage rate applied.

updatedAt
string<date-time>
required

The date and time when the tax rate was last updated.

Last modified on March 30, 2026