Skip to main content
GET
/
platform
/
admin
/
blockchains
/
{id}
cURL
curl --request GET \
  --url https://api.example.com/platform/admin/blockchains/{id}
{
  "isSuccess": true,
  "isFailure": false,
  "error": null,
  "value": {
    "id": 42,
    "name": "Example"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.numium.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

id
integer<int64>
required

Query Parameters

api-version
string | null

Response

Wrapper for API operation results containing success status, error information, and return value.

isSuccess
boolean

True if the operation completed successfully, false otherwise.

Example:

true

isFailure
boolean

True if the operation failed, false otherwise.

Example:

false

error
object

Error information returned when the operation fails.

Example:
{
  "code": "ValidationError",
  "message": "The request parameters failed validation.",
  "info": [
    "The Name field is required.",
    "The Id field must be greater than 0."
  ]
}
value
object

The result value returned when the operation is successful.

Example:
{
  "blockchainId": 42,
  "minimumGasBalance": 0.25,
  "maxGasBalance": 10,
  "refillAmount": 2.5,
  "maxRefillAmount": 5,
  "name": "Ethereum Sepolia",
  "blockchainCode": 69,
  "nativeCoinName": "ETH",
  "isTestNet": true,
  "iconBase64": "iVBORw0KGgoAAAANSUhEUgAAAAUA",
  "chainExplorersState": "On",
  "operationsState": "On",
  "isAdminChainExplorersEnabled": true,
  "isAdminOperationsEnabled": true,
  "isAdminChainExplorersNotImplemented": false,
  "isAdminOperationsNotImplemented": false,
  "isMetaFactoryDeployed": true,
  "relatedCustodians": [
    {
      "id": 7,
      "blockchainId": 42,
      "provider": "Fireblocks"
    }
  ],
  "metaFactoryId": 501,
  "metaFactoryAddress": "0x1234567890abcdef1234567890abcdef12345678",
  "deployProcessingStatus": "Deployed",
  "metaFactoryOwners": [
    {
      "walletTenantId": 3001,
      "walletAddress": "0xabcdef0123456789abcdef0123456789abcdef01",
      "walletName": "Meta Ops Wallet"
    }
  ],
  "isMetaFactoryUpdateAvailable": false
}