Batch-fetch GitHub issue statuses
GET
/tickets/github-status
const url = 'https://example.com/api/tickets/github-status?issues=acme%2Fbackend%3A42%2Cacme%2Fbackend%3A43';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://example.com/api/tickets/github-status?issues=acme%2Fbackend%3A42%2Cacme%2Fbackend%3A43' \ --header 'Authorization: Bearer <token>'Checks the current state of GitHub issues linked to handoff tickets.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” issues
required
string
Comma-separated issue refs (owner/repo:number)
Example
acme/backend:42,acme/backend:43Responses
Section titled “ Responses ”Issue statuses
Media type application/json
object
statuses
required
Map of ref -> state (open/closed)
object
key
additional properties
string
details
required
Map of ref -> issue metadata
object
key
additional properties
object
state
required
string
title
required
string
url
required
string format: uri
updated_at
required
string format: date-time
comments
required
integer
assignees
required
Array<string>
Not authenticated
Media type application/json
object
error
required
Human-readable error message
string
code
Stable machine-readable error code for client branching
string
fieldErrors
First validation message per field path
object
key
additional properties
string
issues
Structured validation issues (Zod)
Array<object>
object
path
required
string
message
required
string
retryAfter
Seconds until rate limit resets (429 responses)
number
reconnect
True if re-linking GitHub may fix the issue
boolean