Akash Network API Keys API

The API Keys API from Akash Network — 2 operation(s) for api keys.

Operations 5

GET /v1/api-keys List all API keys #
POST /v1/api-keys Create new API key
GET /v1/api-keys/{id} Get API key by ID
PATCH /v1/api-keys/{id} Update API key
DELETE /v1/api-keys/{id} Delete API key

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-api-keys-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-api-keys-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AKASH - gRPC Gateway docs Addresses API Keys API
  description: A REST interface for state queries
  version: 1.0.0
servers:
- url: https://console-api.akash.network/
tags:
- name: API Keys
paths:
  /v1/api-keys:
    get:
      summary: List all API keys
      operationId: listApiKeys
      tags:
      - API Keys
      security:
      - BearerAuth: []
      - ApiKeyAuth: []
      responses:
        '200':
          description: Returns list of API keys
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        name:
                          type: string
                        expiresAt:
                          type:
                          - string
                          - 'null'
                          format: date-time
                        createdAt:
                          type: string
                          format: date-time
                        updatedAt:
                          type: string
                          format: date-time
                        lastUsedAt:
                          type:
                          - string
                          - 'null'
                          format: date-time
                        keyFormat:
                          type: string
                      required:
                      - id
                      - name
                      - expiresAt
                      - createdAt
                      - updatedAt
                      - lastUsedAt
                      - keyFormat
                required:
                - data
    post:
      summary: Create new API key
      tags:
      - API Keys
      security:
      - BearerAuth: []
      - ApiKeyAuth: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                data:
                  type: object
                  properties:
                    name:
                      type: string
                    expiresAt:
                      type: string
                      format: date-time
                  required:
                  - name
              required:
              - data
      responses:
        '201':
          description: API key created successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                      name:
                        type: string
                      expiresAt:
                        type:
                        - string
                        - 'null'
                        format: date-time
                      createdAt:
                        type: string
                        format: date-time
                      updatedAt:
                        type: string
                        format: date-time
                      lastUsedAt:
                        type:
                        - string
                        - 'null'
                        format: date-time
                      keyFormat:
                        type: string
                      apiKey:
                        type: string
                    required:
                    - id
                    - name
                    - expiresAt
                    - createdAt
                    - updatedAt
                    - lastUsedAt
                    - keyFormat
                    - apiKey
                required:
                - data
  /v1/api-keys/{id}:
    get:
      summary: Get API key by ID
      tags:
      - API Keys
      security:
      - BearerAuth: []
      - ApiKeyAuth: []
      parameters:
      - schema:
          type: string
          format: uuid
        required: true
        name: id
        in: path
      responses:
        '200':
          description: Returns API key details
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                      name:
                        type: string
                      expiresAt:
                        type:
                        - string
                        - 'null'
                        format: date-time
                      createdAt:
                        type: string
                        format: date-time
                      updatedAt:
                        type: string
                        format: date-time
                      lastUsedAt:
                        type:
                        - string
                        - 'null'
                        format: date-time
                      keyFormat:
                        type: string
                    required:
                    - id
                    - name
                    - expiresAt
                    - createdAt
                    - updatedAt
                    - lastUsedAt
                    - keyFormat
                required:
                - data
        '404':
          description: API key not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                required:
                - message
    patch:
      summary: Update API key
      tags:
      - API Keys
      security:
      - BearerAuth: []
      - ApiKeyAuth: []
      parameters:
      - schema:
          type: string
          format: uuid
        required: true
        name: id
        in: path
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                data:
                  type: object
                  properties:
                    name:
                      type: string
              required:
              - data
      responses:
        '200':
          description: API key updated successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                      name:
                        type: string
                      expiresAt:
                        type:
                        - string
                        - 'null'
                        format: date-time
                      createdAt:
                        type: string
                        format: date-time
                      updatedAt:
                        type: string
                        format: date-time
                      lastUsedAt:
                        type:
                        - string
                        - 'null'
                        format: date-time
                      keyFormat:
                        type: string
                    required:
                    - id
                    - name
                    - expiresAt
                    - createdAt
                    - updatedAt
                    - lastUsedAt
                    - keyFormat
                required:
                - data
        '404':
          description: API key not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                required:
                - message
    delete:
      summary: Delete API key
      tags:
      - API Keys
      security:
      - BearerAuth: []
      - ApiKeyAuth: []
      parameters:
      - schema:
          type: string
          format: uuid
        required: true
        name: id
        in: path
      responses:
        '204':
          description: API key deleted successfully
        '404':
          description: API key not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                required:
                - message
components:
  securitySchemes:
    kms:
      type: http
      scheme: basic