HedgeFriend
v0.2 — 10 data sources live

Alternative data, served as REST.

Clean APIs for SEC filings, futures positioning, weather events, attention metrics, patents, regulations, congressional trades, and macro indicators. Built for quants, indie traders, and ML pipelines. No enterprise contracts.

50 requests/day free. No credit card.

curl
bash
# register, get your key
curl -s -X POST api.hedgefriend.dev/v1/auth/register \
  -H 'content-type: application/json' \
  -d '{"email":"you@example.com"}'

# 30-day Wikipedia attention for $NVDA
curl -s \
  -H "Authorization: Bearer $HF_KEY" \
  'api.hedgefriend.dev/v1/alt/wiki/NVDA?days=30' | jq
SEC EDGARCFTC COTFEMAWikipediaUSPTOFederal RegisterSTOCK ActFREDNewsAPIXBRLSEC EDGARCFTC COTFEMAWikipediaUSPTOFederal RegisterSTOCK ActFREDNewsAPIXBRL
Why HedgeFriend

The signals quants actually use, not another OHLCV proxy.

Most retail finance APIs reshuffle the same price feed. HedgeFriend is built around the alternative data that academic literature has repeatedly shown to be predictive — and that public agencies already publish for free.

Primary sources only

SEC EDGAR, CFTC, FEMA, USPTO, FRED, the Federal Register. We don't scrape — we pull from the agency.

One auth, one shape

A single bearer token. Consistent JSON envelopes. Predictable pagination. No SOAP, no XBRL parsing on your side.

Indie-friendly pricing

50 requests/day free. $9/mo for serious backtests. No annual contracts, no sales calls, no quotas you can't see.

Predictable shapes

JSON that behaves the same on every endpoint.

Every list endpoint returns the same envelope: a data array, a meta block with pagination, and an X-RateLimit-* header on every response. Errors come back as { error, code }. That's it.

  • Bearer token auth — no signing, no OAuth dance.
  • ISO-8601 dates. UTC always. Decimal numbers as numbers.
  • Rate limits surfaced via headers. No quota guessing.
GET /v1/sec/insider-trades/NVDA
json
{
  "data": [
    {
      "filing_date": "2026-04-21",
      "reporter": "Huang, Jen-Hsun",
      "role": "CEO, 10% Owner",
      "transaction_code": "S",
      "shares": 120000,
      "price": 982.41,
      "value_usd": 117889200
    }
  ],
  "meta": {
    "count": 1,
    "next": "cursor:eyJpZCI6..."
  }
}
Pricing

Free for hobbyists. Cheap for everyone else.

Available now
Free
$0/forever
  • 50 requests/day
  • All endpoints
Get started
Coming soon
Starter
$9/month
  • 5,000 requests/day
  • All endpoints
Coming soon
Pro
$29/month
  • 50,000 requests/day
  • Priority support

Build with the same data the funds use.

Sign up, copy your key, and ship a backtest tonight.

Create your API key