API · /movement-api

Movement Network API

healthy 3,021 Subscribers

Live on-chain data for Movement Network (chain-id 126), a Move-based Layer 2 with an Aptos-compatible REST interface and the MOVE token. Read the ledger status — chain id, current epoch, ledger version, block height, ledger timestamp and node role — fetch any block by height (or the latest) with its hash, timestamp and first and last transaction versions, stream the most recent transactions with their version, hash, type, success flag, sender, gas used and VM status, and look up any account with its sequence number, authentication key and on-chain resource count. Addresses use the standard 0x hex form (for example 0x1, the Move framework account). A short protective cache keeps responses fast while staying within a few seconds of the chain. Distinct from other Layer-1 and Cosmos-chain APIs on the marketplace: this surfaces the Movement Network Move L2 specifically.

api.oanor.com/movement-api
Get an API key Try in playground → Contact provider

Machine-readable spec so AI agents can integrate this API.

/api/movement-api/openapi.json
/api/movement-api/llms.txt

Discovery: GET /api/index.json lists every API.

API health

healthy
Uptime
100.00%
Server probes · 24h
Avg latency
350 ms
Server probes · 24h
Subscribers
3,021
active
Total calls
5
last 7 days
status Full status page → · 10 probes/24h

Pricing

Pick a tier — billed monthly, cancel anytime.

Free

Free

  • 1,580 calls / month
  • 2 requests / second
  • Hard cap (429 above quota, no overage)
  • 1,580 calls/month
  • 2 req/sec
  • All endpoints
  • No credit card
Sign in to subscribe

Basic

€11.90 /month

  • 46,900 calls / month
  • 6 requests / second
  • Hard cap (429 above quota, no overage)
  • 46,900 calls/month
  • 6 req/sec
  • All endpoints
  • Email support
Sign in to subscribe

Pro

€32.60 /month

  • 192,000 calls / month
  • 18 requests / second
  • Hard cap (429 above quota, no overage)
  • 192,000 calls/month
  • 18 req/sec
  • Priority support
Sign in to subscribe

Scale

€73.20 /month

  • 814,000 calls / month
  • 45 requests / second
  • Hard cap (429 above quota, no overage)
  • 814,000 calls/month
  • 45 req/sec
  • Dedicated SLA
Sign in to subscribe

Built by

Related APIs

Other APIs with overlapping tags.

Sui Network & Epoch API

Read Sui's network state live from a public Sui fullnode JSON-RPC endpoint — no key. Sui is a high-throughput, object-centric Move Layer 1; its ledger advances in checkpoints (its block equivalent) and reconfigures each epoch. The Sui on-chain reader resolves owned objects and the validator reader surfaces the validator set, but neither exposes the latest checkpoint, the epoch-level network economics, or a coin type's metadata. This opens that. Read the latest checkpoint with its epoch, sequence number, digest, lifetime network transaction count and rolling gas-cost summary (computation and storage costs in SUI); read the current epoch's economics — reference gas price, total stake in SUI, active validator count, storage-fund balances and protocol version; and resolve any Move coin type (e.g. 0x2::sui::SUI) to its on-chain metadata — decimals, name, symbol, description and icon. The network / epoch / coin-metadata layer for Sui explorers, wallets, fee estimators and analytics. Distinct from the Sui on-chain object reader, the validator reader and the Move-module reader. Live from RPC; short cache only.

api.oanor.com/suinetwork-api

Aptos Token & NFT API

Browse the Aptos token universe live from the official public Aptos Indexer GraphQL — no key. The Aptos on-chain reader resolves a single address's state from the fullnode, but it cannot browse the fungible-asset universe, rank tokens by supply, browse NFT collections, or list who holds a token. This opens that, on top of the Indexer. Discover and rank Aptos fungible assets (the FA / coin standard) with their asset type, name, symbol, decimals, decimal-adjusted supply, token standard and creator; browse NFT collections ranked by current supply with their creator, max supply and metadata uri; and list the holders of any fungible asset with their decimal-adjusted balances, largest first. The discovery, NFT and distribution layer for Aptos wallets, token explorers, NFT marketplaces and analytics. Distinct from the Aptos on-chain reader (per-address account state), the validator reader and the Move view-function reader. Live from the indexer; short cache only.

api.oanor.com/aptostokens-api

Aptos View API

Execute read-only Move view functions on Aptos, live, via the official public Aptos fullnode REST API — no key. This is Aptos's equivalent of an eth_call: run any #[view] function against the current chain state and get its return value, without a transaction, gas or a signer. Call a function by its fully-qualified name (like 0x1::coin::balance) with type and value arguments, or use the convenience endpoints for any account's coin balance and a coin's total supply. Read any on-chain state a contract exposes — balances, configuration, prices, registry lookups, DeFi pool reserves — straight from the source. The on-chain read layer every Aptos wallet, dashboard, trading bot and indexer needs. Live from the chain; short cache only.

api.oanor.com/aptosview-api

Sui Modules API

Inspect the Move smart-contract code published in any Sui package, live from a public Sui fullnode JSON-RPC — no key. Sui contracts are published as packages of Move modules; this reads their normalized ABI: list every module in a package, read a module's exposed functions (visibility, entry flag, type parameters with their abilities, parameter and return type tags) and struct definitions, or drill straight into a single function's signature. Unlike object- and coin-readers, this exposes the callable interface itself — exactly what a Sui package lets you do — the layer Sui wallets, explorers, programmable-transaction-block builders and SDK and binding generators need before they can construct a transaction. Reads straight from the chain; live, short cache only.

api.oanor.com/suimodules-api

Frequently asked questions

Quick answers about pricing, quotas, and integration.

How do I get an API key for Movement Network API?
Sign up for free at oanor.com, generate an API key from the developer dashboard, and call Movement Network API with the x-oanor-key header. No credit card needed for the free tier.
What's the rate limit for Movement Network API?
Free tier allows 1 request per second. Paid plans scale up to 50 requests per second on the Mega tier. Hard limits return HTTP 429 above the quota — no surprise overage charges.
How much does Movement Network API cost?
Movement Network API has a free tier with 100 calls / month. Paid plans start at €11.90 / month with higher quotas and faster rate limits.
Can I cancel my subscription anytime?
Yes. Plans are billed monthly and you can cancel anytime from your billing dashboard. No long-term contracts and no cancellation fee.
Is Movement Network API GDPR-compliant?
All requests to Movement Network API go through our EU-based gateway. Your upstream API key never leaves our server and no personal data is shared with the upstream provider beyond the request you send.

Pick an endpoint from the list on the left to see its details and try it.

Code snippets

Sign up to get an API key, then call any path under your slug.

curl https://api.oanor.com/movement-api/SOME_PATH \
  -H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/movement-api/SOME_PATH", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/movement-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
    "https://api.oanor.com/movement-api/SOME_PATH",
    headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())

Ratings

Sign in to rate.

No reviews yet.

Discussion

Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.

Sign in to start a thread or reply.

Sign in

New thread

/ 4000

📌 Pinned 🔒 Locked

·

· ·

/ 4000

🔒 This thread is locked — no new replies.

  • No threads yet — start the discussion.

Support

Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.

Sign in to open a support ticket.

Sign in

Open new ticket

Describe what you need help with. The provider team gets an email and replies on the ticket page.

  • No tickets yet for this API.

Subscription active — calls can start immediately.

Send your first request —

Subscription active — copy a snippet and fire off your first call.