For the complete documentation index, see llms.txt. This page is also available as Markdown.

Pairs List

Get the list of available futures trading pairs on PointPay Exchange.

Details

GET https://api.pointpay.io/fapi/v1/public/trade/pairs

CURL Example
curl -X GET "https://api.pointpay.io/fapi/v1/public/trade/pairs" -H "accept: application/json"

Response parameters:

Name
Type
Description

asset

STRING

Base asset

quotable

STRING

Quote asset

pair

STRING

Trading pair

{
  "notification": null,
  "warning": null,
  "variables": null,
  "status": "000000",
  "response": [\
    {\
      "asset": "BTC",\
      "quotable": "USDT",\
      "pair": "BTCUSDT"\
    },\
    ...\
  ]
}

Response example:

<html>

<head>
	<title>400 Bad Request</title>
</head>

<body>
	<center>
		<h1>400 Bad Request</h1>
	</center>
	<hr>
	<center>nginx</center>
</body>

</html>

This error occurs in the following cases:

  • Invalid URL

  • Request contains invalid headers

Response example:

This error occurs in the following cases:

  • The requested URL was not found

Last updated