cURL
curl --request GET \ --url https://api.quiva.ai/storage/kv/{bucket}/entries \ --header 'Authorization: Bearer <token>'
{ "body": { "results": [ { "key": "key1", "value": { "name": "John Doe", "age": 30 } }, { "key": "key2", "value": { "name": "Jane Smith", "age": 28 } } ], "results_total": 2 }, "metadata": { "bucket": "my-bucket", "limit": 10 } }
Retrieves the latest entries 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
Maximum number of entries to retrieve
1 <= x <= 1000
Successfully retrieved entries
Show child attributes