API Keys Management

Manage your FluxRPC API keys. API keys are required to authenticate RPC requests and track usage.

Get All API Keys

GET /api/keys

Retrieve all API keys associated with your account.

Headers

Response

{
  "keys": [
    {
      "id": "string",
      "key": "string",
      "name": "string",
      "created": "ISO date",
      "lastUsed": "ISO date",
      "requestCount": number,
      "rateLimit": number
    }
  ]
}

Create API Key

POST /api/keys

Create a new API key for your account.

Delete API Key

DELETE /api/keys/:id

Delete an existing API key. This action is irreversible.

Usage

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"]}'

← Back to documentation