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

# List Real-Person Verification History

> Lists real-person material verification sessions for the current organization.

List previous verification sessions for review, customer support, and reconciliation. This history is long-lived, but it does not replace the short-lived bind step: a successful verification should still be bound immediately within the 120-second window.

The response includes only TokenLab IDs and does not include credential data. After a bind succeeds, `group_id` is the TokenLab material group ID used for `liveness_face` uploads.

## Example Request

```bash theme={null}
curl "https://api.tokenlab.sh/v1/videos/assets/visual-validation-sessions?page_size=20" \
  -H "Authorization: Bearer $TOKENLAB_API_KEY"
```

## Example Response

```json theme={null}
{
  "sessions": [
    {
      "object": "seedance.visual_validation_session_history",
      "session_id": "svv_abc123",
      "callback_url": "https://yourapp.example.com/seedance/callback",
      "language": "en",
      "status": "bound",
      "verification_status": "succeeded",
      "result_code": "10000",
      "group_id": "seedance_group_real_123",
      "group_name": "Creator A",
      "created_at": 1782998400000,
      "expires_at": 1782998520000,
      "callback_received_at": 1782998450000,
      "bound_at": 1782998460000
    }
  ],
  "next_page_token": null
}
```
