> For the complete documentation index, see [llms.txt](https://docs.magna.so/magna-api-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.magna.so/magna-api-documentation/tokens/token-summary.md).

# 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
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
{
  "isProcessed": true,
  "result": {
    "totalSupply": "18446694073.709552",
    "totalReceived": "4.453278",
    "totalAllocationAmount": "20",
    "totalAllocationCount": 2,
    "funded": "9.999996"
  }
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://docs.magna.so/magna-api-documentation/tokens/token-summary.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.
