DynamoDB: Batch Get (Guide w/ Code Examples)

Provided by Rafal Wilinski
DynamoDB DocumentClient provides a function named batchGet
to retrieve multiple items at once. Behind the scenes, it calls BatchGetItem
function and can retrieve items in batches of 100 or fewer records.
const AWS = require('aws-sdk'); const dynamo = new AWS.DynamoDB.DocumentClient(); const params = { RequestItems: { "TableName": [ { "Keys": [ { "key1": "value1" }, { "key2": "value2" }, //... ], "ProjectionExpression": "attribute_name1, attribute_name2" } ] } }; dynamo.batchGet(params, function(err, data) { if (err) { console.log(err); } else { console.log(data); } });
Similar Code Examples
- DynamoDB BatchWriteItem in Typescript
- DynamoDB: BatchGetItem
- DynamoDB: GetItem
- DynamoDB: Delete
- DynamoDB: Attribute Not Null
- DynamoDB: Delete All Items With Partition Key
- DynamoDB: Query JSON
- DynamoDB: Get By ID
- DynamoDB: Get Random Item
- DynamoDB: Query Ends With
- DynamoDB: Get Query
- DynamoDB: Query Items
- DynamoDB: Get Last Inserted Item
- DynamoDB: Increment Counter
- DynamoDB Get in Typescript
Better DynamoDB experience.
First 7 days are on us. No strings attached.
Product Features
DynamoDB Tools
DynamoDB Info
© 2025 Dynobase