Documentation Index
Fetch the complete documentation index at: https://docs.canton.network/llms.txt
Use this file to discover all available pages before exploring further.
User API
listNetworks
JSON-RPCSince 0.24.0
POSTJSON-RPC listNetworks
Protocol Details
Outputs
networksarray[object]required
networksarray[object]required
cURL
curl \
<JSON_RPC_URL> \
-H 'content-type: application/json' \
--data @- <<'EOF'
{
"jsonrpc": "2.0",
"id": 1,
"method": "listNetworks"
}
EOF
Resultapplication/json
{
"networks": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"identityProviderId": "<string>",
"auth": {
"method": "<string>",
"scope": "<string>",
"clientId": "<string>",
"audience": "<string>"
},
"ledgerApi": "<string>"
}
]
}