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

Authentication

POST
/api/authenticate
Obtain your auth token using your API credentials.

Solicitud

Parámetros del Body application/json

Ejemplos

Respuestas

🟢200
application/json
Body

Solicitud Ejemplo de Solicitud
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/authenticate' \
--header 'Content-Type: application/json' \
--data-raw '{
    "api_key": "string",
    "api_secret": "string"
}'
Respuesta Ejemplo de Respuesta
{
    "status": "ok",
    "data": {
        "token": "7hj847h9p3887hioj4398i",
        "expire_at": 1747397304
    }
}
Modificado en 2026-04-08 19:07:32
Siguiente
User Registration
Built with