Sales Tax API
Core Concepts
Corporations
Calculate
Transactions
- Tax Transactions
- POSTCreate a transaction
- GETGet transaction
- GETList transactions
- DELDelete transaction
- Refund Transactions
- Bulk Transaction Import
Nexus
Registrations
Products
Customers
Exemption Certificates
List products
curl --request GET \
--url https://base_url/api/v1/products \
--header 'Authorization: Bearer <token>'
{
"data": {
"products": [
{
"id": "2535af08-a139-4d0c-9827-1651e46dfbcf",
"name": "SunShield Pro UV-Blocking Sunglasses",
"tax_code": "TPP",
"sku": "PT-1035",
"description": "<string>",
"corporation_id": "b6d009b0-d174-463f-b030-94643c28e209",
"customs_jurisdiction_details": {
"US": "4905.90.20.00"
},
"weight_in_kg": 3.5,
"volume_in_liters": 3.5,
"created_at": 1727284490
}
],
"cursor": "<string>",
"total_products": 123
},
"message": "Successfully fetched products."
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
The unique identifier for a corporation to filter the products by.
Cursor for pagination
Number of items to return per page
1 <= x <= 100
Response
The unique identifier for a product.
"2535af08-a139-4d0c-9827-1651e46dfbcf"
The name of the product.
"SunShield Pro UV-Blocking Sunglasses"
Tax code to define how a product should be charged for sales tax. (More options coming soon).
TPP
The unique identifier for this product. It should be unique across the corporation.
"PT-1035"
A one line description about the product.
The unique identifier for the corporation associated.
"b6d009b0-d174-463f-b030-94643c28e209"
A mapping of ISO 3166 country codes to their respective Harmonized System (HS) codes for customs classification.
{ "US": "4905.90.20.00" }
The weight of the product in kilograms.
3.5
The volume of the product in liters.
3.5
Timestamp in unix epoch
1727284490
Total number of products.
"Successfully fetched products."
curl --request GET \
--url https://base_url/api/v1/products \
--header 'Authorization: Bearer <token>'
{
"data": {
"products": [
{
"id": "2535af08-a139-4d0c-9827-1651e46dfbcf",
"name": "SunShield Pro UV-Blocking Sunglasses",
"tax_code": "TPP",
"sku": "PT-1035",
"description": "<string>",
"corporation_id": "b6d009b0-d174-463f-b030-94643c28e209",
"customs_jurisdiction_details": {
"US": "4905.90.20.00"
},
"weight_in_kg": 3.5,
"volume_in_liters": 3.5,
"created_at": 1727284490
}
],
"cursor": "<string>",
"total_products": 123
},
"message": "Successfully fetched products."
}