> ## Documentation Index
> Fetch the complete documentation index at: https://webhub.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Read All

> Read data from your DynamoDB table

### Path

<ParamField path="YOUR_DB_NAME" type="string" required>
  The name of the DynamoDB you want to interact with.
</ParamField>

### Body

<ParamField body="" type="string" required>
  Body is empty, you do not need to pass anything in
</ParamField>

### Response

<ResponseField name="statusCode" type="number">
  Based off of standard HTTP request guidelines
</ResponseField>

<ResponseField name="body" type="object">
  All the elements that are inside the dynamodb table
</ResponseField>

<ResponseExample>
  ```json Success Response theme={null}
  {
    "statusCode": 200,
    "body": [
      {
          "id": "id1",
          "name": "name1"
      },
      {
          "id": "id2",
          "name": "name2"
      }
  ]
  }
  ```

  ```json Error Response theme={null}
  {
    "statusCode": 400,
    "body" {
      err: { ... },
      compelete: false
    }
  }
  ```
</ResponseExample>
