Skip to main content
GET
/
fastedge
/
v1
/
kv
List available edge stores
curl --request GET \
  --url https://api.gcore.com/fastedge/v1/kv \
  --header 'Authorization: <api-key>'
{
  "count": 123,
  "stores": [
    {
      "id": 123,
      "name": "<string>",
      "app_count": 123,
      "comment": "<string>",
      "size": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Query Parameters

app_id
integer<int64>

Filter stores by application ID. Returns only stores associated with this app.

Required range: x >= 1
limit
integer
default:50

Maximum number of stores to return per page

Required range: 1 <= x <= 1000
offset
integer
default:0

Number of stores to skip for pagination

Required range: x >= 0

Response

Returns paginated list of edge storage stores

count
integer
required

Total number of stores

stores
object[]
required