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

# Venues 🌱

> Hyperliquid HIP-4 prediction-market venues.

The `hyperliquid.predictions.venues` table lists HIP-4 prediction-market venues. One row per venue (for example `txyz`, `out`, `skew`).

### Table Details

| Property     | Value                            |
| ------------ | -------------------------------- |
| Table Name   | `hyperliquid.predictions.venues` |
| Table Status | Beta 🌱                          |
| Unique Key   | `venue`                          |

### Table Columns

| Column Name     | Data Type         | Description                                           |
| --------------- | ----------------- | ----------------------------------------------------- |
| project         | VARCHAR(16777216) | Top-level project namespace (`hyperliquid`).          |
| protocol        | VARCHAR(16777216) | Protocol within the project (`hyperliquid_hip4`).     |
| chain           | VARCHAR(16777216) | The blockchain network (`hyperliquid`).               |
| venue           | VARCHAR(16777216) | Venue identifier (for example `txyz`, `out`, `skew`). |
| first\_seen\_at | TIMESTAMP\_NTZ(9) | Earliest timestamp this venue appears.                |
| last\_seen\_at  | TIMESTAMP\_NTZ(9) | Most recent timestamp this venue appears.             |
| outcome\_count  | NUMBER(38,0)      | Number of outcomes on this venue.                     |
| unique\_id      | VARCHAR(16777216) | Deterministic unique identifier per row.              |
| \_created\_at   | TIMESTAMP\_NTZ(9) | Row creation timestamp.                               |
| \_updated\_at   | TIMESTAMP\_NTZ(9) | Row last update timestamp.                            |

## Sample Query

```sql theme={null}
SELECT
  venue,
  first_seen_at,
  last_seen_at,
  outcome_count
FROM hyperliquid.predictions.venues
ORDER BY outcome_count DESC
```
