For the complete documentation index, see llms.txt. This page is also available as Markdown.

Network

Network endpoints

post
Body
Responses
200

Default Response

application/json
post/network/list
POST /network/list HTTP/1.1
Host: localhost:3000
Content-Type: application/json
Accept: */*
Content-Length: 51

{
  "metadata": {
    "ANY_ADDITIONAL_PROPERTY": "anything"
  }
}
200

Default Response

{
  "network_identifiers": [
    {
      "blockchain": "stacks",
      "network": "mainnet"
    }
  ]
}
post
Body
Responses
200

Default Response

application/json
post/network/options
POST /network/options HTTP/1.1
Host: localhost:3000
Content-Type: application/json
Accept: */*
Content-Length: 116

{
  "network_identifier": {
    "blockchain": "stacks",
    "network": "mainnet"
  },
  "metadata": {
    "ANY_ADDITIONAL_PROPERTY": "anything"
  }
}
{
  "version": {
    "rosetta_version": "text",
    "node_version": "text",
    "middleware_version": "text",
    "metadata": {
      "ANY_ADDITIONAL_PROPERTY": "anything"
    }
  },
  "allow": {
    "operation_statuses": [
      {
        "status": "pending",
        "successful": true
      }
    ],
    "operation_types": [
      "text"
    ],
    "errors": [
      {
        "code": 1,
        "message": "text",
        "description": "text",
        "retriable": true,
        "details": {
          "ANY_ADDITIONAL_PROPERTY": "anything"
        }
      }
    ],
    "historical_balance_lookup": true,
    "timestamp_start_index": 1,
    "call_methods": [
      "text"
    ],
    "balance_exemptions": [
      {
        "sub_account_address": "text",
        "currency": {
          "symbol": "text",
          "decimals": 1,
          "metadata": {
            "asset_identifier": "text",
            "name": "text",
            "value": "text",
            "token_type": "ft"
          }
        },
        "exemption_type": "greater_or_equal"
      }
    ],
    "mempool_coins": true,
    "block_hash_case": "upper_case",
    "transaction_hash_case": "upper_case"
  }
}

Last updated

Was this helpful?