Skip to main content
GET
/
fastedge
/
v1
/
kv
/
{id}
/
data
Get the edge store data
curl --request GET \
  --url https://api.gcore.com/fastedge/v1/kv/{id}/data \
  --header 'Authorization: <api-key>'
{
  "count": 123,
  "entries": [
    {
      "key": "<string>",
      "datatype": "kv",
      "payload": {
        "value": "<string>",
        "encoding": "plain",
        "expiry": "<string>"
      }
    }
  ]
}

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<int64>
required

Id of the store

Query Parameters

data_type
enum<string>[]

Data type filter

Data type of the item

Available options:
kv,
sorted_set,
bloom_filter

Key prefix to search for

min_score
number<double>

Minimum score for sorted set

max_score
number<double>

Maximum score for sorted set

limit
integer

Limit for pagination

offset
integer

Offset for pagination

Response

Ok

count
integer
required

Total number of entries

entries
object[]
required