GET
/
fastedge
/
v1
/
kv
/
{id}
Get store by id
curl --request GET \
  --url https://api.gcore.com/fastedge/v1/kv/{id} \
  --header 'Authorization: <api-key>'
{
  "id": 123,
  "comment": "<string>",
  "updated": "2023-11-07T05:31:56Z",
  "app_count": 123,
  "byod": {
    "url": "<string>",
    "prefix": "<string>"
  },
  "stats": {
    "kv_count": 123,
    "zset_count": 123,
    "cf_count": 123,
    "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

Path Parameters

id
integer
required

Id of the store

Response

200
application/json

Ok

The response is of type object.