HTTP status: 400Documentation Index
Fetch the complete documentation index at: https://dev.1st.app/llms.txt
Use this file to discover all available pages before exploring further.
Message
Time range is malformed. Bothfromandtomust be ISO 8601 strings (e.g. 2026-05-11T00:00:00Z) andtomust be later thanfrom.
Common cause
- Sent a Unix timestamp instead of ISO 8601.
- Used a date without a time (
2026-05-11instead of2026-05-11T00:00:00Z). - Forgot the
Zsuffix (we require explicit UTC). - Swapped from/to so
to < from.
Fix
Use canonical ISO 8601 UTC with theZ suffix:
Z suffix.