PAYNOW API

HTTP Method POST
API URL https://api.paynow.uz/api/v2
API Key Get an API key: PayNowuz Support
Response JSON

Service list

Parameters Description
key Your API key
action services
Example response
[
    {
        "service": 1,
        "name": "7-day Join — Telegram Members",
        "type": "Default",
        "category": "Telegram Members",
        "rate": "60.00000",
        "min": 10,
        "max": 100000,
        "refill": false,
        "cancel": true
    },
    {
        "service": 3,
        "name": "Poll Votes — Telegram",
        "type": "Poll",
        "category": "Telegram Votes",
        "rate": "36.00000",
        "min": 10,
        "max": 50000,
        "refill": false,
        "cancel": true
    }
]

Add order

Parameters Description
key Your API key
action add
service Service ID
link Link to page (e.g. https://t.me/channel)
quantity Needed quantity
Example response
{
    "order": 23501
}

Order status

Parameters Description
key Your API key
action status
order Order ID
Possible statuses:
Pending In progress Completed Partial Cancelled
Example response
{
    "charge": "0.27819",
    "start_count": 0,
    "status": "In progress",
    "remains": 157,
    "currency": "UZS"
}

Multiple orders status

Parameters Description
key Your API key
action status
orders Order IDs (separated by comma, up to 100)
Example response
{
    "1": {
        "charge": "0.27819",
        "start_count": 0,
        "status": "Completed",
        "remains": 0,
        "currency": "UZS"
    },
    "10": {
        "error": "Incorrect order ID"
    }
}

Cancel order

Parameters Description
key Your API key
action cancel
orders Order IDs (separated by comma, up to 100)
Works only on Pending or In progress orders. Refund is automatic.
Example response
[
    {
        "order": 1,
        "cancel": { "status": 1 }
    }
]

User balance

Parameters Description
key Your API key
action balance
Example response
{
    "balance": "100.84292",
    "currency": "UZS"
}

Error format

Error response
{
    "error": "Not enough funds on balance"
}
Error Description
Invalid API key API key is invalid or user is blocked
Incorrect request Invalid request format or missing action
Incorrect service ID Service not found or is not active
Bad link Link parameter is missing or empty
Quantity less than minimum Requested quantity is below the service minimum
Quantity more than maximum Requested quantity exceeds the service maximum
Not enough funds on balance Insufficient balance to place the order
Incorrect order ID Order not found or does not belong to this user
Answer number is required Poll service requires the answer_number parameter