Skip to content

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.

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:

Terminal window
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.

ServiceDocs
Node API, Indexer GraphQL, Transaction StreamGeomi API reference
Rate limits and compute-unit billingBilling
Gas StationGas Stations
No-code indexingNo-code indexing

Official network URLs are listed on Aptos APIs and Networks.