> ## Documentation Index
> Fetch the complete documentation index at: https://guides.saber.money/llms.txt
> Use this file to discover all available pages before exploring further.

# List EDD Requests (v1)

> Retrieve a list of all EDD (Enhanced Due Diligence) requests along with their statuses.



## OpenAPI

````yaml /openapi-v1.json get /api/v2/wallet/limits/edd/requests
openapi: 3.1.0
info:
  title: Saber Money API (v1)
  version: v1
  description: >-
    ## Authentication


    There is no standalone API-key auth — every request must be **signed**. An
    API key by itself authenticates nothing. Each call requires four headers
    together: `X-Api-Key` (your key), `X-Signature` (HMAC-SHA256 of `apiKey +
    timestamp` — or `apiKey + timestamp + userId` when `X-User-Id` is required —
    keyed with your API secret), `X-Timestamp` (unix seconds), and
    `X-Request-Id` (any unique string per request). The signature must be
    computed by a client script; there is no way to derive it by hand. Use the
    HMAC Generator flow to compute valid values for manual testing.


    ## Common Authentication Errors


    - **Invalid Client ID**: {"error_code":6092,"message":"X-Client-Id
    invalid","success":false}

    - **Invalid Secret**: {"error_code":6090,"message":"invalid
    secret","success":false}

    - **Timestamp (Older than 10 secs)**:
    {"errors":{"error_code":6093,"text":"timestamp expired"},"success":false}
servers:
  - url: https://api.saber.money
security: []
paths:
  /api/v2/wallet/limits/edd/requests:
    get:
      tags:
        - KYC and EDD Operations
      summary: List EDD Requests (v1)
      description: >-
        Retrieve a list of all EDD (Enhanced Due Diligence) requests along with
        their statuses.
      operationId: list-edd-requests-v1
      parameters:
        - name: X-Api-Key
          in: header
          required: true
          description: Your API key (configured in credentials)
          schema:
            type: string
        - name: X-Signature
          in: header
          required: true
          description: >-
            HMAC-SHA256 signature (auto-generated) To test manually: HMAC-SHA256
            of `apiKey + timestamp` (or `apiKey + timestamp + userId` when
            X-User-Id is required), keyed with your API secret. The HMAC
            Generator flow computes this for you.
          schema:
            type: string
        - name: X-Timestamp
          in: header
          required: true
          description: >-
            Unix timestamp in seconds (auto-generated) Unix seconds, e.g.
            `Math.floor(Date.now() / 1000)`. Must match the timestamp used in
            the X-Signature computation.
          schema:
            type: string
        - name: X-Request-Id
          in: header
          required: true
          description: >-
            Unique request identifier (auto-generated) Any unique string per
            request, e.g. a UUID.
          schema:
            type: string
        - name: X-User-Id
          in: header
          required: true
          description: User UUID (set above)
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: object
                    properties:
                      count:
                        type: integer
                      requests_list:
                        type: array
                        items:
                          type: object
              example:
                success: true
                data:
                  count: 8
                  requests_list:
                    - uuid: c2a7dfec-5de6-431a-be43-cebd54d39def
                      user_uuid: 46ee6ed5-5253-40d7-9799-7434afcf78dc
                      status: APPROVED
                      comment: rrr
                      created_at: '2026-01-27T09:09:40Z'
                      updated_at: '2026-02-18T12:06:26Z'
                    - uuid: 362c87bb-ee25-4516-b9d0-5d24592eb4b0
                      user_uuid: e133bb60-f568-44f1-9eeb-574ce24f6910
                      status: APPROVED
                      comment: APPROVED from cybrid
                      created_at: '2025-08-27T10:29:42Z'
                      updated_at: '2025-08-27T10:32:13Z'
                    - uuid: 36e2f082-0740-4ae7-881c-80afe0d88bd3
                      user_uuid: fc23a2c9-5b1b-4953-93ab-4a07d1aaa7ac
                      status: IN_REVIEW
                      comment: ''
                      created_at: '2025-02-05T13:31:27Z'
                      updated_at: '2025-02-05T13:31:27Z'
                    - uuid: 95600ea6-086d-4587-8f67-36b1ca2a2d2a
                      user_uuid: fc23a2c9-5b1b-4953-93ab-4a07d1aaa7ac
                      status: INITIATED
                      comment: ''
                      created_at: '2025-01-22T17:20:41Z'
                      updated_at: '2025-01-22T17:20:41Z'

````

## Related topics

- [Get EDD Request (v1)](/api-reference/kyc-and-edd-operations/get-edd-request-v1.md)
- [Edd status change v1](/api-reference/webhooks/edd-status-change-v1.md)
- [List Transactions (v1)](/api-reference/offramp/list-transactions-v1.md)
- [Get List of Internal Transfers (All) (v1)](/api-reference/wallet-operations/get-list-of-internal-transfers-all-v1.md)
- [Get List of Crypto Withdraw Transactions (v1)](/api-reference/wallet-operations/get-list-of-crypto-withdraw-transactions-v1.md)
