Taxes
Get tax rates
API documentation
Integrations
Analytics
Billable events
Companies
Custom properties
Customers
Customers > Credits
Customers > Payment methods
Integrations
Invoices
Invoices > Transactions
Invoicing entities
Organisations
Payments
Price configurations
Products
Quotes
Subscriptions
- GETGet subscriptions
- GETGet subscription
- GETGet subscription phases
- GETGet subscription phase
- POSTCreate subscription update
- POSTCreate subscription updates
- POSTCreate subscription
- PUTUpdate subscription
- POSTActivate subscription
- POSTCancel subscription
- POSTPause subscription
- POSTReactivate subscription
- POSTRefresh seat products
- POSTRefresh subscriptions
- POSTReinstate subscription
- POSTTransition subscription to next phase
Third-party apps
Wallets
Taxes
Get tax rates
Retrieve all existing custom tax rates.
GET
/
v1
/
taxes
/
rates
curl --request GET \
--url https://api.hyperline.co/v1/taxes/rates \
--header 'Authorization: Bearer <token>'
{
"meta": {
"total": 1,
"taken": 1,
"skipped": 0
},
"data": [
{
"id": "taxr_YfiSnLIYORD9VN",
"name": "VAT",
"description": "Standard VAT",
"code": "STAND_VAT",
"rate": 20,
"invoicing_entity_id": "ive_jerrb484RHn",
"created_at": "2024-06-03T12:32:22Z",
"updated_at": "2024-06-07T18:13:25Z"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Required range:
0 <= x <= 100
Required range:
x >= 0
Response
200 - application/json
List of TaxRate.
Tax rate ID.
Example:
"taxr_YfiSnLIYORD9VN"
Name of the tax rate.
Example:
"VAT"
Internal description of the tax rate.
Example:
"Standard VAT"
Tax rate code identifier.
Example:
"STAND_VAT"
The percentage rate of the tax.
Example:
20
ID of the invoicing entity to which the tax rate is attached.
Example:
"ive_jerrb484RHn"
Tax rate creation date. UTC date time string in the ISO 8601 format.
Example:
"2024-06-03T12:32:22Z"
Was this page helpful?
curl --request GET \
--url https://api.hyperline.co/v1/taxes/rates \
--header 'Authorization: Bearer <token>'
{
"meta": {
"total": 1,
"taken": 1,
"skipped": 0
},
"data": [
{
"id": "taxr_YfiSnLIYORD9VN",
"name": "VAT",
"description": "Standard VAT",
"code": "STAND_VAT",
"rate": 20,
"invoicing_entity_id": "ive_jerrb484RHn",
"created_at": "2024-06-03T12:32:22Z",
"updated_at": "2024-06-07T18:13:25Z"
}
]
}