Manage your FluxRPC API keys. API keys are required to authenticate RPC requests and track usage.
GET /api/keys
Retrieve all API keys associated with your account.
{
"keys": [
{
"id": "string",
"key": "string",
"name": "string",
"created": "ISO date",
"lastUsed": "ISO date",
"requestCount": number,
"rateLimit": number
}
]
}
POST /api/keys
Create a new API key for your account.
DELETE /api/keys/:id
Delete an existing API key. This action is irreversible.
Include your API key in RPC requests:
curl -X POST "https://eu.fluxrpc.com?key=YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"getBalance","params":["PUBKEY"]}'