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

# Transacciones

> Obtener transacciones de una billetera.

<ParamField path="customer_id" type="string" required placeholder="9dd4158b-0e45-42bc-b56f-a4c1f856814d">
  ID del cliente dueño de la billetera. [Crear cliente](/client/customers/create).
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
     "data":[
        {
           "id":"0194b42f-5515-7245-b9f4-193c92f37b8c",
           "type":"deposit",
           "amount":1000,
           "label":"$1.000",
           "concept":"Transferencia de fondos a Andres Silva G\u00f3mez, enviado por Andres Silva Gomez",
           "subtype":"WITHDRAW",
           "confirmed":true,
           "node_type":"CashoutLine",
           "created_at":"2025-01-29T22:29:48.000000Z",
           "node":{
              "id":"9e16627d-1eb9-46c4-ba19-b229ea77d68e",
              "customer_id":"9957858a-c2f1-4f18-a5c2-216b4127e278",
              "account_id":"9d005522-fad4-44c2-9012-1dbb871322b5",
              "is_test":false,
              "amount":1000,
              "status":"processed",
              "scheduled_at":null,
              "created_at":"2025-01-29T22:29:48.000000Z",
              "external_id":null,
              "method":"TURBO"
           }
        },
        {
           "id":"0194ad6d-2464-7215-a9a6-8e88d9a5a09d",
           "type":"deposit",
           "amount":1000,
           "label":"$1.000",
           "concept":"Transferencia de fondos",
           "subtype":"WITHDRAW",
           "confirmed":true,
           "node_type":"CashoutLine",
           "created_at":"2025-01-28T14:59:58.000000Z",
           "node":{
              "id":"9e13bea1-e7fd-40be-b2e7-35098504268f",
              "customer_id":"9957858a-c2f1-4f18-a5c2-216b4127e278",
              "account_id":"9d005522-fad4-44c2-9012-1dbb871322b5",
              "is_test":false,
              "amount":1000,
              "status":"processed",
              "scheduled_at":null,
              "created_at":"2025-01-28T14:59:58.000000Z",
              "external_id":null,
              "method":"ACH"
           }
        },
     ],
     "current_page":1,
     "from":1,
     "last_page":65,
     "per_page":20,
     "to":20,
     "total":1291
  }
  ```

  ```json 404 theme={null}
  {
    "message": "Registro no encontrado, Cliente no existe",
    "code": 10002,
    "code_name": "record_not_found"
  }
  ```
</ResponseExample>
