Storage
List registered storage providers
Requires scope files:read.
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
| Code | Meaning |
|---|---|
| 401 | Invalid or missing API key. |
| 403 | The 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
}
]
}