List and search document submissions

Returns a paginated list of the organization's document submissions, most
recent first, with optional free-text search.

Query parameters

  • search — optional, case-insensitive match on the document name or the
    humanized document id (e.g. 5PGACUU2E).
  • page — optional, 1-based page number (default 1).
  • per_page — optional, items per page (default 50, max 100).

Response

A lightweight summary per document (use GET /documents/:id for the full
forensic analysis):

{
  "documents": [
    {
      "submission_id": "document_UBCG4a...",
      "document_id": "5PGACUU2E",
      "name": "passport.jpg",
      "reference_id": "your-ref-123",
      "status": "analyzed",
      "analysis_risk_status": "trusted",
      "analysis_risk_score": 4,
      "document_content_type": "passport",
      "created_at": "2025-01-20T10:30:00Z"
    }
  ],
  "page": 1, "per_page": 50, "total": 128, "total_pages": 3
}

Errors

  • 401 authentication_error — missing, malformed, or revoked private key.
Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…
Query Params
string

Case-insensitive search over document name and humanized id.

int32
1 to 1000
Defaults to 1

1-based page number (max 1000).

int32
1 to 100
Defaults to 50

Items per page (default 50, max 100).

Response
200

List and search document submissions

Language
Credentials
Header
LoadingLoading…
Response
Click Try It! to start a request and see the response here!