The Importable API provides developers with access to tariff information, item search, and detailed item descriptions. The API supports Bearer Token authentication, where each request consumes one token. Tokens do not expire and are required for all requests.
Before you can make requests to the API, you'll need to generate a Bearer token from your user account.
All API requests must include the Bearer token for authentication. This is done by setting an Authorization header in your HTTP requests.
Authorization: Bearer YOUR_ACCESS_TOKEN
Where YOUR_ACCESS_TOKEN
is the token you generated from your account page.
When sending requests expect JSON data. Include the following header:
Content-Type: application/json
The base URL for the API is:
https://importable.app
This is the root URL for all API endpoints, and you will append the specific endpoint paths to this base URL.
If authentication fails (e.g., due to an invalid or missing token), the API will return the following response:
{ "message": "Unauthenticated." }
Retrieve detailed information about a specific tariff code.
GET /api/v1/tariffs/{tariff_code}
9999.9999
).GET /api/v1/tariffs/2815.1100
{ "links": { "self": "https://importable.app/api/v1/tariffs/2815.1100" }, "data": { "type": "tariffs", "id": "2815.1100", "attributes": { "code": "2815.1100", "general_rate": 0.45, "excise_rate": null, "specific_rate": null, "specific_rate_type": null, "environmental_levy": null, "environmental_levy_type": null } } }
include=descriptions
The include=descriptions
query parameter will return hierarchical descriptions for the tariff code.
include=descriptions
:GET /api/v1/tariffs/2815.1100?include=descriptions
{ "links": { "self": "https://importable.app/api/v1/tariffs/2815.1100?include=descriptions" }, "data": { "type": "tariffs", "id": "2815.1100", "attributes": { "code": "2815.1100", "general_rate": 0.45, "excise_rate": null, "specific_rate": null, "specific_rate_type": null, "environmental_levy": null, "environmental_levy_type": null }, "descriptions": { "code": "2815.1100", "article_description": "Solid", "subheading": { "has_subheading": false, "code": "", "article_description": "" }, "subheadingx": { "has_subheadingx": true, "code": "2815.1", "article_description": "Sodium hydroxide (caustic soda)" }, "heading": { "has_heading": true, "code": "2815", "article_description": "Sodium hydroxide (caustic soda); potassium hydroxide (caustic potash); peroxides of sodium or potassium." } } } }
2815.1100
).0.45
means 45%). It will be 0
for duty-free and null
if not applicable.null
if not applicable.null
if not applicable.null
if not applicable.PERCENTAGE
or FIXED
, indicating the type of levy.Search for items based on a query string.
GET /api/v1/search
GET /api/v1/search?q=tv
{ "links": { "self": "https://importable.app/api/v1/search?q=tv" }, "data": [ { "type": "items", "id": "1f209fe0-a946-11ef-ba9e-0cf6ac7c678f", "attributes": { "description": "TV Box", "attributes": null } }, { "type": "items", "id": "1f2787d8-a946-11ef-ba9e-0cf6ac7c678f", "attributes": { "description": "TV Mount", "attributes": null } } ] }
Retrieve detailed information for a specific item.
GET /api/v1/items/{item_id}
GET /api/v1/items/1f209fe0-a946-11ef-ba9e-0cf6ac7c678f
{ "links": { "self": "https://importable.app/api/v1/items/1f209fe0-a946-11ef-ba9e-0cf6ac7c678f" }, "data": { "type": "items", "id": "1f209fe0-a946-11ef-ba9e-0cf6ac7c678f", "attributes": { "description": "TV Box", "attributes": null, "tariff": { "code": "8528.7110", "general_rate": 0, "excise_rate": null, "specific_rate": null, "specific_rate_type": null, "environmental_levy": 5, "environmental_levy_type": "FIXED" } } } }
If authentication fails (e.g., invalid or missing token), the API will return:
{ "message": "Unauthenticated." }
Occurs when the q
parameter is missing in the Search Items request.
{ "message": "Query parameter q is required to search." }
Occurs when the user has exhausted their available tokens or their API access is disabled.
{ "message": "No tokens available." }
{ "message": "No active API access." }
Occurs when the specified tariff id or item id cannot be found in the database.
{ "message": "The tariff code provided was not found." }
{ "message": "No item for the id provided." }