Aptos Labs Geomi
Geomi is the Aptos Labs developer portal for hosted Node API, Indexer GraphQL, Transaction Stream, gas station, and no-code indexing. Create an account to get API keys, higher rate limits, and usage metrics.
API keys
Section titled “API keys”Anonymous requests to Labs-hosted APIs are allowed with a low per-IP limit. Attach a Geomi API key as a bearer token for higher limits:
curl "https://api.mainnet.aptoslabs.com/v1" \ -H "Authorization: Bearer YOUR_API_KEY"import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";
const aptos = new Aptos( new AptosConfig({ network: Network.MAINNET, clientConfig: { API_KEY: process.env.APTOS_API_KEY }, }),);Server keys (prefix aptoslabs_) stay on a backend. Client keys (prefix AG-) are for browsers, mobile apps, and extensions; configure allowed origins and per-IP limits when you create them. See API keys and Getting started.
What Geomi hosts
Section titled “What Geomi hosts”| Service | Docs |
|---|---|
| Node API, Indexer GraphQL, Transaction Stream | Geomi API reference |
| Rate limits and compute-unit billing | Billing |
| Gas Station | Gas Stations |
| No-code indexing | No-code indexing |
Official network URLs are listed on Aptos APIs and Networks.