Skip to main content

Get VAT Exemption

base_url: https://firseinvoicedemo.etranzactng.com

Description: This endpoint returns a list of VAT exemptions and their corresponding values.

Query ParameterTypeDescription
heading_nostringThe heading number for VAT exemptions (e.g. 123)
harmonized_system_codestringThe Harmonized System code for the exemption (e.g. 123.1)
tarrif_categorystringThe tariff category for the exemption (e.g. Basic Food items)
tarrifstringDescription of the tariff for the exemption
descriptionstringDetailed description of the exempted item

Sample Request

GET {base_url}/api/v1/resource/vat-exemptions
curl `{base_url}/api/v1/resource/vat-exemptions`
-H "X-API-Key: {{CLIENT_API_KEY}}"
-H "X-API-Signature: {{HMAC_SHA256_SIGNATURE}}"
-H "X-API-Timestamp: {{ISO_20022_TIMESTAMP}}"
'

Sample Response

POST {base_url}/api/v1/resource/vat-exemptions
{
"status": 200,
"message": "VAT exemption list fetched successfully",
"data": [
{
"heading_no": "29.15",
"harmonized_system_code": "2915.31",
"tariff_category": "MEDICAL, VENTIRINARY AND PHARMACEUTICAL RAW MATERIALS AND PRODUCTS",
"tariff": "Ethyl acetate",
"description": "Saturated acyclic monocarboxylic acids and their derivatives."
},
{
"heading_no":"03.02",
"harmonized_system_code": "0302.3100",
"tariff_category": "BASIC FOOD ITEMS",
"tariff": "Albacore or long-finned tunas",
"description": "Tunas, skip jacks or stripe-bellied bonito (excluding liver and roes)."
}
],
"execTime": 1.27868,
"error": ""
}