Documentation Index
Fetch the complete documentation index at: https://mintlify.com/dgtlmoon/changedetection.io/llms.txt
Use this file to discover all available pages before exploring further.
Tag Management
Tags (also called Groups) allow you to organize your watches, set group-wide notification preferences, and perform bulk operations on related watches.List All Tags
/api/v1/tags
Response Fields
Unique identifier for the tag
Tag name/title
Unix timestamp of creation
Whether notifications are muted for this tag
Example
Create a Tag
/api/v1/tag
Request Body
Name for the tag/group
Array of notification URLs (Apprise format) for this tag
Whether notifications are muted for watches in this tag
Whether tag settings override individual watch settings
Example
Get a Single Tag
/api/v1/tag/
Path Parameters
UUID of the tag
Query Parameters
Set to
"muted" or "unmuted" to change notification mute stateSet to
"true" to recheck all watches in this tagExample
When rechecking a tag with 20+ watches, the operation runs in the background and returns a 202 status code.
Update a Tag
/api/v1/tag/
Path Parameters
UUID of the tag to update
Request Body
Update the tag name
Update notification URLs for this tag
Update notification mute state
Whether tag settings override watch settings
Example
Delete a Tag
/api/v1/tag/
Path Parameters
UUID of the tag to delete
Example
Deleting a tag removes it from all associated watches but does not delete the watches themselves.
Tag Configuration Options
Tags inherit all configuration options from the Watch schema, allowing you to set defaults that can override individual watch settings whenoverrides_watch is enabled.
Common Tag Settings
Notification Settings
Notification Settings
Array of Apprise notification URLs
Custom notification title template
Custom notification body template
Format:
text, html, htmlcolor, markdown, or System defaultMute all notifications for watches in this tag
Check Interval Settings
Check Interval Settings
Fetch Settings
Fetch Settings
Bulk Operations
Recheck All Watches in Tag
You can trigger a recheck of all watches in a tag:- 200 OK - Less than 20 watches, queued synchronously
- 202 Accepted - 20+ watches, queued in background
Apply Settings to Multiple Watches
To apply tag settings to all watches in the tag, enableoverrides_watch:
overrides_watch is true, the tag’s settings take precedence over individual watch settings.