GET
/
api
/
v1
/
wallets
/
markets
/
{market}
Get market
curl --request GET \
  --url https://secureapi.dyrectpay.com/api/v1/wallets/markets/{market} \
  --header 'x-api-key: <api-key>' \
  --header 'x-signature: <api-key>' \
  --header 'x-timestamp: <api-key>'
{
  "status": "success",
  "message": "Market fetched successfully",
  "data": {
    "at": "1",
    "ticker": {
      "buy": "102748656.78",
      "sell": "113204130.98",
      "low": "113204130.98",
      "high": "102748656.78",
      "open": "",
      "last": "",
      "vol": ""
    }
  }
}

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.

Path Parameters

market
string
required
Example:

"btc"

Query Parameters

base
enum<string>
Available options:
ngn,
usdt
Example:

"ngn"

Response

Successful response.

status
string
Example:

"success"

message
string
Example:

"success"

data
any | null

Endpoint-specific response payload.