> For the complete documentation index, see [llms.txt](https://developer.1moneynetwork.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.1moneynetwork.com/integrations/data-dictionary/transaction-types/tokenburn.md).

# TokenBurn

Burns tokens from an account. The transaction signer must be the token's burn\_authority.Fields:

| Field   | Type   | Description                 |
| ------- | ------ | --------------------------- |
| value   | String | Amount of tokens to burn    |
| address | String | Account to burn tokens from |
| token   | String | Token address               |

Sample Response:

```json
{
  "transaction_type": "TokenBurn",
  "data": {
    "value": "1000000000000000000",
    "address": "0x9E1E9688A44D058fF181Ed64ddFAFbBE5CC74ff3",
    "token": "0x1234567890123456789012345678901234567890"
  }
}
```
