/rpc-api-keys
Gets rpc api keys, currently only blockfrost is supported (internal)
token<token>
API key authentication via header (token)
In: header
Query Parameters
cursorId?string
Used to paginate through the rpc provider keys
Length
1 <= length <= 250
limit?number
The number of rpc provider keys to return
Default
100
Range
1 <= value <= 100
Response Body
curl -X GET "https://loading/./../api/v1/rpc-api-keys/?cursorId=string&limit=100"
{
"RpcProviderKeys": [
{
"network": "Preprod",
"id": "unique_cuid_v2",
"rpcProviderApiKey": "blockfrost_api_key",
"rpcProvider": "Blockfrost",
"createdAt": "1970-01-20T20:00:36.260Z",
"updatedAt": "1970-01-20T20:00:36.260Z"
}
]
}