Akash Network DeploymentAlert API
The DeploymentAlert API from Akash Network — 1 operation(s) for deploymentalert.
The DeploymentAlert API from Akash Network — 1 operation(s) for deploymentalert.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/akash-deploymentalert-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: AKASH - gRPC Gateway docs Addresses Deployment Alert API
description: A REST interface for state queries
version: 1.0.0
servers:
- url: https://console-api.akash.network/
tags:
- name: DeploymentAlert
paths:
/v1/deployment-alerts/{dseq}:
post:
operationId: upsertDeploymentAlert
parameters:
- name: dseq
required: true
in: path
schema:
type: string
- name: x-owner-address
required: false
in: header
description: The address of the user who owns the deployment
schema:
type: string
- name: Authorization
in: header
required: false
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/DeploymentAlertCreateInput'
responses:
'201':
description: Returns the created alert
content:
application/json:
schema:
$ref: '#/components/schemas/DeploymentAlertsResponse'
'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:
- DeploymentAlert
get:
operationId: listDeploymentAlerts
parameters:
- name: dseq
required: true
in: path
schema:
type: string
- name: Authorization
in: header
required: false
schema:
type: string
responses:
'200':
description: Returns alerts for the specified deployment
content:
application/json:
schema:
$ref: '#/components/schemas/DeploymentAlertsResponse'
'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:
- DeploymentAlert
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
DeploymentAlertsResponse:
type: object
properties:
data:
type: object
properties:
dseq:
type: string
owner:
type: string
alerts:
type: object
properties:
deploymentBalance:
type: object
properties:
notificationChannelId:
type: string
format: uuid
enabled:
type: boolean
default: true
threshold:
type: number
minimum: 0
id:
type: string
format: uuid
status:
type: string
suppressedBySystem:
type: boolean
required:
- notificationChannelId
- threshold
- id
- status
deploymentClosed:
type: object
properties:
notificationChannelId:
type: string
format: uuid
enabled:
type: boolean
default: true
id:
type: string
format: uuid
status:
type: string
suppressedBySystem:
type: boolean
required:
- notificationChannelId
- id
- status
required:
- dseq
- alerts
required:
- data
DeploymentAlertCreateInput:
type: object
properties:
data:
type: object
properties:
alerts:
type: object
properties:
deploymentBalance:
type: object
properties:
notificationChannelId:
type: string
format: uuid
enabled:
type: boolean
default: true
threshold:
type: number
minimum: 0
required:
- notificationChannelId
- threshold
deploymentClosed:
type: object
properties:
notificationChannelId:
type: string
format: uuid
enabled:
type: boolean
default: true
required:
- notificationChannelId
required:
- alerts
required:
- data
UnauthorizedErrorResponse:
type: object
properties:
statusCode:
type: number
minimum: 401
maximum: 401
message:
type: string
required:
- statusCode
- message
securitySchemes:
kms:
type: http
scheme: basic