1. OnRamp
CryptopocketAPI
  • Common
    • Authentication
      POST
    • User Registration
      POST
    • Check KYC Verification
      GET
    • Token Price
      GET
  • OnRamp
    • Get payment methods
      GET
    • Get Quote
      GET
    • Create Payment Intend (RampOn)
      POST
    • Get Payment
      GET
    • List of Payments
      GET
  • OffRamp
    • Get quote
      GET
    • Create rampoff opetation
      POST
    • Get rampoff status
      GET
    • Get List
      GET
  • Webhooks
    • Webhook Event Update
      POST
    • Webhook Event Subscribe
      POST
  1. OnRamp

List of Payments

GET
/api/deposit
This endpoint retrieves information about all payment transactions performed on the platform, providing detailed insights into each transaction, including its status and related data.
RESPONSE :
{
  "status": "ok",
  "data": [
    {
      "id": "zcjHMrcTtVvjssAM9P9SaitC4",
      "external_id": null,
      "status": "payment_received",
      "fiat_amount": 1000,
      "fiat_symbol": "EUR",
      "coin_symbol": "USDC",
      "coin_amount": "11.9803",
      "created_at": "2023-10-04T13:50:55.000000Z"
    },
    {
      "id": "9NM6ICl2KDaUiMtkDm4JSTqdQ",
      "external_id": "23232323231",
      "status": "started",
      "fiat_amount": 10000,
      "fiat_symbol": "EUR",
      "coin_symbol": "USDT",
      "coin_amount": "101.19873800",
      "created_at": "2023-10-05T08:24:46.000000Z"
    }
  ]
}

Solicitud

Parámetros del Body application/json

Ejemplos

Respuestas

🟢200
application/json
Body

Solicitud Ejemplo de Solicitud
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/deposit' \
--header 'Content-Type: application/json' \
--data-raw '{
  "project_id": 106
}'
Respuesta Ejemplo de Respuesta
{}
Modificado en 2026-04-08 18:27:00
Anterior
Get Payment
Siguiente
Get quote
Built with