Sugra API  ·  Cross-Domain Data API  ·  Live

One API for every domain
that drives a decision.

Sugra API aggregates markets, economics, corporate filings, commodities, climate, predictions, digital economy, environment, and global news into a single LLM-ready endpoint. 469+ endpoints across 64+ primary sources. Consistent schemas, source timestamps, semantic metadata - ready for AI agents and decision platforms with zero transformation.

Start free View pricing Quickstart API docs →
469+
API endpoints
Unified under one integration
64+
Primary sources
Central banks, exchanges, agencies
25+
Data domains
Markets to climate to predictions
LLM-ready
Output format
Consistent envelope in every response
Why Sugra API

What makes it different.

Most data APIs are narrow by design - one domain, one region, one asset class. Sugra API is the opposite: a single, unified data layer across every domain that drives a real-world decision.

Cross-domain by design

Markets, macro, filings, climate, agriculture, predictions, digital economy, environment, news - through one API. Most competitors cover only finance.

LLM-ready envelope

Every response ships with a consistent envelope - data array + meta object with source, data_time, unit_type, and provenance fields. No parsing glue. No schema guessing.

No feature gating

All 469+ endpoints available on every plan. Pricing scales with request volume only - Free, Pro, Enterprise. No paywalls on specific domains or asset classes.

Automatic failover

Fallback chains across crypto, forex, commodities, weather, and quotes. If one upstream source degrades, the next available source takes over. Zero config on your side.

Global coverage

Coverage spans 245+ countries through central banks, international organizations, and national statistics agencies - including macro depth that financial-only APIs do not provide.

Source provenance

Every response tells you where it came from and when it was measured. source, data_time, cached, and fallback_used fields in meta - critical for agents grounding their answers.

What's inside

25+ data domains. One integration.

Organized into 11 top-level API categories in Swagger, but the actual coverage runs much deeper. Financial markets, macro, government, climate, physical world, blockchain networks, internet infrastructure, global news - through one hosted API. Add a new domain to your product and your integration does not change.

Financial markets
Finance
Equities, ETFs, options, screeners, insider activity
Crypto
Prices, tokens, 15K+ coins, fallback chain
Forex
30+ currencies, ECB references, conversion
Commodities
Energy, agriculture, metals, producer prices
Predictions
Event markets, political odds, macro contracts
Fundamentals and reference
US corporate filings
SEC EDGAR, 10-K, 10-Q, 8-K, 13F
Japan corporate filings
EDINET, 42 doc types, XBRL financials
Instrument mapping
Ticker, ISIN, CUSIP, SEDOL to FIGI
Macro and central banks
Macro indicators
CPI, PPI, GDP, unemployment, rates - 464 series
Central banks
Policy rates, balance sheets, 49 banks worldwide
National statistics
8,161 tables Canada, 1,223 datasets Australia, more
Government and trade
US federal spending
111 agencies, by state, since inception
Treasury fiscal data
Debt, auctions, gold reserve, since 1790
Legislation
US Congress bills, members, voting records
International trade
UN Comtrade, WTO statistics
Physical world
Weather and marine
Current, forecast, historical, ocean, wave
Climate
70 years history, CMIP6 projections to 2050
Air quality
PM2.5, PM10, NO2, ozone, AQI indices
Agriculture and food
Crop production, trade, food security - 245+ countries
Disasters and hazards
Earthquakes, fires, volcanoes, global alerts
Space weather
Solar, geomagnetic, radiation
Digital economy
DeFi and TVL
Protocols, stablecoins, DEX, yields, options
Bitcoin network
Mempool, fees, hashrate, 27 charts
Internet infrastructure
BGP, ASN, outage detection, network probes
Global news and sentiment
100+ languages, 2M+ hours TV archive

Full endpoint reference with request parameters and example responses at sugra.ai

Who builds on Sugra API

Built for teams that ship against the real world.

AI agent developers

Agents need grounded answers backed by real data - not training-set memory. Sugra API provides LLM-ready responses with source provenance in every call.

LLM application builders

Drop Sugra responses directly into prompts or function calls. Consistent schemas across domains mean one integration instead of ten.

Fintech and data teams

Ship faster without managing 10 upstream integrations, 10 auth systems, and 10 rate limit policies. One key. One envelope. Every domain.

Research and analytics

Macro, climate, government, agriculture, and markets through one API - the combination most research desks need but no single vendor covers.

Quickstart

First call in under a minute.

