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

Get List

GET
/api/payments
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

Ninguno

Respuestas

🟢200
application/json
Body

Solicitud Ejemplo de Solicitud
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/payments'
Respuesta Ejemplo de Respuesta
{}
Modificado en 2026-04-08 18:59:54
Anterior
Get rampoff status
Siguiente
Webhook Event Update
Built with