# Token APIs

The Token APIs provide endpoints for managing Hedera tokens, including creation, association, KYC management, and freeze controls.

**Base URL:** `/api/v1/tokens`

***

## Endpoints

| Method     | Endpoint                                  | Description                            | Auth Required |
| ---------- | ----------------------------------------- | -------------------------------------- | ------------- |
| **`GET`**  | `/tokens/`                                | Returns list of all tokens             | Yes           |
| **`GET`**  | `/tokens/{tokenId}`                       | Returns a single token by ID           | Yes           |
| **`POST`** | `/tokens/`                                | Creates a new token                    | Yes           |
| **`PUT`**  | `/tokens/`                                | Updates an existing token              | Yes           |
| **`PUT`**  | `/tokens/{tokenId}/associate`             | Associates the user with the token     | Yes           |
| **`PUT`**  | `/tokens/{tokenId}/dissociate`            | Disassociates the user from the token  | Yes           |
| **`PUT`**  | `/tokens/{tokenId}/{username}/grant-kyc`  | Sets the KYC flag for the user         | Yes           |
| **`PUT`**  | `/tokens/{tokenId}/{username}/revoke-kyc` | Unsets the KYC flag for the user       | Yes           |
| **`PUT`**  | `/tokens/{tokenId}/{username}/freeze`     | Freezes token transfers for the user   | Yes           |
| **`PUT`**  | `/tokens/{tokenId}/{username}/unfreeze`   | Unfreezes token transfers for the user | Yes           |
| **`GET`**  | `/tokens/{tokenId}/{username}/info`       | Returns token status info for the user | Yes           |

***

## Endpoint Details

* [Token Listing](/docs/develop/tokens/token-apis/token-listing.md)
* [Return Token by ID](/docs/develop/tokens/token-apis/returns-token-by-id.md)
* [Creation of a Token](/docs/develop/tokens/token-apis/token-listing-1.md)
* [Updating a Token](/docs/develop/tokens/token-apis/updating-a-token.md)
* [Associates the User with Token](/docs/develop/tokens/token-apis/associates-the-user-with-token.md)
* [Disassociates the User from Token](/docs/develop/tokens/token-apis/disassociates-the-user-with-token.md)
* [Grants KYC for the User](/docs/develop/tokens/token-apis/grants-kyc-for-the-user.md)
* [Revoke KYC of the User](/docs/develop/tokens/token-apis/revoke-kyc-of-the-user.md)
* [Freeze Tokens of a User](/docs/develop/tokens/token-apis/freeze-tokens-of-a-user.md)
* [Unfreeze Tokens of a User](/docs/develop/tokens/token-apis/unfreeze-tokens-of-a-user.md)
* [User Info for Selected Token](/docs/develop/tokens/token-apis/user-info-for-selected-token.md)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://guardian.hedera.com/docs/develop/tokens/token-apis.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
