# Raspberry API quick reference

Use one API key in the `x-api-key` header. The base URL is `https://raspberrytrades.com`.

| Dataset | Request |
|---|---|
| Stock Sentiment | `GET /api/sentiment?ticker=NVDA` |
| Market Sentiment | `GET /api/market-sentiment?market=btc` |
| News Sentiment | `GET /api/news?ticker=NVDA` |
| Market News | `GET /api/market-news?market=us` |
| Sentiment History | `GET /api/history?ticker=NVDA` |
| Breakout Radar | `GET /api/influencers` |
| Personal influencers | `GET/POST/PATCH/PUT/DELETE /api/influencers/accounts` |
| Strategy library and signals | `GET /api/strategies` |
| Strategy scanner | `GET /api/scan?strategy=triple-rsi` |
| Strategy backtest | `GET /api/backtest?strategy=triple-rsi&ticker=SPY` |
| Insider Trading | `GET /api/v1/insider-trades/AAPL` |
| Financial Statements | `GET /api/v1/financials/AAPL` |
| Company Guidance | `GET /api/v1/guidance/NVDA` |

## Example

```bash
curl "https://raspberrytrades.com/api/sentiment?ticker=NVDA" \
  -H "x-api-key: ra_live_your_key_here"
```

See `/datasets` for provenance, coverage, freshness and limitations. See `/docs` for exact parameters and response examples.