Register, grab your API key from the Settings page, and make your first request. Every response is LLM-ready out of the box.

# GET US CPI - last 3 observations
curl -H "x-api-key: sugra_ao1_..." \
     "https://sugra.ai/api/fred/us/cpi?mode=last_n&n=3"
import httpx

r = httpx.get(
    "https://sugra.ai/api/fred/us/cpi",
    params={"mode": "last_n", "n": 3},
    headers={"x-api-key": "sugra_ao1_..."},
)
payload = r.json()
print(payload["data"], payload["meta"]["data_time"])
const res = await fetch(
  "https://sugra.ai/api/fred/us/cpi?mode=last_n&n=3",
  { headers: { "x-api-key": "sugra_ao1_..." } }
);
const { data, meta } = await res.json();
console.log(data, meta.data_time);
Every response:
{ "data": [ ... ], "meta": { "source", "data_time", "unit_type", "cached", "fallback_used" } }
For AI agents

Hand an agent the spec. That's the integration.

Point an AI agent at sugra.ai/openapi.json, give it your API key, and it knows everything Sugra can do. Every endpoint, every parameter, every response schema - described in a typed OpenAPI 3.1 spec with consistent Envelope generics and semantic meta fields. No custom integration. No tool-writing. No documentation parsing.

When a user asks a question that spans domains - "what is the CPI trend, and how is weather in the US farm belt affecting grain prices?" - an agent reading the spec picks the right endpoints from 469+ available, calls them in parallel, and assembles one grounded answer from primary sources. Central bank data, weather observations, commodity prices - all in the same LLM-ready envelope.

No browsing the web. No sifting through blog posts, forum threads, and stale cached pages. No filtering out the noise. No hallucinated numbers. Just the source, the timestamp, the value - and a clean path from question to answer.

Agent session
# Give an agent everything it needs to know:
export SUGRA_SPEC="https://sugra.ai/openapi.json"
export SUGRA_KEY="sugra_ao1_..."

