Skip to main content
GET
/
api
/
v1
/
issues
/
{issueId}
Get an issue
curl --request GET \
  --url https://app.lucenthq.com/api/v1/issues/{issueId} \
  --header 'Authorization: Bearer <token>'
{
  "issue": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "title": "<string>",
    "description": "<string>",
    "previewUrl": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "sessionCount": 1,
    "updatedAt": "2023-11-07T05:31:56Z",
    "ticketProvider": "<string>",
    "ticketUrl": "<string>",
    "ticketIdentifier": "<string>",
    "stepsToReplicate": "<string>",
    "aiVerified": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.lucenthq.com/llms.txt

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

Authorizations

Authorization
string
header
required

API keys prefixed with luc_api_ or OAuth access tokens prefixed with luc_oat_. Legacy static keys prefixed with luc_mcp_ continue to work.

Path Parameters

issueId
string<uuid>
required

Issue UUID.

Example:

"87b3a6b6-5af5-438b-a39c-eff148a68ccb"

Response

Issue details.

issue
object
required