# Steem API
> Read the Steem blockchain and its social layer (Steemit) live — no key needed. The account endpoint returns a Steemit account's social profile and on-chain stats: display name, about, location, website, reputation score, post count, STEEM and SBD balances and the account-creation date. The trending endpoint returns the posts trending on Steemit right now (author, title, votes, pending payout, optional tag). The network endpoint returns chain-wide stats — head block and current/virtual STEEM supply. Data comes live from Steem's own public RPC node — nothing cached, nothing stored. Steem is a distinct blockchain-social network, separate from Hive since the 2020 fork. Built for social dashboards, creator analytics, on-chain explorers and trend monitoring.

## Authentication
All requests require your oanor API key in the `x-oanor-key` header. Get one at https://www.oanor.com/developer/keys.

```bash
curl -H "x-oanor-key: oanor_live_…" "https://api.oanor.com/steem-api/..."
```

## Pricing
- **Free** (Free) — 25,000 calls/Mo, 3 req/s
- **Starter** ($7/Mo) — 330,000 calls/Mo, 10 req/s
- **Pro** ($20/Mo) — 1,420,000 calls/Mo, 25 req/s
- **Scale** ($46/Mo) — 4,950,000 calls/Mo, 50 req/s

## Endpoints

### Account

#### `GET /v1/account` — Social profile and on-chain stats for an account

**Parameters:**
- `username` (query, required, string) — Steem account name Example: `blocktrades`

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/steem-api/v1/account?username=blocktrades"
```

### Trending

#### `GET /v1/trending` — Posts trending on Steemit now (optional tag)

**Parameters:**
- `tag` (query, optional, string) — Optional tag filter Example: `photography`
- `limit` (query, optional, string) — Max results (1-50) Example: `10`

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/steem-api/v1/trending?tag=photography&limit=10"
```

### Network

#### `GET /v1/network` — Steem chain-wide stats (head block, supply)

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/steem-api/v1/network"
```

### Meta

#### `GET /v1/meta` — Service metadata

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/steem-api/v1/meta"
```


---
Marketplace page: https://www.oanor.com/api/steem-api
OpenAPI spec: https://www.oanor.com/api/steem-api/openapi.json
