Akash Network WalletSetting API

The WalletSetting API from Akash Network — 1 operation(s) for walletsetting.

Operations 4

GET /v1/wallet-settings Get wallet settings
POST /v1/wallet-settings Create wallet settings
PUT /v1/wallet-settings Update wallet settings
DELETE /v1/wallet-settings Delete wallet settings

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-walletsetting-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-walletsetting-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AKASH - gRPC Gateway docs Addresses Wallet Setting API
  description: A REST interface for state queries
  version: 1.0.0
servers:
- url: https://console-api.akash.network/
tags:
- name: WalletSetting
paths:
  /v1/wallet-settings:
    get:
      summary: Get wallet settings
      description: Retrieves the wallet settings for the current user's wallet
      tags:
      - WalletSetting
      security:
      - BearerAuth: []
      - ApiKeyAuth: []
      responses:
        '200':
          description: Wallet settings retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      autoReloadEnabled:
                        type: boolean
                    required:
                    - autoReloadEnabled
                required:
                - data
        '404':
          description: UserWallet Not Found
    post:
      summary: Create wallet settings
      description: Creates wallet settings for a user wallet
      tags:
      - WalletSetting
      security:
      - BearerAuth: []
      - ApiKeyAuth: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                data:
                  type: object
                  properties:
                    autoReloadEnabled:
                      type: boolean
                  required:
                  - autoReloadEnabled
              required:
              - data
      responses:
        '200':
          description: Wallet settings created successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      autoReloadEnabled:
                        type: boolean
                    required:
                    - autoReloadEnabled
                required:
                - data
        '404':
          description: UserWallet Not Found
    put:
      summary: Update wallet settings
      description: Updates wallet settings for a user wallet
      tags:
      - WalletSetting
      security:
      - BearerAuth: []
      - ApiKeyAuth: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                data:
                  type: object
                  properties:
                    autoReloadEnabled:
                      type: boolean
                  required:
                  - autoReloadEnabled
              required:
              - data
      responses:
        '200':
          description: Wallet settings updated successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      autoReloadEnabled:
                        type: boolean
                    required:
                    - autoReloadEnabled
                required:
                - data
        '404':
          description: UserWallet Not Found
    delete:
      summary: Delete wallet settings
      description: Deletes wallet settings for a user wallet
      tags:
      - WalletSetting
      security:
      - BearerAuth: []
      - ApiKeyAuth: []
      responses:
        '204':
          description: Wallet settings deleted successfully
        '404':
          description: UserWallet Not Found
components:
  securitySchemes:
    kms:
      type: http
      scheme: basic