Axiom Developer Hub
Integrate consensus-backed Web2 telemetry feeds directly into your smart contracts and dApps. Fetch raw environmental, cargo, and financial data securely.
Generate Developer Key
Simulated credentials with strict scope limits
Treasury Fee Platform
On-chain platform query fees distribution
Developer Security audited
Platform tokens are secured using two-step transfer protocols, escrow balance verification checks, and cryptographically verified key signatures.
Modal System Sandbox
Verify loading transitions and Web3 error mapping
import { AxiomSDK } from "@axiom-protocol/sdk";
import { ethers } from "ethers";
// 1. Initialize SDK
const sdk = new AxiomSDK();
sdk.init({
apiKey: "YOUR_API_KEY",
baseUrl: "https://api.axiom.network",
// Or Web3 provider: providerOrSigner: signer
});
// 2. Fund Developer Wallet
await sdk.depositBalance("50.0"); // Deposit 50 USDC
// 3. Request Verified Telemetry
const { jobId, txHash } = await sdk.requestTelemetry({
query: "Fetch Dubai Airport Ambient Temperature",
escrowAmount: "5.0", // 5 USDC job fee
requiredConsensus: 2
});
console.log(`Job dispatched. ID: ${jobId}`);
// 4. Query Job Consensus Status
const status = await sdk.getJobStatus(jobId);
console.log(`Job State: ${status.state}`);Generate Credentials
Set permission scopes and copy your cryptographically signed API Token.
Fund Gas & Balance
Load USDC into the telemetry escrow balances to pay node operators per packet.
Trigger Queries
Call standard methods programmatically. Consensuses are verified in real-time.
Settle high-frequency feeds on Arc Chain
Sign in with your browser wallet, deposit USDC to the Gateway Escrow account, and start spawning telemetry consensus swarms today.
Discover More of the Axiom Ecosystem
Jump to related tools, guides, and portal endpoints designed to accelerate your data integration loops.
Quick Start Guide
Integrate verified telemetry feeds in less than 5 minutes using our clean client libraries.
View TutorialActive Swarms Console
Monitor node consensus agreements, telemetry packet limits, and escrow ledger balances in real-time.
Launch ConsoleContract Deployer
Deploy consensus and telemetry escrow contracts on the Arc Testnet using our sponsored dashboard tool.
Deploy Contracts