GET
/
api
/
v1
/
wallets
/
markets
List markets
curl --request GET \
  --url https://secureapi.dyrectpay.com/api/v1/wallets/markets \
  --header 'x-api-key: <api-key>' \
  --header 'x-signature: <api-key>' \
  --header 'x-timestamp: <api-key>'
{
  "status": "success",
  "message": "Markets fetched successfully",
  "data": {
    "btcusdt": {
      "at": 1779411663,
      "ticker": {
        "buy": "77335.82",
        "sell": "77382.76",
        "last": "77360.51"
      }
    },
    "usdtngn": {
      "at": 1779411663,
      "ticker": {
        "buy": "1377.98",
        "sell": "1385.6",
        "last": "1377.98"
      }
    }
  }
}

Authorizations

x-api-key
string
header
required

API key issued to your integration.

x-timestamp
string
header
required

Request timestamp used for signature verification.

x-signature
string
header
required

Request signature generated by your backend.

Response

Successful response.

status
string
Example:

"success"

message
string
Example:

"success"

data
any | null

Endpoint-specific response payload.