# Crypto Project Team & Events API
> The "who built it and what is on its calendar" view of a cryptocurrency, served from the public CoinPaprika feed. The coin endpoint returns the project's identity and technical profile — market-cap rank, coin-or-token type, whether it is active, the genesis date, development status, consensus / proof type, hashing algorithm, organisation structure, the open-source flag and its industry tags. The team endpoint returns the people behind the project — names and roles such as founders, authors and leads. The events endpoint returns the project's event calendar — conferences, mainnet launches, exchange listings and milestones, each with a date and a link, newest first. This is the project-and-people view of a coin — its team, profile and calendar, not its price — distinct from the price-feed, market and CoinGecko-profile APIs in the catalogue. A coin is a CoinPaprika id (btc-bitcoin); a bare symbol (btc) or name (bitcoin) is resolved automatically to the best-ranked match. Live, no key on the upstream, nothing stored.

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

## Pricing
- **Free** (Free) — 25,000 calls/Mo, 5 req/s
- **Starter** ($5/Mo) — 295,000 calls/Mo, 12 req/s
- **Pro** ($14/Mo) — 1,280,000 calls/Mo, 30 req/s
- **Scale** ($34/Mo) — 4,550,000 calls/Mo, 80 req/s

## Endpoints

### Project

#### `GET /v1/coin` — Project identity & technical profile

**Parameters:**
- `coin` (query, required, string) — CoinPaprika id, symbol or name Example: `btc-bitcoin`

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/cryptoprojects-api/v1/coin?coin=btc-bitcoin"
```

#### `GET /v1/events` — The project event calendar

**Parameters:**
- `coin` (query, required, string) — CoinPaprika id, symbol or name Example: `eth-ethereum`

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/cryptoprojects-api/v1/events?coin=eth-ethereum"
```

#### `GET /v1/team` — The people behind the project

**Parameters:**
- `coin` (query, required, string) — CoinPaprika id, symbol or name Example: `eth-ethereum`

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/cryptoprojects-api/v1/team?coin=eth-ethereum"
```

### Meta

#### `GET /v1/meta` — Spec

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


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