Strategy Groups
A strategy group is an organizational layer above individual strategies. It lets you manage many strategies as a single unit — applying schedules, output schemas, and webhooks to all members at once.When to use strategy groups
Use strategy groups when:- You monitor many URLs with similar extraction needs (e.g., 50 product pages)
- You want a single schedule and webhook for all strategies in a batch
- You need to apply or change an output schema across many strategies at once
- You create strategies via Bulk Upload and want to keep them organized
- You have a handful of unrelated strategies
- Each strategy needs its own schedule or webhook configuration
How they work
A strategy group provides:- Group-level scheduling — Apply a single schedule configuration (interval or cron, webhook URL, webhook type) to every strategy in the group. Each strategy gets its own schedule instance, but they share the same configuration.
- Group-level output schemas — Apply an output schema to all strategies at once. Meter regenerates each strategy asynchronously to match the new schema.
- Bulk management — Enable/disable all schedules, delete all schedules, or test webhooks for the whole group in one call.
Creating and managing groups
Create a group
- Python SDK
- curl
Add strategies to a group
- Python SDK
- curl
Remove a strategy from a group
Removing a strategy from a group does not delete the strategy — it just becomes ungrouped.- Python SDK
- curl
List and inspect groups
- Python SDK
- curl
Group scheduling
Apply a schedule to every strategy in the group with a single call. Each strategy gets its own schedule instance with the same configuration.- Python SDK
- curl
Manage group schedules
Provide either
interval_seconds or cron_expression, not both. The minimum interval is 60 seconds.Group output schemas
Apply an output schema to every strategy in a group. Meter regenerates each strategy asynchronously to match the schema structure.Deleting a group
Deleting a group does not delete the strategies inside it. They become ungrouped.- Python SDK
- curl
Next steps
Output Schemas
Define the exact JSON structure for extraction results
Bulk Upload
Create many strategies at once with bulk upload
Strategy Group API
Full REST API reference for strategy groups
Python SDK
Strategy group methods in the Python SDK