Scheduled business meeting or conference event. Tracks meeting details, organizer, participants, timing, location (physical or virtual), and current status.
https://api.mockly.codes/meetings?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/meetingsGet a collection of meetings
/business/meetings/meetings/:idGet a single meeting by ID
/business/meetings/:id/meetings/metaGet resource metadata and schema
/business/meetings/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/meetings?q=laptopGET https://api.mockly.codes/meetings?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 meetings
fetch('https://api.mockly.codes/meetings?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/meetings?count=10'
)
data = response.json()curl "https://api.mockly.codes/meetings?count=10"fetch('https://api.mockly.codes/meetings?nocache=true')idintegerUnique identifier for the meeting record
random_inttitlestringSubject or title of the meeting
sentencedescriptionstringDetailed agenda, topics, or purpose of the meeting
paragraphorganizerstringFull name of the person organizing or leading the meeting
namestart_timestringScheduled start date and time for the meeting
future_datedate-timeend_timestringScheduled end date and time for the meeting
future_datedate-timelocationstringPhysical address or venue where the meeting takes place (if in-person)
addresstypestringType of meeting (e.g., team meeting, client call, conference, workshop, one-on-one)
meeting_typeattendees_countintegerTotal number of expected or confirmed attendees
random_intstatusstringCurrent status of the meeting (e.g., scheduled, in-progress, completed, cancelled, postponed)
meeting_statusonline_linkstringVideo conference URL or online meeting link (e.g., Zoom, Teams, Google Meet)
urluricreated_atstringTimestamp when the meeting was created or scheduled
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