ad855d921ee9

latestOpenAPI 3.0.32026-08-14137304312.9 KB
issues

Get a list of issues

Returns a paginated list of issues within a required time range (max 30 days).

Rate limit: 10 requests per minute

get/issues

Query parameters

start_timestring required

The start time (RFC3339) of the time range to get issues for. The duration between start_time and end_time must be less than or equal to 30 days.

end_timestring required

The end time (RFC3339) of the time range to get issues for. The duration between start_time and end_time must be less than or equal to 30 days.

cursorstring

The cursor to use for pagination.

limitinteger

The number of issues to fetch. Defaults to 20000. Set to 0 or omit to use the default. Must be between 0 and 20000.

Response

request_idstring

The request ID for tracking.

Example response

{
  "data": [
    {
      "state": "new"
    }
  ]
}