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

Get Favorites

Get the list of favorite futures pairs on PointPay Exchange.

Details

GET https://api.pointpay.io/fapi/v1/private/favorites

Headers

Name
Type
Description

X-TXC-APIKEY*

STRING

Public API key

X-TXC-PAYLOAD*

STRING

Base64-encoded request body

X-TXC-SIGNATURE*

STRING

HmacSHA512 signature of the request body

CURL Example
curl -X GET "https://api.pointpay.io/fapi/v1/private/favorites" \
  -H "accept: application/json" \
  -H "X-TXC-APIKEY: <api-key>" \
  -H "X-TXC-PAYLOAD: <base64-payload>" \
  -H "X-TXC-SIGNATURE: <signature>"

200: OK Successful

Response parameters:

Each item in response contains:

Name
Type
Description

item

STRING

Favorite pair

Response example:

{
    "response": [
        "BTCUSDT"
    ],
    "status": 201,
    "errors": null,
    "notification": null,
    "warning": null,
    "variables": null
}

Last updated