> For the complete documentation index, see [llms.txt](https://docs.getblock.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.getblock.io/solana-market-data/overview.md).

# Overview

Solana Market Data gives you **low-latency, ready-to-use market data from Solana** without the need to build and maintain your own indexing and data-processing infrastructure.

Instead of working with raw blockchain transactions, decoding different DEX programs, and building aggregation pipelines yourself, you can consume already processed market data through a simple API.

{% hint style="info" %}
**Solana Market Data** is designed for applications that need **live and recent trading data** — from trading dashboards and analytics platforms to automated and agentic trading systems.
{% endhint %}

### What you can get

**Solana Market Data** provides trading information aggregated across supported Solana venues.

Depending on how much processing you want to handle yourself, you can work with:

| Topic    | Description                                     | Required parameters |
| -------- | ----------------------------------------------- | ------------------- |
| `trades` | Normalized individual trades                    | None                |
| `block`  | Trading activity aggregated for one Solana slot | None                |
| `ohlcv`  | Open, high, low, close, and volume candles      | `window`            |
| `twap`   | Time-weighted average price                     | `window`            |
| `vwap`   | Volume-weighted average price                   | `window`            |
| `volume` | Trading volume and swap activity                | `window`            |
| `token`  | Token metadata                                  | None                |

You can choose between lower-level trade data and higher-level market metrics that are already calculated for you.

### Why use Solana Market Data?

Building the same pipeline yourself requires you to collect Solana transactions, support multiple trading venues, decode swaps, normalize the data, and continuously calculate market metrics.

Solana Market Data handles this processing for you.

This allows you to focus on building your:

* trading application;
* analytics platform;
* market dashboard;
* trading strategy;
* AI or automated trading agent.

### How to use it

Getting started is straightforward:

1. **Activate Solana Market Data** and get access with your API key.
2. **Choose the data you need** — for example Trades, VWAP, Volume, or Candles.
3. **Query or stream the data** using HTTP, WebSocket, or Yellowstone-compatible gRPC.

{% hint style="info" %}
You can also use the **Playground** to explore available methods and see the data before integrating it into your application.
{% endhint %}

### Which Topic Should I Use?

| If you need                                           | Use      |
| ----------------------------------------------------- | -------- |
| Individual trades and maximum calculation flexibility | `trades` |
| Market activity for each Solana slot                  | `block`  |
| Candles or price charts                               | `ohlcv`  |
| A price weighted by elapsed time                      | `twap`   |
| A price weighted by traded volume                     | `vwap`   |
| Buy, sell, and total market activity                  | `volume` |
| Token metadata                                        | `token`  |

### Next steps

Explore the available **Market Data methods**, learn how to **connect to the API**, or try the service directly in the **Playground**.
