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

# Token Summary

Users can retrieve a comprehensive summary of token-related metrics from the Magna platform, including total supply, total received tokens, total allocation amount, total allocation count, and funded amount. This summary provides valuable insights into the token ecosystem and facilitates informed decision-making regarding token management and distribution.

Example request:

```sh theme={null}
curl -X GET https://app.magna.so/api/external/v1/tokens/{your_token_id}/summary \
-H 'Content-Type: application/json' \
-H 'x-magna-api-token: magna_project_api_token'
```

* `magna_project_api_token` (required) - replace with your actual Magna API token
* `your_token_id` (required) - with your token id

Response example:

```json theme={null}
{
  "isProcessed": true,
  "result": {
    "totalSupply": "18446694073.709552",
    "totalReceived": "4.453278",
    "totalAllocationAmount": "20",
    "totalAllocationCount": 2,
    "funded": "9.999996"
  }
}
```
