> ## Documentation Index
> Fetch the complete documentation index at: https://developer.zamp.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Tax Codes

> List all product tax codes supported by Zamp.

Tax codes are used to determine the tax rules applied to a given product or service.

## The Tax Code Object

| Property      | Type   | Description                                         |
| ------------- | ------ | --------------------------------------------------- |
| `code`        | string | The unique Zamp identifier (PTC - product tax code) |
| `name`        | string | Name of the tax code                                |
| `description` | string | Description of the tax code                         |

<ResponseExample>
  ```json Tax Code Object theme={null}
  {
    "code": "Z-FBV115",
    "name": "Flavored and non-carbonated beverage",
    "description": "Naturally or artificially flavored beverage that is not sweetened and is not carbonated."
  }
  ```
</ResponseExample>

## List Tax Codes

Returns all product tax codes supported by Zamp in a single response.

<Note>
  This endpoint returns all tax codes at once and does not require pagination.
</Note>

### Request

```text theme={null}
GET /tax-codes
```

```bash GET /tax-codes theme={null}
curl -G https://api.zamp.com/tax-codes \
  -H "Authorization: Bearer {token}"
```

### Response

```json 200 theme={null}
[
  {
    "code": "R_DIG",
    "name": "Digital",
    "description": "General digital products delivered electronically."
  }
]
```

For a complete reference of all tax codes by category, see the [Zamp Tax Codes](/guides/zamp-tax-codes) guide.
