# Retrieve a taxonomy term

`GET https://api.cademi.com.br/api/v3/products/{product_id}/taxonomies/{taxonomy_id}/terms/{taxonomy_term_id}`

Operation ID: `taxonomies.terms.get` · API v3

Retrieves a taxonomy term by its public ID.

The response includes an `ETag` representing the current revision. Send this value in the `If-Match` header when updating or deleting the term to avoid overwriting a newer version.

Required permissions: `taxonomies.read`.

## Parameters

| Name | In | Type | Required | Description |
|---|---|---|---|---|
| `product_id` | path | string | yes |  |
| `taxonomy_id` | path | string | yes |  |
| `taxonomy_term_id` | path | string | yes |  |

## Responses

### 200

Returns the requested term.

Body: `data`: TaxonomyTerm.

Fields of TaxonomyTerm:

| Field | Type | Required | Description |
|---|---|---|---|
| `created_at` | string (date-time) | yes |  |
| `id` | string | yes | Public ID, with the ttm_ prefix. |
| `image` | string or null | yes |  |
| `lessons_count` | integer | yes |  |
| `name` | string | yes |  |
| `object` | string, one of `taxonomy_term` | yes |  |
| `revision` | string | yes |  |
| `taxonomy_id` | string | yes | Public ID, with the tax_ prefix. |
| `updated_at` | string (date-time) | yes |  |

### 401

The credential is missing, malformed, expired, or revoked.

Body: Error.

### 403

The current credentials do not have the permission required by this operation.

Body: Error.

### 404

The term was not found in this taxonomy or is not accessible with the current credentials.

Body: Error.

Full schema: https://cademi.dev/openapi/v3.json
