Cryptomus · Example Payload

Create Invoice

Example request body for creating a Cryptomus payment invoice

CryptocurrencyPaymentsInvoicesPayoutsExchange RatesCrypto Gateway

Create Invoice is an example object payload from Cryptomus, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titledescriptionrequestresponse

Example Payload

Raw ↑
{
  "title": "Create Invoice Request Example",
  "description": "Example request body for creating a Cryptomus payment invoice",
  "request": {
    "method": "POST",
    "url": "https://api.cryptomus.com/v1/payment",
    "headers": {
      "merchant": "YOUR_MERCHANT_UUID",
      "sign": "MD5(base64_encode(body) + API_KEY)",
      "Content-Type": "application/json"
    },
    "body": {
      "amount": "10.00",
      "currency": "USD",
      "order_id": "order-12345",
      "network": "TRC20",
      "url_callback": "https://yoursite.com/webhook/payment",
      "url_return": "https://yoursite.com/payment/cancel",
      "url_success": "https://yoursite.com/payment/success",
      "lifetime": 3600,
      "to_currency": "USDT"
    }
  },
  "response": {
    "state": 0,
    "result": {
      "uuid": "a7c5f2e1-8b3d-4f90-a1e2-3c4d5e6f7a8b",
      "order_id": "order-12345",
      "amount": "10.00",
      "payment_amount": null,
      "payer_amount": null,
      "discount_percent": null,
      "discount": "0",
      "payer_currency": null,
      "currency": "USD",
      "merchant_amount": null,
      "network": "TRC20",
      "address": null,
      "from": null,
      "txid": null,
      "payment_status": "check",
      "url": "https://pay.cryptomus.com/pay/a7c5f2e1-8b3d-4f90-a1e2-3c4d5e6f7a8b",
      "expired_at": 1718000000,
      "is_final": false,
      "additional_data": null,
      "created_at": "2026-06-13T10:00:00Z",
      "updated_at": "2026-06-13T10:00:00Z"
    }
  }
}