Pricing & Credits

Tengu uses a single credit wallet per customer. Your subscription tier grants a monthly pool of credits and a rate limit; every API call draws from that pool. Above the included grant, paid tiers can spend into metered overage up to a hard cap.

How credits work#

  • One wallet, both surfaces. Brain (per-token) and FIRM (per-call) debit the same credit balance.
  • Monthly grant. Your tier includes a fixed number of credits that auto-refill each billing period.
  • Overage. On paid tiers, you can spend past the grant (metered, billed as overage) up to a per-tier ceiling, after which calls hard-cap with a 402 usage_exceeded.
  • Free hard-caps at the grant — no overage.
  • You are charged only for verified, served requests. A request that returns 401, 402, 403, 404, 429, or 502 does not deduct credits.

Rate card — FIRM data API (per call)#

Each FIRM call debits a flat per-product credit cost:

Productcredits/callFirst plan
market_data1Free
fundamentals1Free
public_filings1Free
congressional2Starter
news_sentiment2Starter
macro_rates2Starter
quant_signals3Starter
funds (13F + Form-4)4Starter
alt_data3Pro
tape3Pro
events_transcripts3Pro
options_flow4Pro
credit4Pro
execution_research4Pro
risk_analytics5Pro
private_markets5Pro
llm_research6Pro
copilot10Expert (or $199 add-on)

An unrecognized product defaults to 1 credit. /api/v3/private_markets/search is 0 credits (charges nothing) but still needs a valid key like every data route. /api/capabilities and the health/status/monitoring routes need no key at all.

Rate card — Brain agent API (per token)#

Brain is metered per token (each turn's list-price cost is converted to credits at 2,500 credits per $1, ≈ $0.0004/credit). A Brain request is a single metered event regardless of how many FIRM tools it calls internally — you are not separately charged for the tools Brain invokes on your behalf.

Tiers#

TierPrice / moIncluded credits / moWallet ceiling (grant + overage)Rate limitProducts
Free$01,0001,000 (hard-cap)30 req/minmarket_data, fundamentals, public_filings
Starter$99250,0001,000,000120 req/minFree + congressional, news_sentiment, macro_rates, quant_signals, funds
Pro$4992,000,00010,000,000600 req/minStarter + alt_data, tape, events_transcripts, options_flow, credit, execution_research, risk_analytics, private_markets, llm_research
Expert$9995,000,00025,000,0001,200 req/minPro + copilot
EnterpriseCustom (sales)20,000,000100,000,0006,000 req/minAll products + copilot + the Brain agent

Notes:

  • Included credits is the monthly grant that refills at the start of each billing period.
  • Wallet ceiling is the grant + overage headroom. On paid tiers you can spend up to the ceiling; the excess above your included grant is billed as metered overage. Past the ceiling, calls return 402 usage_exceeded.
  • Free hard-caps exactly at its 1,000-credit grant — no overage.
  • copilot is bundled on Expert and Enterprise, or available as a $199/mo add-on on any paid plan.
  • brain (the agent API) is Enterprise-only. Pro and below call the FIRM data products directly.

À-la-carte add-ons#

Buy a single premium product on top of any paid plan — each add-on is its own subscription that unlocks the product and adds a monthly credit pack to your shared wallet:

Add-onPrice / moCredit packUnlocks
Private Markets$299300,000private_markets (≈60k profile calls)
Options Flow$79100,000options_flow (≈25k flow calls)
Copilot$19960,000copilot (≈6k verdicts)

Add-ons require an active paid base plan (Starter or Pro). They stack on top of your tier — a Starter customer can add Private Markets without upgrading to Pro.

What happens when you run out#

When the wallet is exhausted (or you reach your overage ceiling), calls return:

Code
1HTTP/1.1 402 Payment Required2{ "detail": { "error_code": "usage_exceeded", "error_message": "credit balance exhausted — add credits or upgrade your plan" } }

To restore service, top up or upgrade your plan in the dashboard. Credits refill automatically each billing period.

Estimating cost#

  • A FIRM workflow that pulls a market quote (1) + a 13F lookup (4) + a Copilot verdict (10) costs 15 credits for those three calls.
  • Private Markets: search is free, so search (0) → company/{id} profile (5) = 5 credits per company you actually open.
  • A Brain request costs roughly the total tokens of the request and response in credits — one metered event, no matter how many tools it used internally.

See api-reference.md for the full endpoint list, per-plan access, and error shapes.