---
title: "Find tax rates based on search parameters."
method: POST
path: "/api/tax-rates/list"
tags: ["Tax Rate"]
---

# Find tax rates based on search parameters.

`POST /api/tax-rates/list`

## Query parameters

- `Sort.Field` string
- `Sort.Dir` 'ascending' | 'descending' — Specify sorting direction.
- `Skip` integer
- `Take` integer

## Request body

- TaxRateRequestFindParameters — Parameters used for searching/finding tax rates.
  - `code` string, nullable — Filter tax rates based on their code.
  - `ids` string[], nullable — Filter tax rates based on matching ids.

## Response `200`

List of tax rates matching the filters

- TaxRateDto[]
  - `id` string, required — Unique id associated to this entity.
  - `code` string, required — Identifying code. Must be unique.
  - `provider` 'avalaraOrder' | 'avalaraInvoice'
  - `rate` number, double, required — Tax Rate (%)
  - `applyToLandedCosts` boolean — Indicate if this tax rate applies to landed costs.
  - `deleted` boolean — Indicate if this record is deleted.

---

[API](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi.md) · [All operations](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fulcrumpro/fulcrum-publicapi/versions/1b5649cff14a/schema)
