The simple Web3 API

Plain REST for balances, tokens, NFTs, and transactions. No JSON-RPC, no unit math, no chain-specific SDKs.

terminal
$ curl https://api.sarg.am/v1/solana/wallets/9WzD…AWWM/balance

{
  "address": "9WzD…AWWM",
  "lamports": 1529000000,
  "sol": 1.529
}
SolanaSolana DevnetEthereumEthereum Sepolia

One key, every chain

The same REST shapes across Solana and Ethereum. New chains slot in under /v1 without breaking anything.

Human units built in

Every amount comes as raw integer and readable value — lamports and SOL, wei and ETH, token decimals resolved.

Predictable errors

Stable machine-readable error codes with clear messages, plus rate-limit headers on every response.