Disclosed CapitolDisclosedCapitol
Home
Plans
Chad AI
API
Sign InGet Pro

Never Miss a Trade

Get weekly trade alerts free.

Explore

  • Politician Trades
  • Politicians
  • Companies
  • All Stocks A–Z
  • Leaderboard
  • Compare Politicians
  • Committee Portfolios
  • Chad AI

Money & Policy

  • Government Contracts
  • Lobbying
  • Legislation
  • Campaign Finance
  • Institutional (13F)
  • Whale Watch (13D)

Markets

  • Markets Overview
  • Top Companies
  • Insider Trends
  • Economic Indicators
  • Live News

Resources

  • API Access
  • Developers
  • Data Export
  • Glossary
  • Methodology
  • Data Sources
  • How It Works

Company

  • About Us
  • Press
  • FAQ
  • Pricing
  • vs. Capitol Trades
  • Contact
  • Watchlist

Legal

  • Editorial Standards
  • Corrections
  • Disclaimers
  • Privacy
  • Terms
© 2026 Disclosed Capitol. All rights reserved.
TermsPrivacyDisclaimer
HomeTrades
Chad
WatchlistAccount

API Access

Programmatic access to 316 endpoints covering congressional trades, portfolios, signals, financial disclosures, and more.

Get API Key

Authentication

Every request needs an API key, passed as a DC-API-Key header. Base URL is https://api.disclosedcapitol.com.

curl https://api.disclosedcapitol.com/trades?limit=5 \
  -H "DC-API-Key: dc_your_key_here"

Keep keys server-side. If a key is exposed, rotate it from Account → API Keys.

316

endpoints in production

One REST API, every politician trade, every committee portfolio, every overlap. Below is a curated tour of 75 of the most-used endpoints across 8 categories. The full 316-endpoint catalog with live credit costs comes back from GET /credits/endpoints or GET /openapi.json.

GET/tradesPaginated trade feed with filters (politician, ticker, date, type, party)
GET/trades/bulk-latestComposite latest trades with enrichment data
GET/politiciansPolitician list with stats and rankings
GET/politicians/{id}Politician profile with trading stats
GET/politicians/{id}/tradesAll trades for a politician
GET/tickers/{ticker}/tradesCongressional trades for a specific stock
GET/tickers/topMost-traded tickers in Congress
GET/feed/liveReal-time trade feed
GET/feed/recentRecent trades for display
GET/searchGlobal search across politicians, tickers, and bills
GET/stats/summaryPlatform summary: total trades, politicians, activity
316 endpoints in production · 75 curated above · Base URL: https://api.disclosedcapitol.com · All requests require DC-API-Key header

Recommended Endpoints

Hand-picked high-value endpoints to get started

1./trades— Latest congressional trades
2./chad/chat— Chad AI assistant
3./politicians/{id}— Politician performance profile
4./portfolio/{id}/positions— Live portfolio holdings
5./clusters/recent— Coordinated trading clusters
6./legislation/suspicious-timing— Suspicious timing patterns
7./overlap— Trade × lobbying overlap
8./tickers/top— Most-traded stocks in Congress

Error responses

Every error returns a JSON body of the form { "detail": "..." } with an appropriate HTTP status. Build retry logic against these codes — most are recoverable without manual intervention.

CodeStatusWhat it means · How to recover
400Bad Request
Bad Request. Malformed parameters or missing required fields.
Check parameter names + types against the endpoint spec; do not retry as-is.
401Unauthorized
Unauthorized. Missing or invalid DC-API-Key header.
Verify the key is active in Account → API Keys. If recently rotated, update your client.
402Payment Required
Payment Required. Credit balance is zero — request would deduct below zero.
Top up at /account?tab=billing or wait for the next monthly Pro allowance.
403Forbidden
Forbidden. Your tier does not include this endpoint.
Upgrade or use an equivalent lower-tier endpoint listed below.
404Not Found
Not Found. Endpoint path or resource ID does not exist.
Check the politician_id / ticker / committee_code against /search before retrying.
422Unprocessable Entity
Unprocessable Entity. Parameter values failed validation (e.g. malformed date, out-of-range limit).
Inspect the response body for the field name. Fix and retry.
429Too Many Requests
Too Many Requests. Per-minute rate limit exceeded for your priority tier.
Back off for the seconds in the Retry-After header (default 60), then retry. Increase tier by raising 30-day spend.
500Internal Server Error
Internal Server Error. Unexpected server failure — we log + alert on these.
Retry with exponential backoff. If persistent, email support@disclosedcapitol.com.
502Bad Gateway
Bad Gateway. Upstream data source (e.g. SEC, House clerk) is temporarily unreachable.
Retry after 30–60s. The data layer falls back to cached values when possible.

Tip: never deduct credits on the client. Always read the actual balance from GET /credits/balance after a request — it reflects retries, partial deductions, and refunds.

Rate limits & quotas

Two independent guards: a per-minute burst limit on request rate, and your credit balance as a hard ceiling on volume. Both fail closed with a clear retry signal.

Per-minute burst
HTTP 429
Starter ($5+/30d)60 req/min
Plus ($25+/30d, Pro/Dev)240 req/min
Power ($100+/30d)600 req/min

On 429: response includes a Retry-After: 60 header. Back off, then retry.

Credit balance
HTTP 402

Each request deducts credits. When balance hits zero, the API returns 402 Payment Required until you top up.

Check remaining balance any time: GET /credits/balance

Tip: track the balance returned in /credits/balance and alert your own system below 20%.