Skip to main content
GET
/
issues
List issues
curl --request GET \
  --url https://productlane.com/api/v2/issues \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "identifier": "<string>",
      "title": "<string>",
      "description": "<string>",
      "priority": "<string>",
      "status": "<string>",
      "linear_team_id": "<string>",
      "url": "<string>",
      "project_id": "<string>",
      "sort_order": 123,
      "created_at": "<string>",
      "updated_at": "<string>",
      "linear_ticket_id": "<string>"
    }
  ],
  "page": {
    "cursor": "<string>",
    "has_more": true,
    "limit": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://productlane.mintlify.dev/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer
Required range: 1 <= x <= 200
cursor
string
project_id
string
status
string

Lifecycle state (triage, backlog, unstarted, started, completed, canceled). Forwarded raw from Linear so custom workflows resolve to their real names.

Required string length: 1 - 64
name_contains
string
Required string length: 1 - 255
linear_team_id
string
Required string length: 1 - 128
created_after
string<date-time>
created_before
string<date-time>
updated_after
string<date-time>
updated_before
string<date-time>

Response

Successful response

data
object[]
required
page
object
required