Skip to main content
Toggles the star state of a specific market_id. If the market is already in the watchlist, it will be removed. If it is not in the watchlist, it will be added.
curl -X POST \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"market_id": "0x91836...18391"}' \
  https://polychadsbot.xyz/api/v1/user/watchlist
{
  "market_id": "0x91836...18391",
  "starred": true
}
FieldTypeDescription
market_idstringThe Polymarket ID that was toggled
starredbooleanThe new state (true if added, false if removed)