kv keys
Get a key's value
Returns the raw stored value for a key. The response body is the value exactly as it was written; the Content-Type header echoes the value's stored content type (defaults to application/octet-stream).
get/storage/kvs/{id}/keys/{key}
Path parameters
idstring uuid required
KV namespace ID
keystring required
Key name. Allowed characters: a-z A-Z 0-9 - _ / = .; maximum 256 characters; names starting with _ are reserved for system use. May contain /. When calling the HTTP API directly, URL-encode the key so the whole string is treated as one key (for example user/1 -> user%2F1). SDK users should pass the key raw - SDKs URL-encode path parameters automatically.
Response
Value retrieved successfully. The Content-Type header is the value's stored content type (defaults to application/octet-stream).