Skip to main content
GET
/
fastedge
/
v1
/
kv
/
{id}
/
data
/
{key}
Get the edge store key data
curl --request GET \
  --url https://api.gcore.com/fastedge/v1/kv/{id}/data/{key} \
  --header 'Authorization: <api-key>'
{
  "key": "<string>",
  "datatype": "kv",
  "count": 123,
  "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

key
string
required

Key

Query Parameters

Value prefix to search for

hash
string

Value hash to search for

min_score
number<double>

Minimum score for sorted set

max_score
number<double>

Maximim score for sorted set

limit
integer

Limit for pagination

offset
integer

Offset for pagination

Response

Ok

Edge store entry

key
string
required

Key of the item

datatype
enum<string>
required

Data type of the item

Available options:
kv,
sorted_set,
bloom_filter
count
integer
required

Total number of entries

payload
object

KV pair value