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

Profile

Get the futures profile on PointPay Exchange.

Details

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

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/profile" \
  -H "accept: application/json" \
  -H "X-TXC-APIKEY: <api-key>" \
  -H "X-TXC-PAYLOAD: <base64-payload>" \
  -H "X-TXC-SIGNATURE: <signature>"

Response parameters:

Name
Type
Description

allowedCurrency

ARRAY

List of supported futures currencies

Each item in allowedCurrency contains:

Name
Type
Description

name

STRING

Currency name

ticker

STRING

Currency ticker

image

STRING

Currency image URL

Response example:

{
    "notification": null,
    "warning": null,
    "variables": null,
    "status": "000000",
    "response": {
        "allowedCurrency": [\
            {\
                "name": "Tether USD",\
                "ticker": "USDT",\
                "image": "https://pointpay.io/storage/currency/T3wDRn05a7bzOEPJuZYu2l2H7bsOm9V5lbCClEPd.svg"\
            },\
            {\
                "name": "USD Coin",\
                "ticker": "USDC",\
                "image": "https://pointpay.io/storage/currency/fjN85chuRuhFjoPcfA8v9j7PDU4RSU0elMcmGVKE.svg"\
            }\
        ]
    },
    "errors": null
}

Response example

Returned when the request is invalid.

Common reasons:

  • Invalid request format

  • Invalid headers

Response example

Returned when authentication headers are missing / invalid or API Keys are not enabled.

Last updated