# Dedicated

## Get RPC Node Dedicated Details

`$ nirvana rpc-nodes:dedicated get`

**get** `/v1/rpc_nodes/dedicated/{node_id}`

Get details about an RPC Node Dedicated

### Parameters

- `--node-id: string`

  Node ID

### Returns

- `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.

  - `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.

### Example

```cli
nirvana rpc-nodes:dedicated get \
  --api-key 'My API Key' \
  --node-id node_id
```

#### Response

```json
{
  "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"
}
```

## List RPC Node Dedicated

`$ nirvana rpc-nodes:dedicated list`

**get** `/v1/rpc_nodes/dedicated`

List all RPC Node Dedicated you created

### Parameters

- `--project-id: string`

  Project ID of resources to request

- `--cursor: optional string`

  Pagination cursor returned by a previous request

- `--limit: optional number`

  Maximum number of items to return

### Returns

- `dedicated_list: object { items, pagination }`

  - `items: array of Dedicated`

    - `id: string`

      Unique identifier for the RPC Node Dedicated.

    - `blockchain: string`

      Blockchain type.

    - `created_at: string`

      When the RPC Node Dedicated was created.

    - `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.

  - `pagination: object { next_cursor, previous_cursor, total_count }`

    Pagination response details.

    - `next_cursor: string`

    - `previous_cursor: string`

    - `total_count: number`

### Example

```cli
nirvana rpc-nodes:dedicated list \
  --api-key 'My API Key' \
  --project-id project_id
```

#### Response

```json
{
  "items": [
    {
      "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"
    }
  ],
  "pagination": {
    "next_cursor": "RhwniMT4B74siYZcPF8TnCdGI1l9rpPvg",
    "previous_cursor": "ARhwnmi1hA7wEbHbMjdYQlOB_ZusP4fYvw",
    "total_count": 125
  }
}
```

## Domain Types

### Dedicated

- `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.

  - `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.

### Dedicated Blockchain

- `dedicated_blockchain: object { blockchain, network }`

  Blockchain supported by the RPC Node Dedicated.

  - `blockchain: string`

    Blockchain type.

  - `network: string`

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

### Dedicated Blockchain List

- `dedicated_blockchain_list: object { items, pagination }`

  - `items: array of DedicatedBlockchain`

    - `blockchain: string`

      Blockchain type.

    - `network: string`

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

  - `pagination: object { next_cursor, previous_cursor, total_count }`

    Pagination response details.

    - `next_cursor: string`

    - `previous_cursor: string`

    - `total_count: number`

### Dedicated List

- `dedicated_list: object { items, pagination }`

  - `items: array of Dedicated`

    - `id: string`

      Unique identifier for the RPC Node Dedicated.

    - `blockchain: string`

      Blockchain type.

    - `created_at: string`

      When the RPC Node Dedicated was created.

    - `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.

  - `pagination: object { next_cursor, previous_cursor, total_count }`

    Pagination response details.

    - `next_cursor: string`

    - `previous_cursor: string`

    - `total_count: number`

# Blockchains

## List Dedicated Blockchains

`$ nirvana rpc-nodes:dedicated:blockchains list`

**get** `/v1/rpc_nodes/dedicated/blockchains`

List all Dedicated Blockchains

### Parameters

- `--cursor: optional string`

  Pagination cursor returned by a previous request

- `--limit: optional number`

  Maximum number of items to return

### Returns

- `dedicated_blockchain_list: object { items, pagination }`

  - `items: array of DedicatedBlockchain`

    - `blockchain: string`

      Blockchain type.

    - `network: string`

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

  - `pagination: object { next_cursor, previous_cursor, total_count }`

    Pagination response details.

    - `next_cursor: string`

    - `previous_cursor: string`

    - `total_count: number`

### Example

```cli
nirvana rpc-nodes:dedicated:blockchains list \
  --api-key 'My API Key'
```

#### Response

```json
{
  "items": [
    {
      "blockchain": "ethereum",
      "network": "mainnet"
    }
  ],
  "pagination": {
    "next_cursor": "RhwniMT4B74siYZcPF8TnCdGI1l9rpPvg",
    "previous_cursor": "ARhwnmi1hA7wEbHbMjdYQlOB_ZusP4fYvw",
    "total_count": 125
  }
}
```
