Akash Network Wallet API

The Wallet API from Akash Network — 4 operation(s) for wallet.

Operations 4

POST /v1/start-trial Start a trial period for a user
GET /v1/wallets Get a list of wallets
POST /v1/tx Signs a transaction via a user managed wallet
GET /v1/balances Get user balances

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/akash-wallet-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

akash-wallet-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AKASH - gRPC Gateway docs Addresses Wallet API
  description: A REST interface for state queries
  version: 1.0.0
servers:
- url: https://console-api.akash.network/
tags:
- name: Wallet
paths:
  /v1/start-trial:
    post:
      summary: Start a trial period for a user
      description: Creates a managed wallet for a user and initiates a trial period. This endpoint handles payment method validation and may require 3D Secure authentication for certain payment methods. Returns wallet information and trial status.
      tags:
      - Wallet
      security: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                data:
                  type: object
                  properties:
                    userId:
                      type: string
                  required:
                  - userId
              required:
              - data
      responses:
        '200':
          description: Trial started successfully and wallet created
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      id:
                        type:
                        - number
                        - 'null'
                      userId:
                        type:
                        - string
                        - 'null'
                      creditAmount:
                        type: number
                      address:
                        type:
                        - string
                        - 'null'
                      denom:
                        type: string
                      isTrialing:
                        type: boolean
                      createdAt:
                        type:
                        - string
                        - 'null'
                      requires3DS:
                        type: boolean
                      clientSecret:
                        type:
                        - string
                        - 'null'
                      paymentIntentId:
                        type:
                        - string
                        - 'null'
                      paymentMethodId:
                        type:
                        - string
                        - 'null'
                    required:
                    - id
                    - userId
                    - creditAmount
                    - address
                    - denom
                    - isTrialing
                    - createdAt
                    additionalProperties: false
                required:
                - data
        '202':
          description: 3D Secure authentication required to complete trial setup
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      id:
                        type:
                        - number
                        - 'null'
                      userId:
                        type:
                        - string
                        - 'null'
                      creditAmount:
                        type: number
                      address:
                        type:
                        - string
                        - 'null'
                      denom:
                        type: string
                      isTrialing:
                        type: boolean
                      createdAt:
                        type:
                        - string
                        - 'null'
                      requires3DS:
                        type: boolean
                      clientSecret:
                        type:
                        - string
                        - 'null'
                      paymentIntentId:
                        type:
                        - string
                        - 'null'
                      paymentMethodId:
                        type:
                        - string
                        - 'null'
                    required:
                    - id
                    - userId
                    - creditAmount
                    - address
                    - denom
                    - isTrialing
                    - createdAt
                    additionalProperties: false
                required:
                - data
  /v1/wallets:
    get:
      summary: Get a list of wallets
      tags:
      - Wallet
      security:
      - BearerAuth: []
      - ApiKeyAuth: []
      parameters:
      - schema:
          type: string
          format: uuid
        required: true
        description: The ID of the user to get the wallets for
        name: userId
        in: query
      responses:
        '200':
          description: Returns a created wallet
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type:
                          - number
                          - 'null'
                        userId:
                          type:
                          - string
                          - 'null'
                        creditAmount:
                          type: number
                        address:
                          type:
                          - string
                          - 'null'
                        denom:
                          type: string
                        isTrialing:
                          type: boolean
                        createdAt:
                          type:
                          - string
                          - 'null'
                        requires3DS:
                          type: boolean
                        clientSecret:
                          type:
                          - string
                          - 'null'
                        paymentIntentId:
                          type:
                          - string
                          - 'null'
                        paymentMethodId:
                          type:
                          - string
                          - 'null'
                      required:
                      - id
                      - userId
                      - creditAmount
                      - address
                      - denom
                      - isTrialing
                      - createdAt
                required:
                - data
  /v1/tx:
    post:
      summary: Signs a transaction via a user managed wallet
      tags:
      - Wallet
      security:
      - BearerAuth: []
      - ApiKeyAuth: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                data:
                  type: object
                  properties:
                    userId:
                      type: string
                    messages:
                      type: array
                      items:
                        type: object
                        properties:
                          typeUrl:
                            type: string
                            enum:
                            - /akash.deployment.v1beta4.MsgCreateDeployment
                            - /akash.cert.v1.MsgCreateCertificate
                            - /akash.market.v1beta5.MsgCreateLease
                            - /akash.deployment.v1beta4.MsgUpdateDeployment
                            - /akash.deployment.v1beta4.MsgCloseDeployment
                            - /akash.escrow.v1.MsgAccountDeposit
                          value:
                            type: string
                        required:
                        - typeUrl
                        - value
                      minItems: 1
                  required:
                  - userId
                  - messages
              required:
              - data
      responses:
        '200':
          description: Returns a signed transaction
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      code:
                        type: number
                      transactionHash:
                        type: string
                      rawLog:
                        type: string
                    required:
                    - code
                    - transactionHash
                    - rawLog
                required:
                - data
  /v1/balances:
    get:
      summary: Get user balances
      tags:
      - Wallet
      security: []
      parameters:
      - schema:
          type: string
          description: Optional wallet address to fetch balances for instead of the current user
        required: false
        description: Optional wallet address to fetch balances for instead of the current user
        name: address
        in: query
      responses:
        '200':
          description: Returns user balances
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      balance:
                        type: number
                      deployments:
                        type: number
                      total:
                        type: number
                    required:
                    - balance
                    - deployments
                    - total
                required:
                - data
components:
  securitySchemes:
    kms:
      type: http
      scheme: basic