> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hedera.com/llms.txt
> Use this file to discover all available pages before exploring further.

# TokenService

Transactions and queries for the Token Service.

<Info>
  To transfer tokens created by HTS, please reference the [`cryptoTransfer`](/reference/protobuf/crypto/cryptotransfer) API.
</Info>

## TokenService

| Method Name                 | Request Type                                                                                                                                   | Response Type                                                                | Description                                                                                            |
| --------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ |
| `createToken`               | [Transaction](/reference/protobuf/miscellaneous/transaction)                                                                                   | [TransactionResponse](/reference/protobuf/miscellaneous/transactionresponse) | Creates a new Token by submitting the transaction                                                      |
| `updateToken`               | [Transaction](/reference/protobuf/miscellaneous/transaction)                                                                                   | [TransactionResponse](/reference/protobuf/miscellaneous/transactionresponse) | Updates the account by submitting the transaction                                                      |
| `mintToken`                 | [Transaction](/reference/protobuf/miscellaneous/transaction)                                                                                   | [TransactionResponse](/reference/protobuf/miscellaneous/transactionresponse) | Mints an amount of the token to the defined treasury account                                           |
| `burnToken`                 | [Transaction](/reference/protobuf/miscellaneous/transaction)                                                                                   | [TransactionResponse](/reference/protobuf/miscellaneous/transactionresponse) | Burns an amount of the token from the defined treasury account                                         |
| `deleteToken`               | [Transaction](/reference/protobuf/miscellaneous/transaction)                                                                                   | [TransactionResponse](/reference/protobuf/miscellaneous/transactionresponse) | (NOT CURRENTLY SUPPORTED) Deletes a Token                                                              |
| `wipeTokenAccount`          | [Transaction](/reference/protobuf/miscellaneous/transaction)                                                                                   | [TransactionResponse](/reference/protobuf/miscellaneous/transactionresponse) | Wipes the provided amount of tokens from the specified Account ID                                      |
| `freezeTokenAccount`        | [Transaction](https://github.com/theekrystallee/hedera-style-guide/blob/sdk-v1/deprecated/hedera-api/token-service/broken-reference/README.md) | [TransactionResponse](/reference/protobuf/miscellaneous/transactionresponse) | Freezes the transfer of tokens to or from the specified Account ID                                     |
| `unfreezeTokenAccount`      | [Transaction](/reference/protobuf/miscellaneous/transaction)                                                                                   | [TransactionResponse](/reference/protobuf/miscellaneous/transactionresponse) | Unfreezes the transfer of tokens to or from the specified Account ID                                   |
| `grantKycToTokenAccount`    | [Transaction](/reference/protobuf/miscellaneous/transaction)                                                                                   | [TransactionResponse](/reference/protobuf/miscellaneous/transactionresponse) | Flags the provided Account ID as having gone through KYC                                               |
| `revokeKycFromTokenAccount` | [Transaction](/reference/protobuf/miscellaneous/transaction)                                                                                   | [TransactionResponse](/reference/protobuf/miscellaneous/transactionresponse) | Removes the KYC flag of the provided Account ID                                                        |
| `associateTokens`           | [Transaction](/reference/protobuf/miscellaneous/transaction)                                                                                   | [TransactionResponse](/reference/protobuf/miscellaneous/transactionresponse) | Associates tokens to an account                                                                        |
| `dissociateTokens`          | [Transaction](/reference/protobuf/miscellaneous/transaction)                                                                                   | [TransactionResponse](/reference/protobuf/miscellaneous/transactionresponse) | Dissociates tokens from an account                                                                     |
| `updateTokenFeeSchedule`    | [Transaction](/reference/protobuf/miscellaneous/transaction)                                                                                   | [TransactionResponse](/reference/protobuf/miscellaneous/transactionresponse) | Updates the custom fee schedule on a token                                                             |
| `getTokenInfo`              | [Query](/reference/protobuf/miscellaneous/query)                                                                                               | [Response](/reference/protobuf/miscellaneous/response)                       | Retrieves the metadata of a token                                                                      |
| `getAccountNftInfo`         | [Query](/reference/protobuf/miscellaneous/query)                                                                                               | [Response](/reference/protobuf/miscellaneous/response)                       | Gets info on NFTs N through M on the list of NFTs associated with a given account                      |
| `getTokenNftInfo`           | [Query](/reference/protobuf/miscellaneous/query)                                                                                               | [Response](/reference/protobuf/miscellaneous/response)                       | Retrieves the metadata of an NFT by TokenID and serial number                                          |
| `getTokenNftInfo`           | [Query](/reference/protobuf/miscellaneous/query)                                                                                               | [Response](/reference/protobuf/miscellaneous/response)                       | Gets info on NFTs N through M on the list of NFTs associated with a given Token of type `NON_FUNGIBLE` |
| `pauseToken`                | [Transaction](/reference/protobuf/miscellaneous/transaction)                                                                                   | [TransactionResponse](/reference/protobuf/miscellaneous/transactionresponse) | Pause the token                                                                                        |
| `unpauseToken`              | [Transaction](/reference/protobuf/miscellaneous/transaction)                                                                                   | [TransactionResponse](/reference/protobuf/miscellaneous/transactionresponse) | Unpause the token                                                                                      |
