# Quickstart

### Quickstart

Data is accessed via S3 using read-only credentials.

**Bucket:** `hyena-hip3` **Paths:** `hourly/*`, `daily/*`

**To get access:**

1. Request a key from the team
2. You'll receive a personal access key (AWS Access Key ID + Secret)

**Setup:**

```bash
# Install AWS CLI (if needed)
# macOS: brew install awscli
# Linux: apt install awscli / yum install awscli
# Or: pip install awscli

# Configure credentials
aws configure --profile hyena-data
# AWS Access Key ID: <your-key>
# AWS Secret Access Key: <your-secret>
# Default region name: ap-northeast-1
# Default output format: None
```

**Usage:**

```bash
# List available exports
aws s3 ls s3://hyena-hip3/hourly/ --profile hyena-data
aws s3 ls s3://hyena-hip3/daily/ --profile hyena-data

# Download a file
aws s3 cp s3://hyena-hip3/hourly/raw/fills/perp/date=2025-12-15/hour=09/09_fills.parquet . --profile hyena-data

# Sync a full day
aws s3 sync s3://hyena-hip3/hourly/raw/fills/perp/date=2025-12-15/ ./data/ --profile hyena-data
```

For more details see [Data export overview](/readme/hyena/data-export-overview.md)


---

# 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.hydromancer.xyz/readme/hyena/quickstart.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.
