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
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
Last updated