1. Users
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. Users

List customers

Entorno sandbox
https://sandbox.cryptopocket.io/api
Entorno sandbox
https://sandbox.cryptopocket.io/api
GET
/customers/list
Returns a paginated list of users/customers associated with the authenticated integration.

Solicitud

Parámetros de consulta

Parámetros de Header

Parámetros del Body application/x-www-form-urlencoded

Respuestas

🟢200
application/json
Bodyapplication/json

Solicitud Ejemplo de Solicitud
Shell
JavaScript
Java
Swift
curl --location 'https://sandbox.cryptopocket.io/api/customers/list?from=YYYY-MM-DD&to=YYYY-MM-DD&email=undefined&items_per_page=undefined&page=undefined' \
--header 'auth;'
Respuesta Ejemplo de Respuesta
SUCCESS
{
    "status": "ok",
    "page": 1,
    "total_items": 42,
    "data": [
        {
            "id": 123,
            "name": "John",
            "last_name": "Doe García",
            "email": "user@example.com",
            "kyc_status": "valid"
        },
        {
            "id": 124,
            "name": "Jane",
            "last_name": "Smith",
            "email": "jane@example.com",
            "kyc_status": "unused",
            "kyc_url": "https://kyc.amlbot.com/..."
        }
    ]
}
Modificado en 2026-06-24 01:54:33
Anterior
Get Available Assets
Siguiente
Create customer
Built with