EN
English
  • Getting Started
    • Documentation Overview
    • How the Integration Works
    • Integration Testing
    • How to Get API Keys
    • SDK for Work with API
    • Integration of Icons and Buttons
    • Cryptocurrency payment instruction
    • Support and FAQ
  • API REFERENCE V2
    • Request Authorization
    • Invoice Creation
    • Invoice Cancellation
    • Invoice List
    • Invoice Information
    • Balance
    • Statistics
    • Static Wallet
    • Funds Withdrawal
    • Automatic POSTBACK
  • API REFERENCE V1 (OLD)
    • Request Authorization
    • Invoice Creation
    • Invoice Status Check
    • Automatic POSTBACK
  • CMS Plugins
    • List of CMS Plugins
      • WooCommerce
      • OpenCart
      • Shopify
      • Tilda
      • GetCourse
      • XenForo 2
      • PrestaShop
      • Drupal
      • WHMCS
  • Buttons and forms
    • HTML-widget
      • HTML-form
      • HTML-button
  • CryptoCloud Website
  • Help Center
  • Brand Guide
Powered by GitBook
On this page
  • Invoice information
  • Request examples

Was this helpful?

  1. API REFERENCE V2

Invoice Information

To get invoice status information, send a POST request to the following URL:

Invoice information

POST https://api.cryptocloud.plus/v2/invoice/merchant/info

A request to get information about invoices by unique identifiers.

The maximum number of identifiers in one request is 100.

Request Body

Name
Type
Description

uuids*

array

List of invoice identifiers (INV-XXXXXXXX or XXXXXXXX)

{
    "status": "success",
    "result": [
        {
            "uuid": "INV-XXXXXXXX",
            "address": "",
            "expiry_date": "2023-01-01 12:00:00.000000",
            "side_commission": "client",
            "side_commission_cc": "client",
            "amount": 100.2,
            "amount_usd": 100.2,
            "received": 100.2,
            "received_usd": 100.2,
            "fee": 1.4,
            "fee_usd": 1.4,
            "service_fee": 0,
            "service_fee_usd": 1.9,
            "status": "overpaid",
            "order_id": "1111",
            "currency": {
                "id": 4,
                "code": "USDT",
                "fullcode": "USDT_TRC20",
                "network": {
                    "code": "TRC20",
                    "id": 4,
                    "icon": "https://cdn.cryptocloud.plus/currency/crypto/TRX.svg",
                    "fullname": "Tron"
                },
                "name": "Tether",
                "is_email_required": false,
                "stablecoin": true,
                "icon_base": "https://cdn.cryptocloud.plus/currency/icons/main/usdt.svg",
                "icon_network": "https://cdn.cryptocloud.plus/icons-currency/USDT-TRC20.svg",
                "icon_qr": "https://cdn.cryptocloud.plus/currency/icons/stroke/usdt.svg",
                "order": 1
            },
            "project": {
                "id": 1,
                "name": "MyStore",
                "fail": "https://test.com?order_id=1111&invoice_uuid=INV-XXXXXXXX",
                "success": "https://test.com?order_id=1111&invoice_uuid=INV-XXXXXXXX",
                "logo": null
            },
            "test_mode": false
        },
        {
            "uuid": "INV-XXXXXXXX",
            "address": "",
            "expiry_date": "2023-01-01 12:00:00.000000",
            "side_commission": "client",
            "side_commission_cc": "client",
            "amount": 100.0,
            "amount_usd": 100.0,
            "received": 0,
            "received_usd": 0,
            "fee": 1.4,
            "fee_usd": 1.4,
            "service_fee": 1.9,
            "service_fee_usd": 1.9,
            "status": "created",
            "order_id": "1111",
            "currency": {
                "id": 4,
                "code": "USDT",
                "fullcode": "USDT_TRC20",
                "network": {
                    "code": "TRC20",
                    "id": 4,
                    "icon": "https://cdn.cryptocloud.plus/currency/crypto/TRX.svg",
                    "fullname": "Tron"
                },
                "name": "Tether",
                "is_email_required": false,
                "stablecoin": true,
                "icon_base": "https://cdn.cryptocloud.plus/currency/icons/main/usdt.svg",
                "icon_network": "https://cdn.cryptocloud.plus/icons-currency/USDT-TRC20.svg",
                "icon_qr": "https://cdn.cryptocloud.plus/currency/icons/stroke/usdt.svg",
                "order": 1
            },

            "project": {
                "id": 1,
                "name": "MyStore",
                "fail": "https://test.com?order_id=1111&invoice_uuid=INV-XXXXXXXX",
                "success": "https://test.com?order_id=1111&invoice_uuid=INV-XXXXXXXX",
                "logo": null
            },
            "test_mode": false
        }
    ]
}
{
    "status": "error",
    "result": {
        "validate_error": "Max 100 uuids"
    }
}
{
    "detail": "Credentials were not provided"
}
{
    "detail": "Signature verification failed"
}

Request examples

These examples show how you can run a request to get invoice information by its INV number. Note that you need to provide your API key in the Authorization header to successfully authorize the request.

curl -X POST https://api.cryptocloud.plus/v2/invoice/merchant/info \
     -H "Authorization: Token <API KEY>" \
     -H "Content-Type: application/json" \
     -d '{"uuids":["INV-XXXXXXXX","INV-YYYYYYYY"]}'
import requests

url = "https://api.cryptocloud.plus/v2/invoice/merchant/info"
headers = {
    "Authorization": "Token <API KEY>"
}
data = {
    "uuids": ["INV-XXXXXXXX", "INV-YYYYYYYY"]
}

response = requests.post(url, headers=headers, json=data)

if response.status_code == 200:
    print("Success:", response.json())
else:
    print("Fail:", response.status_code, response.text)
fetch('https://api.cryptocloud.plus/v2/invoice/merchant/info', {
    method: 'POST',
    headers: {
        'Authorization': 'Token <API KEY>',
        'Content-Type': 'application/json'
    },
    body: JSON.stringify({
        uuids: ['INV-XXXXXXXX', 'INV-YYYYYYYY']
    })
})
.then(response => {
    if (response.ok) {
        return response.json();
    } else {
        throw new Error('Fail: ' + response.status + ' ' + response.statusText);
    }
})
.then(data => console.log('Success:', data))
.catch(error => console.error('Error:', error));
<?php

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, "https://api.cryptocloud.plus/v2/invoice/merchant/info");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode(array(
    "uuids" => array("INV-XXXXXXXX", "INV-YYYYYYYY")
)));

$headers = array(
    "Authorization: Token <API KEY>",
    "Content-Type: application/json"
);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

$response = curl_exec($ch);
if (curl_errno($ch)) {
    echo 'Error:' . curl_error($ch);
} else {
    $statusCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
    if ($statusCode == 200) {
        echo "Success: " . $response;
    } else {
        echo "Fail: " . $statusCode . " " . $response;
    }
}

curl_close($ch);
?>
PreviousInvoice ListNextBalance

Last updated 1 year ago

Was this helpful?