Public API
Flarient exposes a small set of read-only endpoints. They are free to use for non-commercial, research and hobby projects. Please be reasonable.
Quickstart
- 1Try the free endpoint — no key needed. Fetch live space weather data in one curl command:
curl "https://flarient.com/functions/getLiveSpaceWeather" | jq .
- 2Need higher limits or consensus data? — Create an account and generate a scoped API key from the Account page.
- 3Authenticate — pass your key as a Bearer token. See the Enterprise API section below.
Rate limits
- • Recommended: ≤ 1 request per minute per endpoint for polling.
- • Burst: ≤ 10 requests per minute. Higher rates may be throttled.
- • Cache on your side — live data refreshes every 60 seconds.
- • Use is subject to the Flarient Terms of Service.
GET /functions/getLiveSpaceWeather
Returns the full live space-weather payload (Kp, solar wind, aurora, asteroids, Dst, flare).
Example
curl "https://flarient.com/functions/getLiveSpaceWeather"
GET /functions/sitemap
XML sitemap index. Add ?type=news, ?type=static or ?type=archive&month=YYYY-MM.
Example
curl "https://flarient.com/functions/sitemap?type=news"
GET /functions/getRssFeed
RSS 2.0 feed of recent daily briefings.
Example
curl "https://flarient.com/functions/getRssFeed"
Enterprise API v1
The Enterprise API provides authenticated access to Flarient's consensus intelligence, risk scores, and forecast credentials. Requires a scoped API key — get yours from the Account page.
Authentication
Pass your API key in the Authorization header as a Bearer token. Keys starting with flr_ are accepted; platform JWTs are not.
Header
Authorization: Bearer flr_live_your_key_here
Rate limits
- • Trial — 100 requests / hour
- • Developer — 5,000 requests / hour
- • Enterprise — 50,000+ requests / hour
- • Rate limit headers are included in every response.
POST /functions/enterpriseApi — endpoint: events
Returns recent significant space weather events with severity, status, and impact categories.
Example
curl -X POST "https://flarient.com/functions/enterpriseApi" \
-H "Authorization: Bearer flr_live_your_key_here" \
-H "Content-Type: application/json" \
-d '{"endpoint": "events", "limit": 10}'POST /functions/enterpriseApi — endpoint: consensus
Returns open forecast markets with community, human, AI, and elite consensus probabilities plus divergence scores.
Example
curl -X POST "https://flarient.com/functions/enterpriseApi" \
-H "Authorization: Bearer flr_live_your_key_here" \
-H "Content-Type: application/json" \
-d '{"endpoint": "consensus", "limit": 20}'POST /functions/enterpriseApi — endpoint: risk
Returns current Flarient Risk Scores — geomagnetic, radiation, HF disruption, GNSS degradation, and satellite drag — with full component breakdowns and methodology version.
Example
curl -X POST "https://flarient.com/functions/enterpriseApi" \
-H "Authorization: Bearer flr_live_your_key_here" \
-H "Content-Type: application/json" \
-d '{"endpoint": "risk"}'POST /functions/enterpriseApi — endpoint: divergence
Returns High Divergence Events — markets where human and AI forecasters disagree significantly. These are the highest-uncertainty, highest-value intelligence signals.
Example
curl -X POST "https://flarient.com/functions/enterpriseApi" \
-H "Authorization: Bearer flr_live_your_key_here" \
-H "Content-Type: application/json" \
-d '{"endpoint": "divergence", "limit": 10}'POST /functions/enterpriseApi — endpoint: calibration
Returns resolved market data with Brier scores and calibration metrics for community, human, and AI cohorts. Verify Flarient's track record before relying on our intelligence.
Example
curl -X POST "https://flarient.com/functions/enterpriseApi" \
-H "Authorization: Bearer flr_live_your_key_here" \
-H "Content-Type: application/json" \
-d '{"endpoint": "calibration", "limit": 50}'POST /functions/enterpriseApi — endpoint: assets
Returns registered spacecraft assets (satellites, constellations, missions) with orbital parameters and current risk scores. Pass asset_id for a single asset's risk timeline.
Example
curl -X POST "https://flarient.com/functions/enterpriseApi" \
-H "Authorization: Bearer flr_live_your_key_here" \
-H "Content-Type: application/json" \
-d '{"endpoint": "assets", "asset_id": "iss"}'Scopes
API keys are scoped to specific endpoint groups. Available scopes:
eventsconsensusriskdivergencecalibrationassetswebhooksNeed a custom integration, higher rate limits, or private spacecraft asset configuration? Explore Enterprise plans or contact our team.
Developer integrations
Flarient also provides open-source developer tools on GitHub — zero cost, no API key required.
Space Weather Check — GitHub Action
Gate your CI/CD deployments on real-time space weather. Fail builds during geomagnetic storms, solar flares, or hazardous NEO approaches. Generates job summaries and creates issues on significant events.
Flarient Constellation
GitHub-native space weather distribution network. Fetches NOAA/NASA data directly, detects changes, scores significance, and generates badges — all on GitHub Actions and Pages, zero cost.
