# Misc: Get tax type info

Source: https://developer.avalara.com/products/communications/integration-guides/communications-integration/kdj9517482384087/

Guide: Communications

# Misc: Get tax type info

This example demonstrates how to retrieve tax type information for a specific tax type. In this example, the tax type submitted in the request URL is`10`. The response includes:

-   Tax type

-   Category type

-   Tax description

-   Category description

## Request

**View example**:

```
curl --location --request GET 'https://communicationsua.avalara.net/api/v2/afc/taxtype/10' \
--header 'client_id: 787' \
--header 'client_profile_id;' \
--header 'Authorization: Basic {Base64-encoded credentials}' \
--data-raw ''
```

## Response

**View example**:

```
[
    {
"TaxType": 10,
"CategoryType": 7,
"TaxDescription": "E-911",
"CategoryDescription": "E-911 CHARGES"
    }
]
```