Algorand Wallets API

The Wallets API from Algorand — 1 operation(s) for wallets.

Operations 1

GET /v1/wallets List wallets #

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/algorand-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

algorand-wallets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: API for KMD (Key Management Daemon)
  title: KMD HTTP Wallets API
  contact:
    email: contact@algorand.com
  version: 0.0.1
servers:
- url: http://localhost/
security:
- api_key: []
tags:
- name: Wallets
paths:
  /v1/wallets:
    get:
      description: Lists all of the wallets that kmd is aware of.
      summary: List wallets
      operationId: ListWallets
      responses:
        '200':
          $ref: '#/components/responses/ListWalletsResponse'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ListWalletsRequest'
      tags:
      - Wallets
components:
  schemas:
    ListWalletsRequest:
      description: APIV1GETWalletsRequest is the request for `GET /v1/wallets`
      type: object
      x-go-name: APIV1GETWalletsRequest
      x-go-package: github.com/algorand/go-algorand/daemon/kmd/lib/kmdapi
    TxType:
      description: TxType is the type of the transaction written to the ledger
      type: string
      x-go-package: github.com/algorand/go-algorand/protocol
    APIV1GETWalletsResponse:
      description: 'APIV1GETWalletsResponse is the response to `GET /v1/wallets`

        friendly:ListWalletsResponse'
      type: object
      properties:
        error:
          type: boolean
          x-go-name: Error
        message:
          type: string
          x-go-name: Message
        wallets:
          type: array
          items:
            $ref: '#/components/schemas/APIV1Wallet'
          x-go-name: Wallets
      x-go-package: github.com/algorand/go-algorand/daemon/kmd/lib/kmdapi
    APIV1Wallet:
      description: APIV1Wallet is the API's representation of a wallet
      type: object
      properties:
        driver_name:
          type: string
          x-go-name: DriverName
        driver_version:
          type: integer
          format: uint32
          x-go-name: DriverVersion
        id:
          type: string
          x-go-name: ID
        mnemonic_ux:
          type: boolean
          x-go-name: SupportsMnemonicUX
        name:
          type: string
          x-go-name: Name
        supported_txs:
          type: array
          items:
            $ref: '#/components/schemas/TxType'
          x-go-name: SupportedTransactions
      x-go-package: github.com/algorand/go-algorand/daemon/kmd/lib/kmdapi
  responses:
    ListWalletsResponse:
      description: Response to `GET /v1/wallets`
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/APIV1GETWalletsResponse'
  securitySchemes:
    api_key:
      description: 'Generated header parameter. This value can be found in `/kmd/data/dir/kmd.token`. Example value: ''330b2e4fc9b20f4f89812cf87f1dabeb716d23e3f11aec97a61ff5f750563b78'''
      type: apiKey
      name: X-KMD-API-Token
      in: header
      x-example: 330b2e4fc9b20f4f89812cf87f1dabeb716d23e3f11aec97a61ff5f750563b78