# Token APIs

Endpoints for listing Hedera tokens and managing user token associations, KYC status, and freeze status in Guardian.

**Authentication:** Bearer token required (`Authorization: Bearer <token>`)

***

| Method   | Endpoint                                         | Description                                                                        | Auth Required |
| -------- | ------------------------------------------------ | ---------------------------------------------------------------------------------- | ------------- |
| `GET`    | `/api/v1/tokens`                                 | Returns all tokens; includes balances and statuses for non-Standard-Registry users | Yes           |
| `POST`   | `/api/v1/tokens/{tokenId}/{username}/associate`  | Associates a user with the specified token                                         | Yes           |
| `DELETE` | `/api/v1/tokens/{tokenId}/{username}/dissociate` | Disassociates a user from the specified token                                      | Yes           |
| `PUT`    | `/api/v1/tokens/{tokenId}/{username}/freeze`     | Freezes the user's token balance                                                   | Yes           |
| `PUT`    | `/api/v1/tokens/{tokenId}/{username}/unfreeze`   | Unfreezes the user's token balance                                                 | Yes           |
| `PUT`    | `/api/v1/tokens/{tokenId}/{username}/grantKyc`   | Grants KYC status to the user for the token                                        | Yes           |
| `PUT`    | `/api/v1/tokens/{tokenId}/{username}/revokeKyc`  | Revokes KYC status from the user for the token                                     | Yes           |
| `GET`    | `/api/v1/tokens/{tokenId}/{username}/info`       | Returns token information and status for the specified user                        | Yes           |
| `GET`    | `/api/v1/tokens/{tokenId}/serials`               | Returns the serial numbers for the specified token                                 | Yes           |
| `POST`   | `/api/v1/tokens/{tokenId}/transfer`              | Transfers tokens to a target account                                               | Yes           |

## Endpoints

* [Token Listing](/docs/develop/guardian/tokens/token-operations/token-apis/token-listing.md)
* [Token Listing (v1)](/docs/develop/guardian/tokens/token-operations/token-apis/token-listing-1.md)
* [Associates the User with Token](/docs/develop/guardian/tokens/token-operations/token-apis/associates-the-user-with-token.md)
* [Disassociates the User with Token](/docs/develop/guardian/tokens/token-operations/token-apis/disassociates-the-user-with-token.md)
* [Freeze Tokens of a User](/docs/develop/guardian/tokens/token-operations/token-apis/freeze-tokens-of-a-user.md)
* [Unfreeze Tokens of a User](/docs/develop/guardian/tokens/token-operations/token-apis/unfreeze-tokens-of-a-user.md)
* [Grants KYC for the User](/docs/develop/guardian/tokens/token-operations/token-apis/grants-kyc-for-the-user.md)
* [Revoke KYC of the User](/docs/develop/guardian/tokens/token-operations/token-apis/revoke-kyc-of-the-user.md)
* [User Info for Selected Token](/docs/develop/guardian/tokens/token-operations/token-apis/user-info-for-selected-token.md)
* [Returns Token Serials](/docs/develop/guardian/tokens/token-operations/token-apis/returns-token-serials.md)
* [Token Transfer](/docs/develop/guardian/tokens/token-operations/token-apis/token-transfer.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/guardian/tokens/token-operations/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.
