Arweave Wallets API

Endpoints for querying wallet balances and transaction history

Operations 2

GET /wallet/{address}/balance Get wallet balance #
GET /wallet/{address}/last_tx Get last transaction for wallet #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/arweave-wallets-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

arweave-wallets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Arweave HTTP Node Wallets API
  description: 'The core Arweave node REST API for submitting and retrieving transactions, uploading data chunks, querying wallet balances, fetching blocks, and inspecting network state. Requests target any Arweave node on port 1984 (default gateway arweave.net). Amounts are denominated in winstons (1 AR = 10^12 winstons).

    '
  version: 1.0.0
  contact:
    name: Arweave Team
    url: https://www.arweave.org/
    email: team@arweave.org
  termsOfService: https://www.arweave.org/legal/terms-of-use
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
servers:
- url: https://arweave.net
  description: Arweave public gateway
- url: http://localhost:1984
  description: Local Arweave node (default port 1984)
tags:
- name: Wallets
  description: Endpoints for querying wallet balances and transaction history
paths:
  /wallet/{address}/balance:
    get:
      operationId: getWalletBalance
      summary: Get wallet balance
      description: 'Retrieve the AR balance of a wallet address in winstons. Unknown addresses return 0. Convert to AR by dividing by 10^12.

        '
      tags:
      - Wallets
      parameters:
      - $ref: '#/components/parameters/WalletAddress'
      responses:
        '200':
          description: Balance in winstons returned as numeric string
          content:
            text/plain:
              schema:
                type: string
              example: '6450000000000'
        '400':
          description: Invalid wallet address
  /wallet/{address}/last_tx:
    get:
      operationId: getWalletLastTransaction
      summary: Get last transaction for wallet
      description: 'Returns the transaction ID of the most recent outgoing transaction from the given wallet address. Used to populate the last_tx field when constructing new transactions.

        '
      tags:
      - Wallets
      parameters:
      - $ref: '#/components/parameters/WalletAddress'
      responses:
        '200':
          description: Last transaction ID returned
          content:
            text/plain:
              schema:
                type: string
              example: BNttzDav3jHVnNiV7noWn2KgamiO1m_yI4vI1JcmHco
        '400':
          description: Invalid wallet address
components:
  parameters:
    WalletAddress:
      name: address
      in: path
      required: true
      description: Wallet address (Base64URL encoded SHA-256 of RSA public key modulus)
      schema:
        type: string
externalDocs:
  description: Arweave HTTP API Documentation
  url: https://docs.arweave.org/developers/arweave-node-server/http-api