Module Preview
Developer Portal
Build the future of regeneration on top of Atlas — APIs, SDKs and simulation environments.
Atlas APIs
98 REST + GraphQL endpoints covering intelligence, verification, markets, ledger and oracle.
SDKs
First-class TypeScript, Python, Rust and Solidity SDKs with typed schemas for every planetary system.
Sandbox
Spin up a full Atlas twin locally in one command. Perfect for hackathons, research and integration testing.
Quickstart
# install
$ npm i @atlas/sdk
# authenticate
$ atlas auth login
# query the oracle
import { AtlasClient } from "@atlas/sdk";
const atlas = new AtlasClient({ apiKey: process.env.ATLAS_KEY });
const insight = await atlas.oracle.ask(
"Top 3 systemic risks for East Africa next 90 days"
);
console.log(insight);