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

# 查询真人素材认证历史

> 列出当前组织的真人素材认证会话。

查询长期保留的认证会话历史，用于核对用户回调和素材组绑定结果。历史记录不能替代短时绑定流程；认证成功后仍应在 120 秒窗口内立即绑定。

响应只包含 TokenLab ID，不包含凭据数据。绑定成功后，`group_id` 是创建 `liveness_face` 素材时使用的 TokenLab 素材组 ID。

## 用例请求

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

## 用例响应

```json theme={null}
{
  "sessions": [
    {
      "object": "seedance.visual_validation_session_history",
      "session_id": "svv_abc123",
      "callback_url": "https://yourapp.example.com/seedance/callback",
      "language": "zh",
      "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
}
```
