# Geyser gRPC (ThorStreamer, Yellowstone)

### What it is

Streaming API that delivers parsed transactions and account updates via gRPC after slots are processed by a validator.

### Latency

\~100-200ms — Data is available after the validator processes the slot but before network-wide confirmation.

### Data format

Structured protobuf messages containing:

* Parsed transactions with instructions
* Account updates with before/after states
* Slot notifications
* Block metadata

### Pros

* Parsed, ready-to-use data
* Reliable TCP delivery (no packet loss)
* Filter by program, account, or transaction type
* Easier to integrate than shreds

### Cons

* Slower than ShredStream
* Requires gRPC client implementation
* Limited historical replay
* Still requires dedicated infrastructure

### Best for

* Trading bots
* Real-time indexers
* DeFi applications
* Account monitoring

### Example use case

A trading bot subscribes to a specific DEX program, receives parsed swap instructions, and updates internal price feeds in real-time.


---

# Agent Instructions: 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.thornode.io/infrastructure/thor-shredstream/choose-your-data-source/geyser-grpc-thorstreamer-yellowstone.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.
