# Tax information The tax information endpoint provides detailed tax-related data for a specified financial instrument, including applicable tax rates and relevant tax codes. This information is essential for users needing to understand the tax implications associated with trading or investing in specific instruments. **API credits cost:** `50` per symbol > **Note:** This API endpoint is available starting with the [Ultra](https://twelvedata.com/pricing) plan. ## Parameters - `symbol` (string, optional, see notes) The ticker symbol of an instrument for which data is requested, e.g., `SKYQ`, `AIRE`, `ALM:BME`, `HSI:HKEX`. - `figi` (string, optional, see notes) The FIGI of an instrument for which data is requested. This request parameter is available starting with the Ultra plan - `cusip` (string, optional, see notes) The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section - `isin` (string, optional, see notes) Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section - `exchange` (string, optional) The exchange name where the instrument is traded, e.g., `Nasdaq`, `Euronext` - `mic_code` (string, optional) The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., `XNAS`, `XLON` **Notes:** - At least one of the following parameters is required: `symbol`, `isin`, `figi`, `cusip`. ## Response - `meta` (object) Metadata about the requested instrument - `symbol` (string) The ticker symbol of an instrument for which data was requested - `name` (string) The instrument name - `exchange` (string) The exchange name where the instrument is traded - `mic_code` (string) The Market Identifier Code (MIC) of the exchange where the instrument is traded - `country` (string) The instrument country name - `data` (object) Tax information data containing the tax indicator for the requested instrument - `tax_indicator` (string) The instrument tax indicator, can be `null`, `us_1446f`, `spanish_ftt`, `uk_stamp_duty`, `hk_stamp_duty`, `french_ftt` or `italian_ftt` - `status` (string) The status of the request, e.g., `ok`, `error` ## Example Request ```bash curl "https://api.twelvedata.com/tax_info?symbol=SKYQ&apikey=demo" ``` ## Example Response ```json { "meta": { "symbol": "SKYQ", "name": "Sky Quarry Inc.", "exchange": "NASDAQ", "mic_code": "XNCM", "country": "United States" }, "data": { "tax_indicator": "us_1446f" }, "status": "ok" } ```