Documentation Index
Fetch the complete documentation index at: https://sc-docs.deepidv.com/llms.txt
Use this file to discover all available pages before exploring further.
Reference for all sandbox test data returned by the deepidv API when using a sandbox API key. See Sandbox Mode for setup instructions.
How Sandbox Responses Work
When you make aGET request with a sandbox API key, the API returns pre-built test data instead of querying real records. The response shape is identical to production β the only difference is that the data is synthetic.
Non-GET requests (POST, PATCH, PUT, DELETE) return a 403 error:
Sessions
Retrieve Session β GET /v1/sessions/:id
Use well-known test IDs to control the scenario. Any unrecognized ID returns a random scenario.
test_verified β Full βeverythingβ response
Returns a VERIFIED session with every possible field populated. Use this to validate your integration handles the complete response shape.
Key fields included:
type: "session"(workflow-based)workflow_id,workflow_steps(all 11 steps)bank_statement_request_idlocation,submitted_at,meta_data- Full
uploads(primary, secondary, and tertiary IDs, selfies, custom prompt) - Complete
analysis_datawith all sub-objects user(applicant profile) andsender_user(session creator profile)
| Field | Description |
|---|---|
id_analysis_data | Primary ID β detect face data, all extracted text fields (21 fields), expiry/state/age checks |
secondary_id_analysis_data | Secondary ID β same structure as primary |
tertiary_id_analysis_data | Tertiary ID β same structure as primary |
compare_faces_data | Face match confidence with full face result (landmarks, quality, bounding box, pose, similarity) |
id_matches_selfie | true |
faceliveness_score | 99.49 |
pep_sanctions_data | One PEP match, no sanctions |
adverse_media_data | 4 hits across financial_crime and uncategorized categories with sample articles |
title_search_data | Full property title with sale info, owner info, location info, and address details |
document_risk_data | One analyzed document with risk signals, AI analysis, and metadata |
custom_form_data | One question/answer entry |
selected_document_types | Primary (drivers_license), secondary (passport), tertiary (pr_card) |
test_rejected
Returns a REJECTED session with basic analysis data β failing face match and ID checks.
| Field | Value |
|---|---|
status | REJECTED |
face_match_confidence | 42.3 |
id_matches_selfie | false |
expiry_date_pass | false |
valid_state_pass | false |
test_submitted
Returns a SUBMITTED session with basic analysis data β passing scores, awaiting manual review.
test_pending
Returns a PENDING session with no analysis data and session_progress: "PENDING".
test_voided
Returns a VOIDED session with no analysis data.
List Sessions β GET /v1/sessions
Returns 5 sessions (one per status) with lightweight analysis data. The list uses basic analysis β the full βeverythingβ payload is only returned when fetching test_verified by ID.
Financial
Retrieve Bank Statement β GET /v1/financial/:id
test_completed
Returns a completed bank statement with full statement data including accounts, transactions, and holder info.
Sensitive fields (
TransitNumber, InstitutionNumber) are omitted from sandbox responses, matching production behavior.test_pending
Returns a pending bank statement with no statement field.
List Bank Statements β GET /v1/financial
Returns 2 bank statements (completed and pending) without the statement body β matching production list behavior.
Workflows
Retrieve Workflow β GET /v1/workflows/:id
test_workflow β Full workflow
Returns a workflow with all 11 available steps, each with realistic config objects:
| Step | Config |
|---|---|
id-verification | Age restriction (18β55), expiry date check, secondary + tertiary ID required, valid ID types, valid states |
face-liveness | Confidence threshold 70, FaceMovementChallenge method |
age-estimation | Minimum age 18 |
pep-sanctions | Default config |
adverse-media | Default config |
bank-statement-upload | Checking account, 12-month period |
document-upload | βArticles of Incorporationβ required |
title-search | USA, all location info fields enabled |
custom-prompt | βHold up 3 fingersβ |
custom-form | βWhat is your Company Business Numberβ (short-text) |
ai-bank-statement-analysis | Default config |
Any other ID β Basic workflow
Returns a workflow with 2 steps:id-verification and face-liveness.
