> ## 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.

# Get Structure

> This endpoint returns the structure of your s3 Bucket, allowing you to see the folders and files in the bucket

### Path

<ParamField path="YOUR_BUCKET_NAME" type="string" required>
  The name of the S3 bucket you want reference.
</ParamField>

### Response

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

<ResponseField name="body" type="object">
  Information concerning s3 bucket request
</ResponseField>

<ResponseExample>
  ```json Success Response theme={null}
  {
    "statusCode": 200,
    "body" {
      ...
      compelete: true,
    }
  }
  ```

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