Aptos runs Move contracts with parallel execution and sub-second finality. Get a dedicated fullnode REST endpoint that keeps up with your indexer or app.
Drop this URL into your RPC client, HTTP library or wallet config. No SDK install required.
https://endpoints.boltrpc.io/rpc/YOUR_API_KEY/aptosReplace YOUR_API_KEY with your API key. Get a free key →
Copy-paste examples for the libraries you already use. Swap the API key, hit run.
import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";
const config = new AptosConfig({
network: Network.MAINNET,
fullnode: "https://endpoints.boltrpc.io/rpc/YOUR_API_KEY/aptos/v1",
});
const aptos = new Aptos(config);
const info = await aptos.getLedgerInfo();
console.log("Ledger version:", info.ledger_version);Connect your dApp, bot, or indexer to Aptos Mainnet with BoltRPC. Aptos is the Move-language L1 with parallel transaction execution, and predictable request-unit pricing keeps your API costs flat while the chain processes transactions faster than most infrastructures can serve them.
| Protocol | Move-based Layer 1 (fullnode REST API) |
| Execution | Parallel (Block-STM) |
| Finality | Sub-second |
| Gas token | APT |
| Smart contracts | Move |
| EVM compatible | No (Move VM, REST API) |
Aptos is a from-scratch Layer 1 built by the team behind Meta’s Diem project. Its differentiators are the Move language, a resource-oriented contract language designed for asset safety, and Block-STM, a parallel execution engine that processes independent transactions concurrently instead of single-file. The result is a chain built for consumer-scale throughput with sub-second finality, which has attracted DeFi, gaming and payments teams building for volume. Unlike EVM chains, Aptos exposes a REST API rather than JSON-RPC: clients fetch accounts, resources, blocks and transactions over HTTP paths, and the official TypeScript and Python SDKs wrap those routes. High-throughput chains punish slow infrastructure twice: more state to follow and less time before it changes. Exactly the case for a dedicated endpoint.
Indexers and analytics pipelines Following a high-throughput ledger means sustained, continuous reads of blocks and transactions. A dedicated endpoint without per-IP limits is the difference between keeping up and falling behind.
DeFi backends Lending markets and DEXes on Aptos read Move resources (balances, positions, pool state) on short intervals, the same read-heavy pattern as EVM DeFi with REST semantics.
Payments and consumer apps
Sub-second finality makes Aptos attractive for payment flows. Backends confirm transactions by polling GET /v1/transactions/by_hash; that latency is user-visible checkout time.
Gaming and high-volume mints Games and NFT platforms generate bursts of submissions and reads. Fixed request-unit pricing keeps burst days predictable on the invoice.
Parallel execution means Aptos state changes fast and in volume. Indexers and apps that follow the ledger poll continuously; a dedicated endpoint sustains that read rate without the throttling shared public fullnodes apply.
Every Aptos route has a fixed, published request-unit weight, the same transparent pricing model as our JSON-RPC chains. One invoice logic across your whole multichain stack.
Payment and trading flows on Aptos confirm in under a second on-chain. Polling a slow API adds seconds back; BoltRPC's gateway round-trip is measured continuously against our own nodes.
BoltRPC serves Aptos alongside Sui, the other major Move chain, plus Ethereum, Solana and 20+ other networks behind one dashboard and one key pattern.
Our node operator (Matrixed.Link, ISO/IEC 27001:2022 certified) tracks Aptos releases and network upgrades, so version bumps never become your incident.
Every standard Aptos method you would expect. Archive-only methods are available on request for qualifying plans.
GET /v1GET /v1/accounts/{address}GET /v1/accounts/{address}/resourcesGET /v1/blocks/by_height/{height}GET /v1/transactions/by_hash/{hash}POST /v1/transactionsPOST /v1/viewCommon questions about connecting to Aptos over BoltRPC.
An API key in under 60 seconds, Aptos plus 34 other chains, and a team that answers when you write.