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

# List Purchases

> List all purchases for your scenarios

Returns all purchases made for scenarios you've created.

<ParamField query="user_email" type="string">
  Filter purchases by buyer email
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "purchases": [
      {
        "id": "purchase_abc123",
        "scenario_id": "scenario_xyz",
        "user_email": "buyer@example.com",
        "amount": 29.99,
        "currency": "USD",
        "status": "completed",
        "created_at": "2024-01-15T10:30:00Z"
      }
    ]
  }
  ```
</ResponseExample>
