Order API

Fetch Orders

GET /v1/public/user/orders

endpoint

https://app.r2.money

Params

Name
Type
Description

user

string

Address of the user

Response

{
    "code": 200,
    "message": "success",
    "data": [
        {
            "requestId": 0,
            "amount": "999.004",
            "user": "0x12D8......",
            "sta": 1759461779000,
            "eta": 0,
            "referral": 0,
            "state": "finished",
            "depositHash": "0xbece3be5d63a2......",
            "filledHash": "0x",
            "claimedHash": "0x",
            "asset": {
                "symbol": "sR2USD+",
                "token": "0x10F8435DebFE55Df0B336504978C1bA93BA26ca0",
                "blockchain": "ethereum",
                "chainId": 1
            }
        },
        {
            "requestId": 1000099,
            "amount": "500",
            "user": "0x12D88......",
            "sta": 1762129391000,
            "eta": 1762215791000,
            "referral": 0,
            "state": "pending",
            "depositHash": "0x50a8c808......",
            "filledHash": "0x",
            "claimedHash": "0x",
            "asset": {
                "symbol": "sR2USD+",
                "token": "0x1330d4aCf7E6ae7E27C5563F728340b3E3DfA937",
                "blockchain": "ethereum",
                "chainId": 56
            }
        }
    ]
}

Last updated