1. Bank Accounts
CryptopocketAPI
  • Common
    • Authentication
      POST
    • Token Price
      GET
    • Get Available Assets
      GET
  • Users
    • List customers
      GET
    • Create customer
      POST
    • Create customer with delegated KYC
      POST
    • Create company customer
      POST
    • Retrieve KYC/KYB verification status
      GET
    • Create enhanced verification link
      POST
    • Upload Customer Document
      POST
    • Find User
      GET
  • OnRamp
    • List payment methods
      GET
    • Get Quote
      GET
    • Create Payment Intend
      POST
    • Create guided payment intent
      POST
    • Retrieve payment
      GET
    • List on-ramp transactions
      GET
  • OffRamp
    • Get quote
      GET
    • Create OffRamp Transaction
      POST
    • Retrieve off-ramp transaction status
      GET
    • List off-ramp transactions
      GET
  • Bank Accounts
    • List bank accounts
      GET
    • List account transactions
      GET
    • Reconcile payment with bank transaction
      POST
  • Webhooks
    • Available webhooks
    • Webhook Event Subscribe
    • Webhook Event Update
  • Docs
    • Sandbox Environment Instructions
    • CryptoPocket Integration Guide — Buy Flow (On-Ramp)
  • Raíz
  • Schemas
    • FindUserSuccess
    • ReconcilePaymentRequest
    • IntegrationError
    • BankAccount
    • ReconcilePaymentSuccessResponse
    • BankAccountsListResponse
    • ErrorResponse
    • BankAccountTransaction
    • Pagination
    • BankAccountTransactionsResponse
  1. Bank Accounts

List account transactions

Entorno sandbox
https://sandbox.cryptopocket.io/api
Entorno sandbox
https://sandbox.cryptopocket.io/api
GET
/banking/accounts/{iban}/transactions
Returns a paginated list of transactions for a bank account assigned to the authenticated integration.
The {iban} path parameter must match the IBAN returned by GET /banking/accounts
(spaces are ignored, case-insensitive).

Solicitud

Parámetros de ruta

Parámetros de consulta

Respuestas

🟢200
application/json
Successful response
Bodyapplication/json

🟠401
🟠404
🔴500
Solicitud Ejemplo de Solicitud
Shell
JavaScript
Java
Swift
curl --location 'https://sandbox.cryptopocket.io/api/banking/accounts//transactions?page=&per_page=&from_date=&to_date=&status=&type=&concept='
Respuesta Ejemplo de Respuesta
200 - Éxito
{
    "status": "ok",
    "data": [
        {
            "transaction_id": "abc123",
            "ext_transaction_id": "ext-456",
            "type": "IN",
            "amount": 1500.5,
            "currency": "EUR",
            "date": "2026-06-20 14:30:00",
            "description": "Transfer received",
            "status": "completed",
            "from_name": "John Doe",
            "from_account": "ES1234567890123456789012",
            "from_bank": "BBVA",
            "to_name": "Cryptopocket",
            "to_account": "ES7620770024003101575796"
        }
    ],
    "pagination": {
        "current_page": 1,
        "last_page": 3,
        "per_page": 50,
        "total": 120,
        "from": 1,
        "to": 50
    }
}
Modificado en 2026-06-24 02:32:40
Anterior
List bank accounts
Siguiente
Reconcile payment with bank transaction
Built with