Storage

List registered storage providers

Requires scope files:read.

GET/api/v1/providersTry it
iNote
Requires a key with the files:read scope, sent as Authorization: Bearer <api-key>. Keys missing the scope are rejected with 403 — see Authentication.

Errors

CodeMeaning
401Invalid or missing API key.
403The API key lacks the required scope for this operation.
cURL
curl https://gateway.kepto.xyz/api/v1/providers \
  -H "Authorization: Bearer <api-key>"
200 · application/json
{
  "providers": [
    {
      "address": "string",
      "endpoint": "string",
      "active": true,
      "stakeKep": "string",
      "capacityBytes": 0,
      "usedBytes": 0,
      "pricePerGiBPerEpochKep": "string",
      "activeDeals": 0
    }
  ]
}