Akash Network Deployment Settings API
The Deployment Settings API from Akash Network — 4 operation(s) for deployment settings.
The Deployment Settings API from Akash Network — 4 operation(s) for deployment settings.
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-deployment-settings-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 Settings API
description: A REST interface for state queries
version: 1.0.0
servers:
- url: https://console-api.akash.network/
tags:
- name: Deployment Settings
paths:
/v1/deployment-settings/{userId}/{dseq}:
get:
summary: Get deployment settings by user ID and dseq
tags:
- Deployment Settings
security:
- BearerAuth: []
- ApiKeyAuth: []
parameters:
- schema:
type: string
description: User ID
required: true
name: userId
in: path
- schema:
type: string
pattern: ^d+$
description: Deployment sequence number
required: true
name: dseq
in: path
responses:
'200':
description: Returns deployment settings
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
id:
type: string
format: uuid
userId:
type: string
dseq:
type: string
pattern: ^d+$
autoTopUpEnabled:
type: boolean
estimatedTopUpAmount:
type: number
topUpFrequencyMs:
type: number
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
required:
- id
- userId
- dseq
- autoTopUpEnabled
- estimatedTopUpAmount
- topUpFrequencyMs
- createdAt
- updatedAt
required:
- data
'404':
description: Deployment settings not found
content:
application/json:
schema:
type: object
properties:
message:
type: string
required:
- message
patch:
summary: Update deployment settings
tags:
- Deployment Settings
security:
- BearerAuth: []
- ApiKeyAuth: []
parameters:
- schema:
type: string
description: User ID
required: true
name: userId
in: path
- schema:
type: string
pattern: ^d+$
description: Deployment sequence number
required: true
name: dseq
in: path
requestBody:
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
autoTopUpEnabled:
type: boolean
description: Whether auto top-up is enabled for this deployment
required:
- autoTopUpEnabled
required:
- data
responses:
'200':
description: Deployment settings updated successfully
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
id:
type: string
format: uuid
userId:
type: string
dseq:
type: string
pattern: ^d+$
autoTopUpEnabled:
type: boolean
estimatedTopUpAmount:
type: number
topUpFrequencyMs:
type: number
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
required:
- id
- userId
- dseq
- autoTopUpEnabled
- estimatedTopUpAmount
- topUpFrequencyMs
- createdAt
- updatedAt
required:
- data
'404':
description: Deployment settings not found
content:
application/json:
schema:
type: object
properties:
message:
type: string
required:
- message
/v1/deployment-settings:
post:
summary: Create deployment settings
tags:
- Deployment Settings
security:
- BearerAuth: []
- ApiKeyAuth: []
requestBody:
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
userId:
type: string
description: User ID
dseq:
type: string
pattern: ^d+$
description: Deployment sequence number
autoTopUpEnabled:
type: boolean
default: false
description: Whether auto top-up is enabled for this deployment
required:
- userId
- dseq
required:
- data
responses:
'201':
description: Deployment settings created successfully
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
id:
type: string
format: uuid
userId:
type: string
dseq:
type: string
pattern: ^d+$
autoTopUpEnabled:
type: boolean
estimatedTopUpAmount:
type: number
topUpFrequencyMs:
type: number
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
required:
- id
- userId
- dseq
- autoTopUpEnabled
- estimatedTopUpAmount
- topUpFrequencyMs
- createdAt
- updatedAt
required:
- data
/v2/deployment-settings/{dseq}:
get:
summary: Get deployment settings by dseq
tags:
- Deployment Settings
security:
- BearerAuth: []
- ApiKeyAuth: []
parameters:
- schema:
type: string
pattern: ^d+$
description: Deployment sequence number
required: true
name: dseq
in: path
- schema:
type: string
format: uuid
description: User ID. Defaults to the current authenticated user if not provided
required: false
name: userId
in: query
responses:
'200':
description: Returns deployment settings
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
id:
type: string
format: uuid
userId:
type: string
dseq:
type: string
pattern: ^d+$
autoTopUpEnabled:
type: boolean
estimatedTopUpAmount:
type: number
topUpFrequencyMs:
type: number
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
required:
- id
- userId
- dseq
- autoTopUpEnabled
- estimatedTopUpAmount
- topUpFrequencyMs
- createdAt
- updatedAt
required:
- data
'404':
description: Deployment settings not found
content:
application/json:
schema:
type: object
properties:
message:
type: string
required:
- message
patch:
summary: Update deployment settings
tags:
- Deployment Settings
security:
- BearerAuth: []
- ApiKeyAuth: []
parameters:
- schema:
type: string
pattern: ^d+$
description: Deployment sequence number
required: true
name: dseq
in: path
- schema:
type: string
format: uuid
description: User ID. Defaults to the current authenticated user if not provided
required: false
name: userId
in: query
requestBody:
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
autoTopUpEnabled:
type: boolean
description: Whether auto top-up is enabled for this deployment
required:
- autoTopUpEnabled
required:
- data
responses:
'200':
description: Deployment settings updated successfully
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
id:
type: string
format: uuid
userId:
type: string
dseq:
type: string
pattern: ^d+$
autoTopUpEnabled:
type: boolean
estimatedTopUpAmount:
type: number
topUpFrequencyMs:
type: number
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
required:
- id
- userId
- dseq
- autoTopUpEnabled
- estimatedTopUpAmount
- topUpFrequencyMs
- createdAt
- updatedAt
required:
- data
'404':
description: Deployment settings not found
content:
application/json:
schema:
type: object
properties:
message:
type: string
required:
- message
/v2/deployment-settings:
post:
summary: Create deployment settings
tags:
- Deployment Settings
security:
- BearerAuth: []
- ApiKeyAuth: []
requestBody:
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
dseq:
type: string
pattern: ^d+$
description: Deployment sequence number
autoTopUpEnabled:
type: boolean
default: false
description: Whether auto top-up is enabled for this deployment
userId:
type: string
format: uuid
description: User ID. Defaults to the current authenticated user if not provided
required:
- dseq
required:
- data
responses:
'201':
description: Deployment settings created successfully
content:
application/json:
schema:
type: object
properties:
data:
type: object
properties:
id:
type: string
format: uuid
userId:
type: string
dseq:
type: string
pattern: ^d+$
autoTopUpEnabled:
type: boolean
estimatedTopUpAmount:
type: number
topUpFrequencyMs:
type: number
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
required:
- id
- userId
- dseq
- autoTopUpEnabled
- estimatedTopUpAmount
- topUpFrequencyMs
- createdAt
- updatedAt
required:
- data
components:
securitySchemes:
kms:
type: http
scheme: basic