cURL
curl --request GET \ --url https://api.quiva.ai/storage/kv/{bucket}/entries/{key} \ --header 'Authorization: Bearer <token>'
{ "body": { "key": "my-key", "value": { "name": "John Doe", "age": 30 } }, "metadata": { "bucket": "my-bucket", "key": "my-key" } }
Retrieves a specific entry from a key-value bucket
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Name of the bucket
Key of the entry
Successfully retrieved entry
Show child attributes