Skip to main content
GET
/
fastedge
/
v1
/
kv
Python
import os
from gcore import Gcore

client = Gcore(
    api_key=os.environ.get("GCORE_API_KEY"),  # This is the default and can be omitted
)
kv_stores = client.fastedge.kv_stores.list()
print(kv_stores.count)
{
  "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