> For the complete documentation index, see [llms.txt](https://whitepaper.aitech.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://whitepaper.aitech.io/agentforge/tools/messari.md).

# messari

[Messari](https://messari.io/) provides crypto market intelligence, including asset profiles, market metrics, trading venue information, and news.

In Agent Forge, the Messari integration allows agents and workflows to enrich crypto research with structured asset data. Use it for token research, market summaries, investment monitoring, narrative tracking, and automated crypto reporting.

### Usage Instructions

Select a Messari operation and provide an asset key such as a symbol or slug. Advanced fields allow pagination and result limits for markets and news. A Messari API key can be provided when your usage requires authenticated access.

### Tools

#### `messari_get_asset_profile`

Retrieve profile and descriptive metadata for an asset.

#### `messari_get_asset_metrics`

Retrieve market metrics for an asset.

#### `messari_get_asset_markets`

Retrieve markets and venues associated with an asset.

#### `messari_get_asset_news`

Retrieve recent news for an asset.

### Input

| Parameter  | Type   | Required | Description                                      |
| ---------- | ------ | -------- | ------------------------------------------------ |
| `assetKey` | string | Yes      | Asset symbol or slug, such as `bitcoin` or `btc` |
| `apiKey`   | string | No       | Optional Messari API key                         |
| `page`     | number | No       | Page number for market results                   |
| `limit`    | number | No       | Result limit for markets or news                 |

### Output

| Parameter | Type | Description            |
| --------- | ---- | ---------------------- |
| `data`    | json | Messari response data  |
| `status`  | json | Messari status payload |

### Notes

* Category: `tools`
* Type: `messari`
