# Basic Request:
curl -X POST -H "Content-Type: application/json" -d \
'{"jsonrpc":"2.0","id":1,"method":"getSupply"}' \
<YOUR_RPC_URL>
# Request with excludeNonCirculatingAccountsList:
curl -X POST -H "Content-Type: application/json" -d \
'{"jsonrpc":"2.0","id":1,"method":"getSupply", "params": [{"excludeNonCirculatingAccountsList": true}]}' \
<YOUR_RPC_URL>
# Request with commitment:
curl -X POST -H "Content-Type: application/json" -d \
'{"jsonrpc":"2.0","id":1,"method":"getSupply", "params": [{"commitment": "confirmed", "excludeNonCirculatingAccountsList": false}]}' \
<YOUR_RPC_URL>