POST
/
watchlist
Update User Watchlist
curl --request POST \
  --url http://localhost:2400/watchlist \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "action": "add",
  "contractAddress": "0x6982...",
  "network": "eth",
  "quoteToken": "ETH",
  "symbol": "PEPE",
  "name": "Pepe"
}'
{
  "message": "Watchlist updated successfully"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

Successful update of watchlist.

The response is of type object.