Get key-value store record
get-key-value-store-recordRetrieve a specific record from a key-value store using its store ID and record key. Supports JSON, text, and binary data.
Instructions
Get a value stored in a key-value store under a specific key. The response preserves the original Content-Encoding; most clients handle decompression automatically.
USAGE:
Use when you need to retrieve a specific record (JSON, text, or binary) from a store.
USAGE EXAMPLES:
user_input: Get record INPUT from store abc123
user_input: Get record data.json from store username~my-store
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| keyValueStoreId | Yes | Key-value store ID or username~store-name | |
| recordKey | Yes | Key of the record to retrieve. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| keyValueStoreId | Yes | Key-value store ID | |
| key | Yes | Record key | |
| value | Yes | The stored value (JSON, text, or binary) | |
| contentType | No | MIME type of the stored value | |
| summary | Yes | Summary of the result |