GET
/
dexs
/
trades
/
{dex}
/
{pair}
DEX and Pair Trades
curl --request GET \
  --url https://mainnet.gomaestro-api.org/v1/markets/dexs/trades/{dex}/{pair} \
  --header 'api-key: <api-key>'
[
  {
    "a_to_b": 123,
    "coin_a_price": 123,
    "coin_a_size": 123,
    "coin_b_price": 123,
    "coin_b_size": 123,
    "dex": "<string>",
    "pair": "<string>",
    "receiver_address": "<string>",
    "timestamp": "<string>",
    "transaction_hash": "<string>"
  }
]

Authorizations

api-key
string
header
required

Project API Key

Path Parameters

dex
string
required

minswap

pair
string
required

ADA-MIN

Query Parameters

from
string

2023-04-01

to
string

2023-05-15

limit
integer
default:5000

10000

Required range: 1 <= x <= 50000
sort
enum<string>

desc

Available options:
asc,
desc

Response

200
application/json

OK

The response is of type object[].