AvaCloud API
AvaCloud App
AvaCloud API
AvaCloud API
  • 👋Welcome
  • 🚀Getting Started
    • First steps
  • ⚙️API Reference
    • Key Concepts
    • Authentication
      • Create Token
    • L1
      • Get L1s
      • Create L1
      • Get L1
      • Health Check
      • Teardown
    • Plans
      • Get Infra Plans
  • Specification
Powered by GitBook

© 2025 Ava Labs, Inc.

On this page

Was this helpful?

  1. API Reference
  2. Plans

Get Infra Plans

Returns a list of all the available infrastructure plans based on network

PreviousPlans

Last updated 4 months ago

Was this helpful?

Request Overview

Parameter
Example Value
Description

network*

"testnet"

Specifies the network to view related infrastructure plans. Plans are available on either testnet or mainnet

*required field


⚙️

Get Infra Plans by network

get

Get Infra Plans by network

Authorizations
Path parameters
networkstringRequired

network

Responses
200
OK
application/json
400
Bad Request
401
Unauthorized
get
GET /v1/api/subnets/infraplan/network/{network} HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*
[
  {
    "bundlePlan": {
      "dynamicFees": [
        {
          "fee": "text",
          "feeLabel": "text",
          "name": "text"
        }
      ],
      "fee": "text",
      "feeAmount": "text",
      "productID": "text"
    },
    "gasRelayerPlan": {
      "dynamicPrice": {
        "fee": "text",
        "feeLabel": "text",
        "name": "text"
      },
      "flatPrice": "text",
      "flatPriceLegend": "text",
      "productID": "text",
      "redundancy": true,
      "rps": 1,
      "signers": 1
    },
    "mainnetDetails": {
      "customerValidators": [
        {
          "cloudProvider": "aws",
          "count": 1,
          "region": "text"
        }
      ],
      "dedicatedNodes": [
        {
          "cloudProvider": "aws",
          "count": 1,
          "region": "text",
          "resources": {
            "cpu": "text",
            "memory": "text"
          },
          "size": "small"
        }
      ],
      "glacier": {
        "debugNodes": [
          {
            "cloudProvider": "aws",
            "count": 1,
            "region": "text",
            "resources": {
              "cpu": "text",
              "memory": "text"
            },
            "size": "small"
          }
        ],
        "enableIndexing": true
      },
      "metricsIndexing": true,
      "rpcNodes": [
        {
          "cloudProvider": "aws",
          "count": 1,
          "region": "text",
          "resources": {
            "cpu": "text",
            "memory": "text"
          },
          "size": "small"
        }
      ],
      "validators": [
        {
          "cloudProvider": "aws",
          "count": 1,
          "region": "text"
        }
      ],
      "wsNodes": [
        {
          "cloudProvider": "aws",
          "count": 1,
          "region": "text",
          "resources": {
            "cpu": "text",
            "memory": "text"
          },
          "size": "small"
        }
      ]
    },
    "planDisplayName": "text",
    "planID": "text",
    "planKey": "text",
    "testnetDetails": {
      "customerValidators": [
        {
          "cloudProvider": "aws",
          "count": 1,
          "region": "text"
        }
      ],
      "dedicatedNodes": [
        {
          "cloudProvider": "aws",
          "count": 1,
          "region": "text",
          "resources": {
            "cpu": "text",
            "memory": "text"
          },
          "size": "small"
        }
      ],
      "glacier": {
        "debugNodes": [
          {
            "cloudProvider": "aws",
            "count": 1,
            "region": "text",
            "resources": {
              "cpu": "text",
              "memory": "text"
            },
            "size": "small"
          }
        ],
        "enableIndexing": true
      },
      "metricsIndexing": true,
      "rpcNodes": [
        {
          "cloudProvider": "aws",
          "count": 1,
          "region": "text",
          "resources": {
            "cpu": "text",
            "memory": "text"
          },
          "size": "small"
        }
      ],
      "validators": [
        {
          "cloudProvider": "aws",
          "count": 1,
          "region": "text"
        }
      ],
      "wsNodes": [
        {
          "cloudProvider": "aws",
          "count": 1,
          "region": "text",
          "resources": {
            "cpu": "text",
            "memory": "text"
          },
          "size": "small"
        }
      ]
    }
  }
]
  • Request Overview
  • GETGet Infra Plans by network