# GETTR API
> Read any public GETTR profile and the platform's live trends — no key needed. GETTR is a global microblogging social network; this API returns a public account's display name, bio, website, language, follower and following counts, imported-Twitter follower count, influencer level and join date, plus what is trending on GETTR right now. Pass a username (the handle without the @). Data comes live from GETTR's own public web API — nothing cached, nothing stored. Built for social dashboards, audience analytics, creator tooling and trend monitoring on the platform.

## 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/gettr-api/..."
```

## Pricing
- **Free** (Free) — 27,500 calls/Mo, 3 req/s
- **Starter** ($7/Mo) — 332,000 calls/Mo, 10 req/s
- **Pro** ($20/Mo) — 1,470,000 calls/Mo, 25 req/s
- **Scale** ($46/Mo) — 5,100,000 calls/Mo, 50 req/s

## Endpoints

### User

#### `GET /v1/user` — Public profile and engagement stats for a handle

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

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

### Trends

#### `GET /v1/trends` — Trending topics on GETTR right now

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

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

### Meta

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

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


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