Akash Network Bids API

The Bids API from Akash Network — 2 operation(s) for bids.

Operations 2

GET /v1/bids List bids #
GET /v1/bids/{dseq} List bids by dseq

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-bids-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-bids-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AKASH - gRPC Gateway docs Addresses Bids API
  description: A REST interface for state queries
  version: 1.0.0
servers:
- url: https://console-api.akash.network/
tags:
- name: Bids
paths:
  /v1/bids:
    get:
      summary: List bids
      operationId: listBids
      tags:
      - Bids
      security:
      - BearerAuth: []
      - ApiKeyAuth: []
      parameters:
      - schema:
          type: string
          pattern: ^d+$
        required: true
        name: dseq
        in: query
      responses:
        '200':
          description: List of bids
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        bid:
                          type: object
                          properties:
                            id:
                              type: object
                              properties:
                                owner:
                                  type: string
                                dseq:
                                  type: string
                                  pattern: ^d+$
                                gseq:
                                  type: number
                                oseq:
                                  type: number
                                provider:
                                  type: string
                                bseq:
                                  type: number
                              required:
                              - owner
                              - dseq
                              - gseq
                              - oseq
                              - provider
                              - bseq
                            state:
                              type: string
                            price:
                              type: object
                              properties:
                                denom:
                                  type: string
                                amount:
                                  type: string
                              required:
                              - denom
                              - amount
                            created_at:
                              type: string
                            resources_offer:
                              type: array
                              items:
                                type: object
                                properties:
                                  resources:
                                    type: object
                                    properties:
                                      cpu:
                                        type: object
                                        properties:
                                          units:
                                            type: object
                                            properties:
                                              val:
                                                type: string
                                            required:
                                            - val
                                          attributes:
                                            type: array
                                            items:
                                              type: object
                                              properties:
                                                key:
                                                  type: string
                                                value:
                                                  type: string
                                              required:
                                              - key
                                              - value
                                        required:
                                        - units
                                        - attributes
                                      gpu:
                                        type: object
                                        properties:
                                          units:
                                            type: object
                                            properties:
                                              val:
                                                type: string
                                            required:
                                            - val
                                          attributes:
                                            type: array
                                            items:
                                              type: object
                                              properties:
                                                key:
                                                  type: string
                                                value:
                                                  type: string
                                              required:
                                              - key
                                              - value
                                        required:
                                        - units
                                        - attributes
                                      memory:
                                        type: object
                                        properties:
                                          quantity:
                                            type: object
                                            properties:
                                              val:
                                                type: string
                                            required:
                                            - val
                                          attributes:
                                            type: array
                                            items:
                                              type: object
                                              properties:
                                                key:
                                                  type: string
                                                value:
                                                  type: string
                                              required:
                                              - key
                                              - value
                                        required:
                                        - quantity
                                        - attributes
                                      storage:
                                        type: array
                                        items:
                                          type: object
                                          properties:
                                            name:
                                              type: string
                                            quantity:
                                              type: object
                                              properties:
                                                val:
                                                  type: string
                                              required:
                                              - val
                                            attributes:
                                              type: array
                                              items:
                                                type: object
                                                properties:
                                                  key:
                                                    type: string
                                                  value:
                                                    type: string
                                                required:
                                                - key
                                                - value
                                          required:
                                          - name
                                          - quantity
                                          - attributes
                                      endpoints:
                                        type: array
                                        items:
                                          type: object
                                          properties:
                                            kind:
                                              type: string
                                            sequence_number:
                                              type: number
                                          required:
                                          - kind
                                          - sequence_number
                                    required:
                                    - cpu
                                    - gpu
                                    - memory
                                    - storage
                                    - endpoints
                                  count:
                                    type: number
                                required:
                                - resources
                                - count
                          required:
                          - id
                          - state
                          - price
                          - created_at
                          - resources_offer
                        escrow_account:
                          type: object
                          properties:
                            id:
                              type: object
                              properties:
                                scope:
                                  type: string
                                xid:
                                  type: string
                              required:
                              - scope
                              - xid
                            state:
                              type: object
                              properties:
                                owner:
                                  type: string
                                state:
                                  type: string
                                transferred:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      denom:
                                        type: string
                                      amount:
                                        type: string
                                    required:
                                    - denom
                                    - amount
                                settled_at:
                                  type: string
                                funds:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      denom:
                                        type: string
                                      amount:
                                        type: string
                                    required:
                                    - denom
                                    - amount
                                deposits:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      owner:
                                        type: string
                                      height:
                                        type: string
                                      source:
                                        type: string
                                      balance:
                                        type: object
                                        properties:
                                          denom:
                                            type: string
                                          amount:
                                            type: string
                                        required:
                                        - denom
                                        - amount
                                    required:
                                    - owner
                                    - height
                                    - source
                                    - balance
                              required:
                              - owner
                              - state
                              - transferred
                              - settled_at
                              - funds
                              - deposits
                          required:
                          - id
                          - state
                      required:
                      - bid
                      - escrow_account
                required:
                - data
  /v1/bids/{dseq}:
    get:
      summary: List bids by dseq
      tags:
      - Bids
      security:
      - BearerAuth: []
      - ApiKeyAuth: []
      parameters:
      - schema:
          type: string
          pattern: ^d+$
        required: true
        name: dseq
        in: path
      responses:
        '200':
          description: List of bids
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        bid:
                          type: object
                          properties:
                            id:
                              type: object
                              properties:
                                owner:
                                  type: string
                                dseq:
                                  type: string
                                  pattern: ^d+$
                                gseq:
                                  type: number
                                oseq:
                                  type: number
                                provider:
                                  type: string
                                bseq:
                                  type: number
                              required:
                              - owner
                              - dseq
                              - gseq
                              - oseq
                              - provider
                              - bseq
                            state:
                              type: string
                            price:
                              type: object
                              properties:
                                denom:
                                  type: string
                                amount:
                                  type: string
                              required:
                              - denom
                              - amount
                            created_at:
                              type: string
                            resources_offer:
                              type: array
                              items:
                                type: object
                                properties:
                                  resources:
                                    type: object
                                    properties:
                                      cpu:
                                        type: object
                                        properties:
                                          units:
                                            type: object
                                            properties:
                                              val:
                                                type: string
                                            required:
                                            - val
                                          attributes:
                                            type: array
                                            items:
                                              type: object
                                              properties:
                                                key:
                                                  type: string
                                                value:
                                                  type: string
                                              required:
                                              - key
                                              - value
                                        required:
                                        - units
                                        - attributes
                                      gpu:
                                        type: object
                                        properties:
                                          units:
                                            type: object
                                            properties:
                                              val:
                                                type: string
                                            required:
                                            - val
                                          attributes:
                                            type: array
                                            items:
                                              type: object
                                              properties:
                                                key:
                                                  type: string
                                                value:
                                                  type: string
                                              required:
                                              - key
                                              - value
                                        required:
                                        - units
                                        - attributes
                                      memory:
                                        type: object
                                        properties:
                                          quantity:
                                            type: object
                                            properties:
                                              val:
                                                type: string
                                            required:
                                            - val
                                          attributes:
                                            type: array
                                            items:
                                              type: object
                                              properties:
                                                key:
                                                  type: string
                                                value:
                                                  type: string
                                              required:
                                              - key
                                              - value
                                        required:
                                        - quantity
                                        - attributes
                                      storage:
                                        type: array
                                        items:
                                          type: object
                                          properties:
                                            name:
                                              type: string
                                            quantity:
                                              type: object
                                              properties:
                                                val:
                                                  type: string
                                              required:
                                              - val
                                            attributes:
                                              type: array
                                              items:
                                                type: object
                                                properties:
                                                  key:
                                                    type: string
                                                  value:
                                                    type: string
                                                required:
                                                - key
                                                - value
                                          required:
                                          - name
                                          - quantity
                                          - attributes
                                      endpoints:
                                        type: array
                                        items:
                                          type: object
                                          properties:
                                            kind:
                                              type: string
                                            sequence_number:
                                              type: number
                                          required:
                                          - kind
                                          - sequence_number
                                    required:
                                    - cpu
                                    - gpu
                                    - memory
                                    - storage
                                    - endpoints
                                  count:
                                    type: number
                                required:
                                - resources
                                - count
                          required:
                          - id
                          - state
                          - price
                          - created_at
                          - resources_offer
                        escrow_account:
                          type: object
                          properties:
                            id:
                              type: object
                              properties:
                                scope:
                                  type: string
                                xid:
                                  type: string
                              required:
                              - scope
                              - xid
                            state:
                              type: object
                              properties:
                                owner:
                                  type: string
                                state:
                                  type: string
                                transferred:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      denom:
                                        type: string
                                      amount:
                                        type: string
                                    required:
                                    - denom
                                    - amount
                                settled_at:
                                  type: string
                                funds:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      denom:
                                        type: string
                                      amount:
                                        type: string
                                    required:
                                    - denom
                                    - amount
                                deposits:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      owner:
                                        type: string
                                      height:
                                        type: string
                                      source:
                                        type: string
                                      balance:
                                        type: object
                                        properties:
                                          denom:
                                            type: string
                                          amount:
                                            type: string
                                        required:
                                        - denom
                                        - amount
                                    required:
                                    - owner
                                    - height
                                    - source
                                    - balance
                              required:
                              - owner
                              - state
                              - transferred
                              - settled_at
                              - funds
                              - deposits
                          required:
                          - id
                          - state
                      required:
                      - bid
                      - escrow_account
                required:
                - data
components:
  securitySchemes:
    kms:
      type: http
      scheme: basic