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

Add Favorite

Add a futures pair to favorites on PointPay Exchange.

Details

POST 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

Request Body

Name
Type
Description
Example

pair*

STRING

Trading pair to add to favorites

BTCUSDT

Fields marked with * are required.

CURL Example
curl -X POST "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>" \
  -H "Content-Type: application/json" \
  -d '{
    "pair": "BTCUSDT"
  }'

200: OK Successful

Response parameters:

Name
Type
Description

message

STRING

Result message identifier

Response example:

{
  "response": {
    "message": "futures.favoritePair.delete.success"
  },
  "status": 201,
  "errors": null,
  "notification": null,
  "warning": null,
  "variables": null
}

Last updated