# Ask a cross-domain question:
agent.ask("How is US inflation trending, and what is
           the weather doing to Midwest grain prices?")

# Agent picks endpoints automatically from 469+:
GET /api/fred/us/cpi                -> CPI series + data_time
GET /api/weather/forecast           -> Iowa, Illinois, Nebraska
GET /api/commodities/grains/corn    -> prices + source

# One grounded answer. Primary sources. Clean path
# from question to answer.
Connect your agent, MCP server live!

Native MCP server for Anthropic Claude, OpenAI GPT, Google Gemini, xAI, and any MCP-enabled IDE. Install with pip install sugra-api-mcp or connect to https://app.sugra.ai/mcp - same server, two transports. For non-MCP agents: OpenAI function-calling and GPT Store Actions via OpenAPI 3.1.

The spec is production-enriched: typed Envelope[T] generics on 469+ endpoints, Markdown descriptions, global error schemas, APIKeyHeader security, externalDocs links.

Where Sugra fits

Three patterns. One category per problem.

Data in 2026 comes in three shapes. Most APIs cover one domain. A few platforms give you tooling to integrate many sources yourself. Sugra is the only hosted API that aggregates across every domain that drives a decision - through one key, one envelope, and one bill.

Single-domain hosted APIs

e.g. Alpha Vantage, FMP, Polygon (finance) · OpenWeatherMap (weather) · NewsAPI (news)

One narrow domain, one auth, one schema. Works well if your product needs exactly one type of data. If you need three or more - finance plus weather plus news, for example - you end up with three keys, three integrations, three monthly bills, and three response formats to reconcile.

Developer platforms and SDKs

e.g. OpenBB - open-source Python platform

You install the platform yourself and connect it to ~100 data providers. Bring your own API keys, pay each provider directly, manage each auth, and handle each schema. Excellent tooling for developers who want full control. Not the same model as a hosted API - and not a substitute when you need coverage without operational overhead.

Sugra API

Cross-domain hosted APIs

one key · one envelope · one bill

One API key. Every domain that drives a decision. Finance, macro, corporate filings, commodities, climate, predictions, digital economy, environment, global news - through 469+ endpoints and one LLM-ready JSON envelope. We handle sourcing, failover, schema normalization, and caching. You get the data.

What each pattern actually covers:

Capability Finance APIs Weather APIs News APIs Dev platforms
(e.g. OpenBB)
Sugra API
Hosted (no self-install)
One key covers everything
Finance / markets
Macro and central banks partial
Government and Treasury partial
Agriculture and food
Weather and climate
Predictions / event markets
Digital economy / on-chain partial
Global news and sentiment partial partial
Non-US corporate filings partial
Automatic failover chains
LLM-ready response envelope

Based on publicly advertised features as of April 2026. Each provider serves its own segment well - this table shows coverage breadth, not depth.

Cost to replicate

Building this yourself adds up fast.

Matching Sugra's coverage with separate APIs means integrating a financial data provider, a weather provider, a news provider, a commodities feed, government data sources, and a handful of free-but-fragmented macro APIs - each with its own auth, rate limits, schemas, and failure modes.

Conservative estimate: $250/mo. Realistic for production: $400-600/mo. Full-depth equivalent: $1,100+/mo. Plus 6-10 separate integrations to maintain. Sugra Pro is $59/mo.

Conservative
$250
/mo equivalent
Realistic
$400-600
/mo equivalent
Full-depth
$1,100+
/mo equivalent
Sugra Pro
$59 / mo
Pricing

One plan - all data. Volume is the only difference.

All 469+ endpoints, all 64+ primary sources, LLM-ready output - on every plan. Pick by volume. No feature gating. Upgrade or downgrade anytime.

Starter
Free
$0
permanent - no credit card
  • 50 requests / day
  • All 469+ endpoints
  • All 64+ primary sources
  • LLM-ready JSON output
  • Email support
Start free
Developer
Dev
$25 / month
or $250/yr billed annually
  • 5,000 requests / day
  • All 469+ endpoints
  • All 64+ primary sources
  • LLM-ready JSON output
  • Email support
  • Cancel or change plan anytime
Choose Dev
Recommended
Production
Pro
$59 / month
or $49/mo billed annually
  • 50,000 requests / day
  • All 469+ endpoints
  • All 64+ primary sources
  • LLM-ready JSON output
  • Priority email support
  • Cancel or change plan anytime
Upgrade to Pro
Scale
Enterprise
Custom
tailored to volume, SLA, deployment
  • Unlimited requests
  • Dedicated hosting - isolated infra
  • On-premises deployment option
  • Custom SLA available (negotiated separately)
  • SSO / SAML authentication
  • IP whitelisting, audit logs
  • Dedicated account manager
  • Custom procurement and MSA
Talk to us

All plans include the same endpoints and the same data. Free is a permanent tier, not a trial - no credit card required. Annual billing saves approximately 17% vs monthly on Dev and Pro.

Common questions

Before you start.

Is every endpoint available on every plan?
Yes. No feature gating. All 469+ endpoints and all 64+ primary sources are on every plan - the only difference between Free, Dev, Pro, and Enterprise is daily request volume.
What is the difference between Dev and Pro?
Dev is for prototypes, indie builders, and side projects - 5,000 requests/day at $25/mo ($250/yr billed annually). Pro is for production teams - 50,000 requests/day at $59/mo ($49/mo billed annually). All endpoints, all sources, identical LLM-ready output on both.
What counts as a request?
Every HTTP call to any /api/ endpoint, regardless of how much data it returns. Caching on our side does not charge you.
What happens if I hit the daily limit?
You receive a 429 response with a Retry-After header until reset. No overages, no surprise bills. Upgrade anytime for immediate higher limits.
Is there a credit card required for Free?
No. Free is a permanent tier with 50 requests/day and no credit card. Upgrade to Dev when your prototyping needs more room.
Can I change plans?
Yes. Upgrade or downgrade between Dev, Pro, and Free anytime from your account. Billing is prorated.
What does LLM-ready mean?
Every response ships with consistent schemas, source timestamps, and semantic metadata - drop it into an agent or model with zero transformation.
What does Enterprise include?
Unlimited volume, dedicated hosting on isolated infrastructure, on-premises deployment option for regulated industries, custom SLA negotiated separately, SSO/SAML, IP whitelisting, audit logs, custom data retention, dedicated account manager, and custom procurement terms. Contact us to discuss.
Other products

Sugra App and Sugra Assist.

Our application and interface layers are in active development. Pricing will be published at launch.

Application layer
Sugra App
Coming soon
Interface layer
Sugra Assist
Coming soon
Ready to build

One API key. Every domain. LLM-ready.

Register for free, grab your API key, and build. No credit card required. Questions about high volume or enterprise terms? Write to us - we respond within one business day.

Start free API docs Talk to us