Welcome to the ICARUS API!

List of changes:

About Service:

How to top up your balance

Address - Address for deposit, as soon as we get 3 confirmations - we will top up your account

  • Method: GET
  • Types of coins : btc, ltc
  • Relative URL: /api/balance/topup?coin=coin

        "status": "confirm",
        "address": "1FfmbHfnpaZjKFvyi1okTjJJusN455paPH"
                

        "userid": "62bfe343a85640d502b08b450f3bg3db"
                

If error #1 occurs, you need to write a request by selecting a coin:


        "status": "Address is invalid"
                

If error #2 occurs, you need to select a coin:


        "status": "Coin is invalid"
                

How to check your balance

  • Method: GET
  • Relative URL: /api/balance

        "balance": 10343
                

        "userid": "62bfe343a85640d502b08b450f3bg3db"
                

If error #1 occurs, you need to add your "userid" in the headers:


        "status": "Authorization failed"
                

How to create new order

  • Method: POST
  • Types : ssn, dl, dob
  • Relative URL: /api/order/create?type=type
  • Date format: mm/dd/yyyy
  • If the order type was not selected, the default setting is "ssn".

        "fname": "Jeffrey",
        "lname": "Caldara",
        "dob": "12/01/1970",
        "address": "40 Claremont Rd",
        "city": "Scarsdale",
        "state": "NY",
        "zip": "10583"
                

        "status": "success",
        "order_id": 1
                

        "Content-Type": "application/json",
        "userid": "62bfe343a85640d502b08b450f3bg3db"
                

If error #1 occurs, you need to correct your body of the request in the template format:


        "status": "Body request is invalid"
                

How to check order status

  • Method: GET
  • Relative URL: /api/order/status?order_id=1
  • Query might be:

    • Order_id is invalid - Received an invalid "Order_id"
    • No order found - Your order was not found
    • Order already purchased - Your order has already been purchased
    • Order in the queue - Your order is in the queue
    • Order is ready - Your order is ready now

        "status": "query"
                

        "userid": "62bfe343a85640d502b08b450f3bg3db"
                

How to get the result of your order

  • Method: GET
  • Relative URL: /api/order/result?order_id=1

        "status": "found",
        result: "090606859"
                

        "userid": "62bfe343a85640d502b08b450f3bg3db"