> For the complete documentation index, see [llms.txt](https://raiden-4.gitbook.io/raiden.wtf.docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://raiden-4.gitbook.io/raiden.wtf.docs/shred-streaming-raw-surge/getting-started.md).

# Getting Started

Set up your shred stream in minutes

## 1. Go to Dashboard

Navigate to [raiden.wtf/dashboard](https://raiden.wtf/dashboard) → **Raiden Surge**

## 2. Configure Your Stream

Select regions, enter your **public IP address** and **UDP port**.

## 3. Start Receiving

### Python

```python
import socket

sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
sock.bind(("0.0.0.0", YOUR_PORT))

while True:
    data, addr = sock.recvfrom(65535)
    print(f"Shred: {len(data)} bytes from {addr}")
```

## Pricing

| Plan           | Price         | Duration                  |
| -------------- | ------------- | ------------------------- |
| **Monthly**    | $499 / region | 30 days                   |
| **Weekly**     | $199 / region | 7 days                    |
| **Daily**      | $49 / region  | 1 day                     |
| **Free trial** | Free          | 3 hours daily, per region |

{% hint style="info" %}
Each region is billed independently. Payment via **USDC on Solana**.
{% endhint %}
