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

# Parsed Events Reference

> API reference for Parsed Events REST requests and GraphQL queries.

<Note>
  Parsed Events is in **open beta**. It is available on paid plans — authenticate with your project's API key. The API may still change before general availability.
</Note>

Parsed Events has two methods. Both methods are available through REST and GraphQL.

GraphQL queries go to `POST /v1/parsed-events/graphql`.

| Method                     | REST                                         | GraphQL                 |
| -------------------------- | -------------------------------------------- | ----------------------- |
| Parse Transactions         | `POST /v1/parsed-events/transactions`        | `transactions`          |
| Parsed Transaction History | `POST /v1/parsed-events/transaction-history` | `transactionsByAddress` |

<CardGroup cols={2}>
  <Card title="Parse Transactions" href="/docs/api-reference/parsed-events/transactions">
    Parse one or more transaction signatures through REST or GraphQL.
  </Card>

  <Card title="Parsed Transaction History" href="/docs/api-reference/parsed-events/transaction-history">
    Fetch parsed address history with optional filters through REST or GraphQL.
  </Card>

  <Card title="GraphQL Interface" href="/docs/api-reference/parsed-events/graphql">
    Query both Parsed Events methods through GraphQL.
  </Card>

  <Card title="Parsed Streams" href="/docs/parsed-streams">
    Stream the same decoded transactions in real time over WebSocket.
  </Card>
</CardGroup>
