# Retrieve a tax ID

Retrieves an account or customer `tax_id` object.

## Prerequisites

Before you can run the following code snippet, you need to call these APIs with the provided parameters to set up the prerequisite API object(s).

1. createTaxId
POST /v1/tax_ids {"type":"eu_vat","value":"DE123456789"}

## Request

```curl
curl https://api.stripe.com/v1/tax_ids/{{TAX_ID}} \
  -u "<<YOUR_SECRET_KEY>>"
```

### Response

```json
{
  "id": "txi_1NuMB12eZvKYlo2CMecoWkZd",
  "object": "tax_id",
  "country": "DE",
  "created": 123456789,
  "customer": null,
  "livemode": false,
  "type": "eu_vat",
  "value": "DE123456789",
  "verification": null,
  "owner": {
    "type": "self",
    "customer": null
  }
}
```

## Returns

Returns a `tax_id` object if a valid identifier was provided.
