[Deprecated] Price API

Real-time market price inquiry API (delay time: 30 seconds)

Get All makret price

GET https://open-api.dexlab.space/v1/prices

Display current prices for all markets

{
    "success": true,
    "data": [
        {
            "price": "0.1000000000",
            "market": "SWAG/USDT",
            "time": "2021-01-31T16:53:35.559Z",
            "marketAddress": "AF2oQQaLtcrTnQyVs3EPTdyw57TPaK6njKYDq2Qw7LqP"
        },
        {
            "price": "0.8619200000",
            "market": "FIDA/USDC",
            "time": "2021-02-05T14:07:04.000Z",
            "marketAddress": "FrDavxi4QawYnQY259PVfYUjUvuyPNfqSXbLBqMnbfWJ"
        },
        {
            "price": "6.8160000000",
            "market": "SOL/USDT",
            "time": "2021-02-05T14:07:33.000Z",
            "marketAddress": "7xLk17EQQ5KLDLDe44wCmupJKJjTGd8hs3eSVVhCx932"
        }
    ]
}

Get All market 24h change price

GET https://open-api.dexlab.space/v1/prices/recent

Inquiry of price change information compared to 24 hours

Get market price

GET https://open-api.dexlab.space/v1/prices/:address/last

Path Parameters

Name
Type
Description

address

string

Get market 24 hours ago price

GET https://open-api.dexlab.space/v1/prices/:address/closing-price

Market price inquiry up to 24 hours ago

Path Parameters

Name
Type
Description

address

string

Last updated