Invoice Status Check

To get information about all payments on an account, send a GET request to the following URL:

GET https://api.cryptocloud.plus/v1/invoice/info

Request Body

NameTypeDescription

uuid*

string

Unique invoice identifier

{
  "status": "success",
  "status_invoice": "paid"
}

Request examples

These examples show how you can execute a request to check the status of an invoice using Python and JavaScript. Note that you need to provide your API key in the Authorization header to authorize the request successfully.

import requests

url = "https://api.cryptocloud.plus/v1/invoice/info"
headers = {
    "Authorization": "Token <API KEY>"
}

response = requests.get(url, headers=headers)

if response.status_code == 200:
    print("Success:", response.json())
else:
    print("Fail:", response.status_code, response.text)

Last updated