GET
List tickets
/ticketsReturns a paginated list of tickets with optional filtering.
Common Use Cases
- Display a list of tickets in your application
- Build a custom dashboard showing ticket status
- Export tickets for reporting purposes
Parameters
Query Parameters
| Name | Type | Description |
|---|---|---|
board_id | string | Filter by board ID |
status_id | string | Filter by status/column ID |
assignee_id | string | Filter by assignee ID |
priority | "low" | "medium" | "high" | "critical" | Filter by priority lowmediumhighcritical |
search | string | Search in title and description |
page | integer | Page number Default: |
page_size | integer | Items per page Default: |
Code Examples
curl -X GET "https://api.qamaq.io/api/v1/tickets?page=1&page_size=20" \
-H "Authorization: Bearer qmq_your_api_key"Responses
200List of tickets
Response Body
{
tickets:Ticket[]total:integerpage:integerpage_size:integerhas_more:boolean}