Saltar para o conteúdo principal
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

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

Example Response

{
  "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
}