dynobase-icon
Dynobase

DynamoDB: Get List Of Items (Guide w/ Code Examples)

Rafal Wilinski

Provided by Rafal Wilinski

To get a list of items from a DynamoDB table using the JavaScript SDK, you can use the scan method. This will return all the items in the table as an array of JavaScript objects, which you can then use to display or manipulate the data as needed.

const AWS = require('aws-sdk'); const dynamoDb = new AWS.DynamoDB.DocumentClient(); const params = { TableName: 'your-table-name' }; dynamoDb.scan(params, (error, data) => { if (error) { console.log(error); } else { console.log(data.Items); } });

Dynobase is a Professional GUI Client for DynamoDB

Start your 7-day free trial today

Product Features

Download
/
Changelog
/
Pricing
/
Member Portal
/
Privacy
/
EULA
/
Twitter
© 2025 Dynobase
+
Login to the AWS Console less.
Try Dynobase to accelerate your DynamoDB workflow. Start your 7-day free trial today.