Add order

Information

Method order/create
Return Order ID
URL Example https://lazyfox.top/en/api/v1/order/create?link=https%3A%2F%2Fwww.instagram.com%2Fp%2FQhymBxjE3I%2F&quantity=250&service=45&key=1dbb8074d9ddb2b92279ecf9df94c2a08152207e49519bc16af878c75e9a04a6

Params

Param Type Description
quantity Integer Quantity
link String URL
service Integer ID services
comments (optional) String Comments listed with \n
key String API Token

Response example

{
    "success": true,
    "data": {
        "order": 18341
    }
}
            

View order

Information

Method order/view
Return
  • charge (float, int) - order cost
  • start_count (int, null) - start count
  • status (string) - processing status.

    Allowed status:

    Value Description
    Processing Order sent to work
    Completed Order fully completed
    Canceled Canceled. Often because of the incorrect data entry by the user. The order amount is completely or partially returned to the balance.
    Partial Partially completed. The order is not fully completed, the amount for the unfulfilled part is returned to the balance of the user.
    Pending In queue to launching
    Problem An error has occurred. The service manager received a notice of her.
  • remains (int, null) - remains to execution
URL Example https://lazyfox.top/en/api/v1/order/view?id=542&key=1dbb8074d9ddb2b92279ecf9df94c2a08152207e49519bc16af878c75e9a04a6

Params

Param Type Description
id Integer Order ID
key String API Token

Response example:

{
    "success": true,
    "data": {
        "charge": 12.7,
        "start_count": 155,
        "status": "Processing",
        "remains": null
    }
}