
DE World State Protocol
Digital Extremes' official raw world-state JSON endpoint that feeds live game data (alerts, invasions, sorties, Void Trader, events) to nearly every third-party Warframe tool.
Visão geral
The "DE World State Protocol" refers to Warframe's official worldState.php endpoint (https://api.warframe.com/cdn/worldState.php), a public read-only JSON feed published directly by Digital Extremes. It returns the live state of the game world: active alerts, invasions, sorties/Archon hunts, fissures, syndicate missions, the Void Trader (Baro Ki'Teer) manifest, community/nightwave events, flash sales, in-game market data, plus metadata like build label, world seed, and generation timestamp. It is a raw, unauthenticated data source rather than an end-user app, and it is the upstream foundation that community APIs (most notably WFCD's warframe-worldstate-parser and warframestat.us) parse and re-serve to power timers, alert trackers, and companion apps.
Ideal para: Developers building Warframe companion tools, bots, and trackers who want the authoritative upstream data rather than a third-party mirror; not intended for non-technical end users.
Recursos principais
- Official first-party data source published directly by Digital Extremes
- Returns comprehensive live world state as JSON
- Includes Void Trader / Baro Ki'Teer manifest with prices
- Covers events, community goals, flash sales, and in-game market landing pages
- Multilingual localized strings (en, fr, ja, zh, ko, etc.)
- Metadata: build label/version, world seed, and generation timestamp
- Unauthenticated, read-only public HTTPS endpoint
- Raw internal format (MongoDB ObjectIDs, epoch timestamps) requiring client-side parsing
Prós e contras
- Authoritative first-party data straight from Digital Extremes with no intermediary
- Free, public, and unauthenticated
- Extremely comprehensive coverage of live game state
- The canonical upstream that nearly all community tools depend on
- Reliable uptime as it is production infrastructure serving the live game
- Raw, dense format with no official public documentation
- Uses internal encodings (MongoDB ObjectIDs, epoch-ms) that require parsing to be usable
- Schema can change without notice or versioning guarantees
- Not usable by non-developers without a parser/frontend
- No official support channel or SLA for third-party consumers
Opinião da comunidade
Direct external sentiment sources (Reddit/YouTube/Trustpilot) could not be gathered this session because the web-search budget was exhausted before discovery, so no community quotes are reported here. What is verifiable is that this endpoint is the de facto standard upstream for the Warframe developer ecosystem: the WFCD warframe-worldstate-parser openly documents fetching from it, and warframestat.us is built on parsing it. Its practical reputation among developers is as reliable and canonical, with the main friction being that the raw format is dense and undocumented officially, which is exactly why community parsers exist.
Do Reddit
Do Reddit · r/Warframe →Avaliações e notas
- GitHub - WFCD/warframe-worldstate-parser
“Community (Warframe Community Developers) open-source parser that fetches https://api.warframe.com/cdn/worldState.php and converts the raw response into usable JavaScript objects; used in production by warframestat.us APIs across PC/PS/Xbox/Switch.”