List issues
List the issues reported by your account, newest first. Pagination is cursor-based: pass the nextCursor from a response as the next request’s cursor, and stop once a response omits it.
Pagination
Paging is cursor-based. Make the first request without acursor, then pass the nextCursor from each response as the cursor of the next request:
nextCursor is only returned when another page actually exists, so you can loop until it’s absent without ever fetching an empty page:
limit defaults to 50 and is capped at 100 — asking for more returns 100 rather than an error.
Filtering by date
from and to bound the report date inclusively, and each accepts either YYYY-MM-DD or a full RFC3339 timestamp. A bare to date covers that entire UTC day, so to=2026-08-31 includes issues reported at 23:59 that evening.
400, as does a from later than the to.Authorizations
API key for authentication. Must start with dd- prefix.
Headers
API Key
Query Parameters
Maximum issues to return per page. Values above 100 are capped at 100.
1 <= x <= 100The nextCursor value from a previous response. Omit to start from the newest issue.
Only return issues reported on or after this date. Accepts YYYY-MM-DD or an RFC3339 timestamp.
Only return issues reported on or before this date. Accepts YYYY-MM-DD or an RFC3339 timestamp; a bare date covers that entire UTC day.
