# Minds API
> Read any public Minds channel and the platform's live hashtag trends — no key needed. Minds is an open-source, decentralised social network; this API returns a public channel's display name, bio, subscriber and subscription counts, lifetime impressions, Plus/Pro and verified flags and join date, plus the hashtags trending on Minds right now with their volume. Pass a username (the handle without the @). Data comes live from Minds' own public API — nothing cached, nothing stored. Distinct from the Mastodon/fediverse APIs — Minds runs its own platform. Built for social dashboards, creator analytics 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/minds-api/..."
```

## Pricing
- **Free** (Free) — 26,500 calls/Mo, 3 req/s
- **Starter** ($6/Mo) — 345,000 calls/Mo, 10 req/s
- **Pro** ($18/Mo) — 1,460,000 calls/Mo, 25 req/s
- **Scale** ($44/Mo) — 5,050,000 calls/Mo, 50 req/s

## Endpoints

### Channel

#### `GET /v1/channel` — Public channel/profile and engagement stats

**Parameters:**
- `username` (query, required, string) — Minds handle without the @ Example: `ottman`

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

### Trends

#### `GET /v1/trends` — Hashtags trending on Minds right now with volume

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

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/minds-api/v1/trends?limit=10"
```

### Meta

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

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


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