GET
/
getWatchlist
Get User Watchlist
curl --request GET \
  --url http://localhost:2400/getWatchlist \
  --header 'Authorization: Bearer <token>'
[
  {
    "address": "0x6982...",
    "network": "eth",
    "symbol": "PEPE",
    "quoteToken": "ETH",
    "pairaddress": "0xa43f...",
    "name": "Pepe"
  },
  {
    "address": "SoLTokenAddress...",
    "network": "sol",
    "symbol": "WIF",
    "quoteToken": "SOL",
    "pairaddress": "SoLPairAddress...",
    "name": "dogwifhat"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

Successful retrieval of user watchlist.

The response is of type object[].