Skip to content

/info

Returns information about invoices previously created using the /create or /create-payment endpoints.

Returns detailed invoice information, including status, amounts, and payment data.

  • Method: POST
  • URL: https://api.cru.cash/v1/invoice/info
  • Headers: Authorization: Bearer YOUR_API_KEY_HERE
FieldJSON NameTypeRequiredDescription / Validation
Invoice ID*invoice_idstringtrueUnique invoice ID generated by the platform when the invoice is created. Must reference an existing invoice.
FieldJSON NameTypeDescription
Invoice IDidstringUnique invoice ID generated by the platform.
Fiat Amountfiat_amountstringInvoice amount in fiat currency specified at creation.
Fiat Currencyfiat_currencystringFiat currency code (ISO), e.g. USD, EUR, `RUB.
Crypto Amountcrypto_amountstringAmount in cryptocurrency to be paid by the customer. If the customer hasn’t selected a crypto and network yet, this value will be "0".
Network feenetwork_feestringNetwork fee, shown in crypto. Cru Cash does not charge a service fee.
CryptoсurrencycryptostringCryptocurrency selected by the customer. If not yet selected, this value will be "NONE".
NetworknetworkstringNetwork selected by the customer. If not yet selected, this value will be "NONE".
Payment Statuspay_statusstringPayment status (end, paid, not_paid).
Processing Statusprocessing_statusstringStatus of funds settlement. processing means the payment is in hold and will soon arrive in the merchant’s account. processed means the funds are already credited to the merchant.
Is Paidis_paidbooleanIndicates whether the invoice has been successfully paid.
Created Atcreated_atstring (ISO 8601)Timestamp when the invoice was created, in UTC (formatted as ISO 8601, e.g., 2026-02-05T18:29:31Z).
Testing Modeis_testingbooleanIndicates whether the invoice was created in test mode.
PayloadpayloadstringOptional merchant-defined metadata passed at invoice creation and returned unchanged.
HeaderValueDescription
AuthorizationBearer YOUR_API_KEY_HEREYour API key for authentication
{
"invoice_id": "8be67d29-69aa-4ff9-8157-c5e5b4a53d5c"
}
{
"id": "8be67d29-69aa-4ff9-8157-c5e5b4a53d5c",
"fiat_amount": "100",
"fiat_currency": "USD",
"crypto_amount": "0",
"network_fee": "0",
"crypto": "NONE",
"network": "NONE",
"pay_status": "not_paid",
"processing_status": "pending",
"is_paid": false,
"created_at": "2026-02-05T00:06:59Z",
"is_testing": false,
"payload": ""
}