GET
/
stores
/
{store_id}
/
tax-rate
Get Store Tax Rate
curl --request GET \
  --url https://api-staging.luladelivery.store/stores/{store_id}/tax-rate
{
  "tax_rate": 123,
  "tax_jurisdiction": "<string>",
  "tax_type": "<string>",
  "effective_date": "<string>",
  "currency": "<string>",
  "tax_inclusive": true
}
This endpoint provides the current tax rate information configured for a store. Tax rates are used to calculate taxes on orders and ensure compliance with local tax regulations based on the store’s location.

Path Parameters

store_id
string
required
The unique identifier of the store to retrieve tax rate information for

Response

tax_rate
number
The tax rate as a decimal (e.g., 0.0875 for 8.75%)
tax_jurisdiction
string
The tax jurisdiction or authority that applies to this store
tax_type
string
Type of tax applied (e.g., “sales_tax”, “vat”, “gst”)
effective_date
string
When this tax rate became effective (ISO 8601 format)
currency
string
Currency code for tax calculations (e.g., “USD”, “CAD”)
tax_inclusive
boolean
Whether prices include tax (true) or tax is added separately (false)

Response Example

{
    "tax_rate": 0.0875,
    "tax_jurisdiction": "California State Tax",
    "tax_type": "sales_tax",
    "effective_date": "2024-01-01T00:00:00Z",
    "currency": "USD",
    "tax_inclusive": false
}

Tax Rate Usage

Tax Rate Management

Common Use Cases

Error Scenarios

Rate Precision: Tax rates are provided with high precision to ensure accurate calculations. Always use the exact decimal values provided.
Rate Changes: Tax rates can change due to legislative updates. Applications should periodically refresh tax rate information to ensure compliance.
Integration: This endpoint is commonly used by POS systems, e-commerce platforms, and accounting software to ensure consistent tax calculations across all systems.