Akash Network Alert API

The Alert API from Akash Network — 2 operation(s) for alert.

Operations 5

POST /v1/alerts #
GET /v1/alerts #
GET /v1/alerts/{id} #
PATCH /v1/alerts/{id} #
DELETE /v1/alerts/{id} #

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-alert-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-alert-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AKASH - gRPC Gateway docs Addresses Alert API
  description: A REST interface for state queries
  version: 1.0.0
servers:
- url: https://console-api.akash.network/
tags:
- name: Alert
paths:
  /v1/alerts:
    post:
      operationId: createAlert
      parameters:
      - name: Authorization
        in: header
        required: false
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AlertCreateInput'
      responses:
        '201':
          description: Returns the created alert
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AlertOutputResponse'
        '400':
          description: Validation error responded when some request parameters are invalid
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '401':
          description: Unauthorized error responded when the user is not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedErrorResponse'
        '403':
          description: Forbidden error responded when the user is not authorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenErrorResponse'
        '500':
          description: Internal server error, should probably be reported
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      tags:
      - Alert
    get:
      operationId: listAlerts
      parameters:
      - name: limit
        required: false
        in: query
        description: Number of items per page
        schema:
          type: number
      - name: page
        required: false
        in: query
        description: Page number
        schema:
          type: number
      - name: type
        required: false
        in: query
        description: Chain message type, used in conjunction with dseq to filter alerts liked to a specific deployment
        schema:
          type: string
      - name: dseq
        required: false
        in: query
        description: Linked deployment's dseq
        schema:
          type: string
      - name: Authorization
        in: header
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Returns the list of alerts
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AlertListOutputResponse'
        '400':
          description: Validation error responded when some request parameters are invalid
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '401':
          description: Unauthorized error responded when the user is not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedErrorResponse'
        '403':
          description: Forbidden error responded when the user is not authorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenErrorResponse'
        '500':
          description: Internal server error, should probably be reported
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      tags:
      - Alert
  /v1/alerts/{id}:
    get:
      operationId: getAlert
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      - name: Authorization
        in: header
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Returns the requested alert by id
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AlertOutputResponse'
        '400':
          description: Validation error responded when some request parameters are invalid
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '401':
          description: Unauthorized error responded when the user is not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedErrorResponse'
        '403':
          description: Forbidden error responded when the user is not authorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenErrorResponse'
        '500':
          description: Internal server error, should probably be reported
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      tags:
      - Alert
    patch:
      operationId: updateAlert
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      - name: Authorization
        in: header
        required: false
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AlertPatchInput'
      responses:
        '200':
          description: Returns the updated alert
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AlertOutputResponse'
        '400':
          description: Validation error responded when some request parameters are invalid
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '401':
          description: Unauthorized error responded when the user is not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedErrorResponse'
        '403':
          description: Forbidden error responded when the user is not authorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenErrorResponse'
        '500':
          description: Internal server error, should probably be reported
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      tags:
      - Alert
    delete:
      operationId: deleteAlert
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      - name: Authorization
        in: header
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Returns the deleted alert
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AlertOutputResponse'
        '400':
          description: Validation error responded when some request parameters are invalid
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '401':
          description: Unauthorized error responded when the user is not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedErrorResponse'
        '403':
          description: Forbidden error responded when the user is not authorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenErrorResponse'
        '500':
          description: Internal server error, should probably be reported
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      tags:
      - Alert
