Skip to content
Docs

Get RPC Node Dedicated Details

GET/v1/rpc_nodes/dedicated/{node_id}

Get details about an RPC Node Dedicated

Path ParametersExpand Collapse
node_id: string
ReturnsExpand Collapse
Dedicated object { id, blockchain, created_at, 6 more }

RPC Node Dedicated details.

id: string

Unique identifier for the RPC Node Dedicated.

blockchain: string

Blockchain type.

created_at: string

When the RPC Node Dedicated was created.

formatdate-time
endpoint: string

RPC endpoint URL.

name: string

Name of the RPC Node Dedicated.

network: string

Network type (e.g., mainnet, testnet).

project_id: string

Project identifier associated with the RPC Node Dedicated.

tags: array of string

Tags to attach to the RPC Node Dedicated.

updated_at: string

When the RPC Node Dedicated was updated.

formatdate-time

Get RPC Node Dedicated Details

curl https://api.nirvanalabs.io/v1/rpc_nodes/dedicated/$NODE_ID \
    -H "Authorization: Bearer $NIRVANA_LABS_API_KEY"
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "blockchain": "ethereum",
  "created_at": "2025-01-01T00:00:00Z",
  "endpoint": "https://ethereum-mainnet.nirvanalabs.xyz/?apikey=apiKey",
  "name": "my-ethereum-node",
  "network": "mainnet",
  "project_id": "123e4567-e89b-12d3-a456-426614174000",
  "tags": [
    "production",
    "ethereum"
  ],
  "updated_at": "2025-01-01T00:00:00Z"
}
Returns Examples
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "blockchain": "ethereum",
  "created_at": "2025-01-01T00:00:00Z",
  "endpoint": "https://ethereum-mainnet.nirvanalabs.xyz/?apikey=apiKey",
  "name": "my-ethereum-node",
  "network": "mainnet",
  "project_id": "123e4567-e89b-12d3-a456-426614174000",
  "tags": [
    "production",
    "ethereum"
  ],
  "updated_at": "2025-01-01T00:00:00Z"
}