Skip to main content
Update Account Interests
curl --request POST \
  --url https://synthesis.trade/api/v1/account/interests \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "interests": [
    "crypto",
    "politics"
  ]
}
'
{
  "success": true,
  "response": [
    "crypto",
    "politics"
  ]
}

Authorizations

X-API-KEY
string
header
required

Account secret API key.

Body

application/json
interests
string[]
required

Array of 1-10 interest tags. Each tag must be 2-20 characters and use only letters, _, or -.

Example:
["crypto", "politics"]

Response

Account interests updated