Skip to main content
Many list operations accept a date range so you can filter by day. Guile uses YYYY-MM-DD dates (RFC 3339 calendar dates) and interval notation for bounds.

What you do first

  1. Format each day as YYYY-MM-DD (for example 2024-12-01).
  2. Pick the bound style that matches the filter you mean.
  3. Send that string on the range field the operation documents.
The range string must stay within 24 characters. Invalid calendar days or bad brackets fail validation.

Example list call

When a call fails

A bad range returns a problem such as https://docs.guile.app/problems/invalidDateRange. Open the type link for the fix.