Skip to main content
GET
/
networks
/
{network}
/
validators
List Canton Validators
curl --request GET \
  --url https://api.dfns.io/networks/{network}/validators \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "cv-7jeof-m584r-p35ucm37ko3cqgts",
      "orgId": "or-30tnh-itmjs-s235s5ontr3r23h2",
      "network": "Canton",
      "name": "<string>",
      "kind": "Shared",
      "dateCreated": "<string>",
      "partyHint": "<string>"
    }
  ],
  "nextPageToken": "<string>"
}

Authentication

✅ Organization User (CustomerEmployee)
❌ Delegated User (EndUser)
✅ Service Account

Required Permissions

Networks:CantonValidators:Read: Always required.

Authorizations

Authorization
string
header
required

Bearer Token: Used to authenticate API requests. More details how to generate the token: Authentication flows

Path Parameters

network
enum<string>
required
Available options:
canton,
canton-devnet,
canton-testnet

Query Parameters

limit
integer
default:50

Maximum number of items to return.

Required range: 1 <= x <= 500
paginationToken
string

Opaque token used to retrieve the next page. Returned as nextPageToken from the previous request.

Minimum length: 1

Response

200 - application/json

Success

items
object[]
required

Current page items.

nextPageToken
string

token to use as paginationToken to request the next page.

I