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 rampoff status

GET
/api/getRampoff
This endpoint allows querying the status of a ramp-off transaction using the transaction's id. It provides detailed information about the transaction, including the current status, blockchain, cryptocurrency token, number of tokens, decimals and fiat currency equivalent.
Query Parameters:
id: The unique identifier of the ramp-off transaction to be queried.
If the query is successful and the corresponding transaction is found, a JSON response is returned with the status of the transaction and associated details.
RESPONSE EXAMPLE:
{
    "status": "ok",
    "data": {
        "id": "S35AJ0gSzf6P30XJRc2yMsIOK",
        "status": "finished",
        "blockchain": "bsc",
        "crypto": "BUSD",
        "amount": "20000000000000000000",
        "decimals": 18,
        "fiat_amount": "4800.24"
    }
}

Solicitud

Parámetros de consulta

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

Respuestas

🟢200
application/json
Body

Solicitud Ejemplo de Solicitud
Shell
JavaScript
Java
Swift
curl --location -g --request GET '/api/getRampoff?id={{rampoffOperationID}}'
Respuesta Ejemplo de Respuesta
{}
Modificado en 2026-04-08 19:00:10
Anterior
Create rampoff opetation
Siguiente
Get List
Built with