Support ticket or issue tracking record with customer information, assignee, priority, status, category, and resolution timestamps. Used for customer support systems, help desks, and issue tracking platforms.
https://api.mockly.codes/tickets?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/ticketsGet a collection of tickets
/productivity/tickets/tickets/:idGet a single ticket by ID
/productivity/tickets/:id/tickets/metaGet resource metadata and schema
/productivity/tickets/metaThe search feature allows you to filter results by searching for text across all or specific fields. Choose between ?q= or ?search= parameter names.
Search across all text fields:
GET https://api.mockly.codes/tickets?q=laptopGET https://api.mockly.codes/tickets?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 tickets
fetch('https://api.mockly.codes/tickets?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/tickets?count=10'
)
data = response.json()curl "https://api.mockly.codes/tickets?count=10"fetch('https://api.mockly.codes/tickets?nocache=true')idintegerUnique identifier for the ticket
random_intticket_numberstringUnique ticket reference number for customer tracking
ticket_numbersubjectstringTicket subject or summary
sentencedescriptionstringDetailed description of the issue or request
paragraphcustomer_idintegerForeign key reference to the customer who created the ticket
random_intcustomer_namestringFull name of the customer
namecustomer_emailstringCustomer email address for ticket communications
emailemailassigned_tostringFull name of the support agent assigned to handle this ticket
nameprioritystringTicket priority level (e.g., low, medium, high, urgent)
prioritystatusstringCurrent ticket status (e.g., open, in_progress, waiting, resolved, closed)
ticket_statuscategorystringTicket category (e.g., technical, billing, feature_request, bug)
ticket_categorycreated_atstringTimestamp when the ticket was created
past_datedate-timeupdated_atstringTimestamp when the ticket was last updated
past_datedate-timeresolved_atstringTimestamp when the ticket was resolved, null if still open
past_datedate-timecountintegerNumber of items to return (default: 10, max: 100)
seedintegerSeed for reproducible data generation
nocachebooleanBypass cache and generate fresh data on every request