components:
  schemas:
    InternalServerErrorResponse:
      type: object
      properties:
        statusCode:
          type: number
          minimum: 500
          maximum: 500
        message:
          type: string
      required:
      - statusCode
      - message
    ValidationErrorResponse:
      type: object
      properties:
        statusCode:
          type: number
          minimum: 400
          maximum: 400
        message:
          type: string
        errors:
          type: object
          properties:
            issues:
              type: array
              items:
                type: object
                properties: {}
          required:
          - issues
      required:
      - statusCode
      - message
      - errors
    ForbiddenErrorResponse:
      type: object
      properties:
        statusCode:
          type: number
          minimum: 403
          maximum: 403
        message:
          type: string
      required:
      - statusCode
      - message
    AlertListOutputResponse:
      type: object
      properties:
        data:
          type: array
          items:
            oneOf:
            - type: object
              properties:
                notificationChannelId:
                  type: string
                  format: uuid
                name:
                  type: string
                  minLength: 3
                enabled:
                  type: boolean
                summary:
                  type: string
                  minLength: 3
                description:
                  type: string
                  minLength: 3
                id:
                  type: string
                  format: uuid
                userId:
                  type: string
                  format: uuid
                notificationChannelName:
                  type: string
                status:
                  type: string
                createdAt: {}
                updatedAt: {}
                params:
                  type: object
                  properties:
                    dseq:
                      type: string
                      pattern: ^\d+$
                    type:
                      type: string
                    suppressedBySystem:
                      type: boolean
                  required:
                  - dseq
                  - type
                conditions:
                  oneOf:
                  - type: object
                    properties:
                      operator:
                        type: string
                        enum:
                        - and
                      value:
                        type: array
                        minItems: 2
                        items:
                          type: object
                          properties:
                            operator:
                              oneOf:
                              - type: string
                                enum:
                                - eq
                              - type: string
                                enum:
                                - lt
                              - type: string
                                enum:
                                - gt
                              - type: string
                                enum:
                                - lte
                              - type: string
                                enum:
                                - gte
                            field:
                              type: string
                            value:
                              oneOf:
                              - type: string
                              - type: number
                              - type: boolean
                          required:
                          - operator
                          - field
                          - value
                    required:
                    - operator
                    - value
                  - type: object
                    properties:
                      operator:
                        type: string
                        enum:
                        - or
                      value:
                        type: array
                        minItems: 2
                        items:
                          type: object
                          properties:
                            operator:
                              oneOf:
                              - type: string
                                enum:
                                - eq
                              - type: string
                                enum:
                                - lt
                              - type: string
                                enum:
                                - gt
                              - type: string
                                enum:
                                - lte
                              - type: string
                                enum:
                                - gte
                            field:
                              type: string
                            value:
                              oneOf:
                              - type: string
                              - type: number
                              - type: boolean
                          required:
                          - operator
                          - field
                          - value
                    required:
                    - operator
                    - value
                  - type: object
                    properties:
                      operator:
                        oneOf:
                        - type: string
                          enum:
                          - eq
                        - type: string
                          enum:
                          - lt
                        - type: string
                          enum:
                          - gt
                        - type: string
                          enum:
                          - lte
                        - type: string
                          enum:
                          - gte
                      field:
                        type: string
                      value:
                        oneOf:
                        - type: string
                        - type: number
                        - type: boolean
                    required:
                    - operator
                    - field
                    - value
                type:
                  type: string
                  enum:
                  - CHAIN_MESSAGE
              required:
              - notificationChannelId
              - name
              - enabled
              - summary
              - description
              - id
              - userId
              - status
              - createdAt
              - updatedAt
              - conditions
              - type
            - type: object
              properties:
                notificationChannelId:
                  type: string
                  format: uuid
                name:
                  type: string
                  minLength: 3
                enabled:
                  type: boolean
                summary:
                  type: string
                  minLength: 3
                description:
                  type: string
                  minLength: 3
                id:
                  type: string
                  format: uuid
                userId:
                  type: string
                  format: uuid
                notificationChannelName:
                  type: string
                status:
                  type: string
                createdAt: {}
                updatedAt: {}
                params:
                  type: object
                  properties:
                    dseq:
                      type: string
                      pattern: ^\d+$
                    type:
                      type: string
                    suppressedBySystem:
                      type: boolean
                  required:
                  - dseq
                  - type
                conditions:
                  oneOf:
                  - type: object
                    properties:
                      operator:
                        type: string
                        enum:
                        - and
                      value:
                        type: array
                        minItems: 2
                        items:
                          type: object
                          properties:
                            operator:
                              oneOf:
                              - type: string
                                enum:
                                - eq
                              - type: string
                                enum:
                                - lt
                              - type: string
                                enum:
                                - gt
                              - type: string
                                enum:
                                - lte
                              - type: string
                                enum:
                                - gte
                            field:
                              type: string
                            value:
                              oneOf:
                              - type: string
                              - type: number
                              - type: boolean
                          required:
                          - operator
                          - field
                          - value
                    required:
                    - operator
                    - value
                  - type: object
                    properties:
                      operator:
                        type: string
                        enum:
                        - or
                      value:
                        type: array
                        minItems: 2
                        items:
                          type: object
                          properties:
                            operator:
                              oneOf:
                              - type: string
                                enum:
                                - eq
                              - type: string
                                enum:
                                - lt
                              - type: string
                                enum:
                                - gt
                              - type: string
                                enum:
                                - lte
                              - type: string
                                enum:
                                - gte
                            field:
                              type: string
                            value:
                              oneOf:
                              - type: string
                              - type: number
                              - type: boolean
                          required:
                          - operator
                          - field
                          - value
                    required:
                    - operator
                    - value
                  - type: object
                    properties:
                      operator:
                        oneOf:
                        - type: string
                          enum:
                          - eq
                        - type: string
                          enum:
                          - lt
                        - type: string
                          enum:
                          - gt
                        - type: string
                          enum:
                          - lte
                        - type: string
                          enum:
                          - gte
                      field:
                        type: string
                      value:
                        oneOf:
                        - type: string
                        - type: number
                        - type: boolean
                    required:
                    - operator
                    - field
                    - value
                type:
                  type: string
                  enum:
                  - CHAIN_EVENT
              required:
              - notificationChannelId
              - name
              - enabled
              - summary
              - description
              - id
              - userId
              - status
              - createdAt
              - updatedAt
              - conditions
              - type
            - type: object
              properties:
                notificationChannelId:
                  type: string
                  format: uuid
                name:
                  type: string
                  minLength: 3
                enabled:
                  type: boolean
                summary:
                  type: string
                  minLength: 3
                description:
                  type: string
                  minLength: 3
                id:
                  type: string
                  format: uuid
                userId:
                  type: string
                  format: uuid
                notificationChannelName:
                  type: string
                status:
                  type: string
                createdAt: {}
                updatedAt: {}
                type:
                  type: string
                  enum:
                  - DEPLOYMENT_BALANCE
                conditions:
                  oneOf:
                  - type: object
                    properties:
                      operator:
                        type: string
                        enum:
                        - and
                      value:
                        type: array
                        minItems: 2
                        items:
                          type: object
                          properties:
                            operator:
                              oneOf:
                              - type: string
                                enum:
                                - eq
                              - type: string
                                enum:
                                - lt
                              - type: string
                                enum:
                                - gt
                              - type: string
                                enum:
                                - lte
                              - type: string
                                enum:
                                - gte
                            field:
                              type: string
                              enum:
                              - balance
                            value:
                              type: number
                          required:
                          - operator
                          - field
                          - value
                    required:
                    - operator
                    - value
                  - type: object
                    properties:
                      operator:
                        type: string
                        enum:
                        - or
                      value:
                        type: array
                        minItems: 2
                        items:
                          type: object
                          properties:
                            operator:
                              oneOf:
                              - type: string
                                enum:
                                - eq
                              - type: string
                                enum:
                                - lt
                              - type: string
                                enum:
                                - gt
                              - type: string
                                enum:
                                - lte
                              - type: string
                                enum:
                                - gte
                            field:
                              type: string
                              enum:
                              - balance
                            value:
                              type: number
                          required:
                          - operator
                          - field
                          - value
                    required:
                    - operator
                    - value
                  - type: object
                    properties:
                      operator:
                        oneOf:
                        - type: string
                          enum:
                          - eq
                        - type: string
                          enum:
                          - lt
                        - type: string
                          enum:
                          - gt
                        - type: string
                          enum:
                          - lte
                        - type: string
                          enum:
                          - gte
                      field:
                        type: string
                        enum:
                        - balance
                      value:
                        type: number
                    required:
                    - operator
                    - field
                    - value
                params:
                  type: object
                  properties:
                    dseq:
                      type: string
                      pattern: ^\d+$
                    owner:
                      type: string
                    suppressedBySystem:
                      type: boolean
                  required:
                  - dseq
                  - owner
              required:
              - notificationChannelId
              - name
              - enabled
              - summary
              - description
              - id
              - userId
              - status
              - createdAt
              - updatedAt
              - type
              - conditions
              - params
            - type: object
              properties:
                notificationChannelId:
                  type: string
                  format: uuid
                name:
                  type: string
                  minLength: 3
                enabled:
                  type: boolean
                summary:
                  type: string
                  minLength: 3
                description:
                  type: string
                  minLength: 3
                id:
                  type: string
                  format: uuid
                userId:
                  type: string
                  format: uuid
                notificationChannelName:
                  type: string
                status:
                  type: string
                createdAt: {}
                updatedAt: {}
                type:
                  type: string
                  enum:
                  - WALLET_BALANCE
                conditions:
                  oneOf:
                  - type: object
                    properties:
                      operator:
                        type: string
                        enum:
                        - and
                      value:
                        type: array
                        minItems: 2
                        items:
                          type: object
                          properties:
                            operator:
                              oneOf:
                              - type: string
                                enum:
                                - eq
                              - type: string
                                enum:
                                - lt
                              - type: string
                                enum:
                                - gt
                              - type: string
                                enum:
                                - lte
                              - type: string
                                enum:
                                - gte
                            field:
                              type: string
                              enum:
                              - balance
                            value:
                              type: number
                          required:
                          - operator
                          - field
                          - value
                    required:
                    - operator
                    - value
                  - type: object
                    properties:
                      operator:
                        type: string
                        enum:
                        - or
                      value:
                        type: array
                        minItems: 2
                        items:
                          type: object
                          properties:
                            operator:
                              oneOf:
                              - type: string
                                enum:
                                - eq
                              - type: string
                                enum:
                                - lt
                              - type: string
                                enum:
                                - gt
                              - type: string
                                enum:
                                - lte
                              - type: string
                                enum:
                                - gte
                            field:
                              type: string
                              enum:
                              - balance
                            value:
                              type: number
                          required:
                          - operator
                          - field
                          - value
                    required:
                    - operator
                    - value
                  - type: object
                    properties:
                      operator:
                        oneOf:
                        - type: string
                          enum:
                          - eq
                        - type: string
                          enum:
                          - lt
                        - type: string
                          enum:
                          - gt
                        - type: string
                          enum:
                          - lte
                        - type: string
                          enum:
                          - gte
                      field:
                        type: string
                        enum:
                        - balance
                      value:
                        type: number
                    required:
                    - operator
                    - field
                    - value
                params:
                  type: object
                  properties:
                    owner:
                      type: string
                    denom:
                      type: string
                    suppressedBySystem:
                      type: boolean
                  required:
                  - owner
                  - denom
              required:
              - notificationChannelId
              - name
              - enabled
              - summary
              - description
              - id
              - userId
              - status
              - createdAt
          

# --- truncated at 32 KB (82 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/akash/refs/heads/main/openapi/akash-alert-api-openapi.yml