Skip to main content
GET
/
public
/
v2
/
gst-tax-rates
/
{gst_tax_rate_id}
Get GST tax rate by ID
curl --request GET \
  --url https://api.dualentry.com/public/v2/gst-tax-rates/{gst_tax_rate_id}/ \
  --header 'X-API-KEY: <api-key>'
{
  "id": 123,
  "country_code": "<string>",
  "name": "<string>",
  "rate": "<string>",
  "valid_from": "2023-12-25",
  "valid_to": "2023-12-25",
  "is_active": true,
  "is_system": true,
  "description": "<string>",
  "components": [
    {
      "id": 123,
      "rate": "<string>",
      "region": "<string>",
      "position": 123
    }
  ],
  "region": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.dualentry.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-KEY
string
header
required

Path Parameters

gst_tax_rate_id
integer
required

Response

OK

Output schema for GST tax rate.

id
integer
required
country_code
string
required
name
string
required
rate
string
required
Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d{0,6}0*$
tax_treatment
enum<string>
required
Available options:
STANDARD,
ZERO_RATED,
EXEMPT,
IMPORT_GST,
REVERSE_CHARGE,
SELF_ASSESSED,
OUT_OF_SCOPE
valid_from
string<date>
required
valid_to
string<date> | null
required
is_active
boolean
required
is_system
boolean
required
description
string | null
required
components
PublicGstTaxRateComponentSchemaOut · object[]
required
supply_category
enum<string> | null

India GST: intra-state (CGST+SGST) vs inter-state (IGST).

Available options:
INTRA_STATE,
INTER_STATE
region
string | null
Last modified on May 28, 2026