Skip to main content
Save a custom configuration of alert filters to easily reuse later on the dashboard.
curl -X POST \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name": "Whale Buys", "filters": {"min_usdc": 5000}}' \
  https://polychadsbot.xyz/api/v1/presets
{
  "id": "2",
  "name": "Whale Buys"
}
FieldTypeDescription
namestringRequired. A label for your preset.
filtersobjectRequired. Key-value pairs of filters (e.g. {"min_usdc": 1000}).
created_atstringOptional UTC timestamp. Defaults to now.