GET
/
fastedge
/
v1
/
kv
Python
from gcore import Gcore

client = Gcore(
    api_key="My API Key",
)
kv_stores = client.fastedge.kv_stores.list()
print(kv_stores.count)
{
  "count": 123,
  "stores": [
    {
      "id": 123,
      "comment": "<string>",
      "updated": "2023-11-07T05:31:56Z"
    }
  ]
}

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

App ID

Response

200
application/json

Ok

The response is of type object.