Calendar event or conference with date/time, location, venue, organizer, capacity, pricing, and online/offline status. Used for event management, calendar applications, and conference booking systems.
https://api.mockly.codes/events?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/eventsGet a collection of events
/productivity/events/events/:idGet a single event by ID
/productivity/events/:id/events/metaGet resource metadata and schema
/productivity/events/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/events?q=laptopGET https://api.mockly.codes/events?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 events
fetch('https://api.mockly.codes/events?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/events?count=10'
)
data = response.json()curl "https://api.mockly.codes/events?count=10"fetch('https://api.mockly.codes/events?nocache=true')idintegerUnique identifier for the event
random_inttitlestringEvent title or name
event_titledescriptionstringDetailed description of the event
paragraphcategorystringEvent category (e.g., Conference, Workshop, Concert, Sports, Networking)
event_categorystart_datestringEvent start date and time
future_datedate-timeend_datestringEvent end date and time
future_datedate-timelocationstringStreet address of the event location
addresscitystringCity where the event takes place
citycountrystringCountry where the event takes place
countryvenuestringVenue name where the event is held
venueorganizerstringName of the organization or person organizing the event
companycapacityintegerMaximum number of attendees the event can accommodate
random_intpricenumberTicket price or entry fee
pricecurrencystringISO currency code for the price (e.g., USD, EUR, GBP)
currencyis_onlinebooleanWhether the event is held online/virtual or in-person
booleanurlstringEvent website URL or registration link
urluricountintegerNumber of items to return (default: 10, max: 100)
seedintegerSeed for reproducible data generation
nocachebooleanBypass cache and generate fresh data on every request