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

# List Supporting Documents

> List a business profile's supporting documents (metadata only).

Returns the metadata for each document attached to a business profile (no bytes). Download a document's contents with [Download Document](/api-reference/v2/business-profiles/download-document).

## Path Parameters

<ParamField path="profile_id" type="string" required>
  The business profile's id.
</ParamField>

## Examples

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.tracklysms.com/api/v2/business-profiles/664a1b2c3d4e5f6071829300/documents" \
    -H "X-Api-Key: trk_your_api_key_here"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 — Success theme={null}
  {
    "documents": [
      {
        "id": "9f2c4a1e7b8d4c3f",
        "filename": "ein.pdf",
        "contentType": "application/pdf",
        "size": 20481,
        "uploadedAt": "2026-07-26T12:10:00Z"
      }
    ]
  }
  ```
</ResponseExample>

## Error Codes

| HTTP Status | Error Code  | Description                      |
| ----------- | ----------- | -------------------------------- |
| 404         | `not_found` | No such profile on your account. |
