Get Started
Invoice
Invoice Flow
Balance
Rate
Exchange
Transfer
Crypto Withdraw

Transfer

With this API, you can send the amount from your account to another account in this service.

Transfer

POST https://api.zipay.io/api/transfer

Name Type Mandatory Description
receiver string yes Account number or email of receiver account. example 10017USD, 10017 and [email protected]
amount float yes Amount 100.99
currency string yes One of USD , USDT and IRT
order_id string yes Use a unique order id . The max length is 200.
description string no The max length is 200.


Response:
{
    "result": {
        "trackid": "8091654a-3dd9-4e41-b511-60bd23629779",
        "amount": "10",
        "coin": {
            "name": "United States dollar",
            "currency": "USD",
            "symbol": "$"
        },
        "transfer_type": "transfer_out",
        "type": "api",
        "order_id": "19",
        "description": "Send amount to example account#1",
        "sender": {
            "account_number": 10025,
            "email": "info*****ple.com"
        },
        "receiver": {
            "account_number": 10017,
            "email": "info*****ple.org"
        },
        "time": 1680166248,
        "date": "30/03/2023 08:50 UTC",
        "datew3c": "2023-03-30T08:50:48+00:00"
    },
    "success": true,
    "status": 200
}
    


Transfer List

POST https://api.zipay.io/api/transfer-list

Name Type Mandatory Description
trackid string no 3986770a-2e38-4a27-a7ce-5dbc804aaf79
transfer_type string no Use transfer_out or transfer_in
order_id string no The max length is 200.
limit integer no default is 10
page integer no default is 1
sort string no default is desc you can use asc


Response:
{
    "items": [
        {
            "trackid": "8091654a-3dd9-4e41-b511-60bd23629779",
            "amount": "10",
            "coin": {
                "name": "United States dollar",
                "currency": "USD",
                "symbol": "$"
            },
            "transfer_type": "transfer_out",
            "type": "api",
            "order_id": "19",
            "description": "Send amount to example account#1",
            "sender": {
                "account_number": 10025,
                "email": "info*****ple.com"
            },
            "receiver": {
                "account_number": 10017,
                "email": "info*****ple.org"
            },
            "time": 1680166248,
            "date": "30/03/2023 08:50 UTC",
            "datew3c": "2023-03-30T08:50:48+00:00"
        },
        {
            "trackid": "211e2411-de13-4b0b-9a1d-271893979469",
            "amount": "100000",
            "coin": {
                "name": "United States dollar",
                "currency": "USD",
                "symbol": "$"
            },
            "transfer_type": "transfer_out",
            "type": "api",
            "order_id": "13",
            "description": "ssss",
            "sender": {
                "account_number": 10025,
                "email": "info*****ple.com"
            },
            "receiver": {
                "account_number": 10017,
                "email": "info*****ple.org"
            },
            "time": 1680086861,
            "date": "29/03/2023 10:47 UTC",
            "datew3c": "2023-03-29T10:47:41+00:00"
        },
        {
            "trackid": "2f484307-cac5-4fdb-8f6a-557ade0f46a5",
            "amount": "0.01",
            "coin": {
                "name": "United States dollar",
                "currency": "USD",
                "symbol": "$"
            },
            "transfer_type": "transfer_out",
            "type": "api",
            "order_id": "12",
            "description": "ssss",
            "sender": {
                "account_number": 10025,
                "email": "info*****ple.com"
            },
            "receiver": {
                "account_number": 10017,
                "email": "info*****ple.org"
            },
            "time": 1680086839,
            "date": "29/03/2023 10:47 UTC",
            "datew3c": "2023-03-29T10:47:19+00:00"
        }
    ],
    "total": 9,
    "limit": 3,
    "page": 1,
    "sort": "desc",
    "0": null,
    "success": true,
    "status": 200
}