---
title: "List Document Trust Analyses"
method: GET
path: "/document_analyses"
tags: ["Document Trust Analysis"]
---

# List Document Trust Analyses

`GET /document_analyses`

Returns the list of all Document Trust Analyses within your organization.
You can limit the number of items returned by using filters and pagination.
Consult our [guide](https://developers.youtrust.com/docs/document-analysis) for more details and examples.

**🔓 Endpoint access**
- Environments: `production`, `sandbox`
- API key scopes: `organization`, `workspace`
- Plans: `pro`, `scale`
- Add-ons (for production access): `Document Analysis or Document Trust Advanced`

## Query parameters

- `after` string
- `limit` integer
- `status` object — Filter by status.
- `type` object — Filter by type.
- `workspace_id` object — Filter by workspace_id.
- `workflow_session_id` object — Filter by workflow_session_id.

## Response `200`

OK

- GetDocumentAnalyses200Response
  - `meta` Pagination — Metadata about the response.
    - `next_cursor` string, nullable, required — Token to get the next page of results. If `null`, there are no more pages.
  - `data` DocumentAnalysisMeta[]
    - `id` string, uuid, required — Unique identifier of the Document Analysis.
    - `workspace_id` string, uuid, required — The Workspace ID in which the Document Analysis has been created.
    - `workflow_session_id` string, uuid, required — Unique identifier of a Workflow Session. When provided, an Action is created in the Workflow Session, and this resource is associated with that Action.
    - `previous_attempt_id` string, uuid, required — ID of the previous attempt within the same `workflow_session_id`. Allows continuity between multiple attempts of the same Action. Null if this is the first attempt.
    - `applicant_id` string, uuid, required — Unique identifier of an Applicant.
    - `created_at` string, date-time, required — Creation date of the Document Analysis.
    - `updated_at` string, date-time, required — Update date of the Document Analysis.
    - `status` 'pending' | 'awaiting_data' | 'done' | 'inconclusive' | 'failed', required — Status of the Document Analysis.
    - `status_codes` string[], required — List of status codes. Indicates the cause when the status is `failed`. `DA_1001` is **deprecated**: it is still emitted alongside more specific check-failure codes (e.g. `DA_2001`, `DA_2002`) for backward compatibility. New integrations should rely on the specific codes.
    - `country_code` unknown, required
    - `data_anonymized` boolean, required — Indicates if the personal data extracted from the document has been anonymized. If set to `true`, the personal data has been anonymized and most fields will be NULL.
    - `analysis_type` AnalysisType — Describes what the Document Analysis performed. - `extraction: true`: data was extracted from the document (a document `type` is present). - `extraction: false`: fraud-only analysis (no data extraction, no `type`).
      - `extraction` boolean — Whether data was extracted from the document.
      - `fraud_level` string — Level of fraud detection that was run. `null` when fraud detection was not requested.
    - `fraud_risk_analysis` FraudRiskAnalysis — Result of the fraud detection analysis.
      - `risk_level` string, required — Overall fraud risk level of the document. `null` when not yet determined.
      - `indicators` object[], required — List of fraud indicators detected on the document.
        - `indicator` string, required — Machine-readable identifier of the detected indicator.
        - `type` string, required — Type of the indicator.
        - `category` string, required — Category the indicator belongs to.
        - `title` string, required — Human-readable title of the indicator.
        - `description` string, required — Human-readable description of the indicator.

## Other responses

- `400` — Bad request
- `401` — Access unauthorized
- `403` — Access forbidden
- `405` — This method is not allowed
- `429` — Too Many Requests, please try again later.
- `500` — Internal Server Error

---

[API](https://skmtc.net/yousign/apis/public-api-v3.md) · [All operations](https://skmtc.net/yousign/apis/public-api-v3/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/yousign/public-api-v3/revisions/8d258c0b45d6/schema)
