For Agents
Schedule, list, and cancel meetings against a host's connected calendars and check availability through a small REST surface.
Get started with iMeetify API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"schedule a meeting with iMeetify"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with iMeetify API API.
Create a meeting with a chosen host, time slot, and invitees
List meetings on the account with filtering by status or host
Retrieve a single meeting record by its identifier
Cancel an existing meeting and notify attendees
Check a host's availability for a candidate window
GET STARTED
Use for: I want to schedule a 30-minute meeting with a customer, List all meetings booked this week, Cancel a meeting that the customer can no longer attend, Check the host's availability tomorrow afternoon
Not supported: Does not handle video conferencing, payment collection, or contact management - use for meeting scheduling and availability lookups only.
Jentic publishes the only available OpenAPI document for iMeetify API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for iMeetify API, keeping it validated and agent-ready. iMeetify is a meeting scheduling service that exposes endpoints for creating, listing, and cancelling meetings, plus availability and calendar lookups. The API targets sales tools, recruiting platforms, and internal apps that need to book a meeting against a host's connected calendars without redirecting users to a third-party scheduler page. The surface is compact - six endpoints - and uses an API key header for authentication.
List the calendars connected to the iMeetify account
Patterns agents use iMeetify API API for, with concrete tasks.
★ In-App Meeting Booking
SaaS apps that already authenticate users do not want to redirect them out to a public scheduler page. Calling /availability followed by /meetings booking inside the app keeps the booking flow on-brand and on-domain. iMeetify handles the calendar conflict checks via the host's connected calendars.
GET /availability for the host, present open slots to the user, then POST /meetings with the chosen slot and invitee details.
Sales Outreach Automation
Sales tools that book follow-up meetings after a lead converts can automate the booking via the iMeetify API. The tool calls /availability, picks the next open 30-minute slot, and posts a /meetings creation with the lead's email. The booked meeting writes back to the rep's connected calendar automatically.
After a lead converts, GET /availability for the assigned rep, POST /meetings with the next open slot and the lead's email, and log the meeting ID on the lead record.
Recruiting Interview Coordination
Recruiting platforms book interviews with multiple panel members. The platform queries /calendars and /availability for each panel member, finds an overlap, and creates the meeting once a slot is agreed. Cancelling and rescheduling go through DELETE /meetings/{meeting_id} so candidates always see fresh state.
GET /availability for each panellist, intersect the open windows, POST /meetings with the agreed slot, and DELETE /meetings/{meeting_id} on cancellation.
Agent-Driven Calendar Booking
An AI scheduling assistant that reads emails and proposes meeting times can call iMeetify directly through Jentic. The agent reads the host's availability, proposes a slot, and creates the meeting once both sides confirm. Jentic keeps the API key vaulted and returns the booking schema so the agent fills only the slot, host, and invitee fields.
Search Jentic for 'schedule a meeting with iMeetify', execute /availability and /meetings POST, and confirm the booking ID back to the user.
6 endpoints — jentic publishes the only available openapi specification for imeetify api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/meetings
Create a meeting
/meetings
List meetings on the account
/meetings/{meeting_id}
Retrieve a meeting by ID
/meetings/{meeting_id}
Cancel a meeting
/availability
Check host availability
/calendars
List connected calendars
/meetings
Create a meeting
/meetings
List meetings on the account
/meetings/{meeting_id}
Retrieve a meeting by ID
/meetings/{meeting_id}
Cancel a meeting
/availability
Check host availability
Three things that make agents converge on Jentic-routed access.
Credential isolation
The iMeetify API key is stored encrypted in the Jentic vault. The header is added at execute time so the agent never sees the raw key, which matters for shared scheduling accounts where the key has broad permissions.
Intent-based discovery
Agents search by intent (e.g., 'schedule a meeting' or 'check availability') and Jentic returns the matching iMeetify operation with its input schema, including the slot and invitee fields needed to book.
Time to first call
Direct iMeetify integration: a few hours to wire auth, availability, and meeting creation. Through Jentic: under 15 minutes - search, load, execute.
Alternatives and complements available in the Jentic catalogue.
Calendly
Calendly is a widely adopted scheduling platform with a richer API and webhook surface.
Choose Calendly when the agent needs round-robin routing, workflows, or webhook events on meeting lifecycle changes.
Google Calendar
Google Calendar is the underlying calendar that iMeetify reads availability from for many users.
Choose Google Calendar when the agent needs to write events directly to the user's calendar without going through iMeetify.
Zoom Meetings
Zoom Meetings hosts the video conferencing link that scheduled meetings often use.
Choose Zoom Meetings when the agent needs to create or update the conferencing link separately from the scheduling record.
Specific to using iMeetify API API through Jentic.
Why is there no official OpenAPI spec for iMeetify API?
iMeetify does not publish a canonical OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call iMeetify via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the iMeetify API use?
The API uses an API key in a request header (ApiKey scheme). Through Jentic the key is held in the encrypted vault and added to the request at execute time, so the agent prompt never sees it.
Can I check a host's availability before booking?
Yes. GET /availability returns open windows for the connected host's calendars, which you can present to the user before calling POST /meetings to confirm the booking.
How do I cancel a meeting?
DELETE /meetings/{meeting_id} cancels the meeting and notifies the participants based on the host's iMeetify settings.
How do I book a meeting through Jentic?
Run pip install jentic, search for 'schedule a meeting with iMeetify', load the /meetings POST schema, and execute with the host, slot, and invitee details. Jentic chains the availability check if requested.
What are the rate limits for the iMeetify API?
The OpenAPI spec does not list explicit rate limits. Plan for normal scheduling-app traffic and back off on HTTP 429 responses if running bulk imports.
/calendars
List connected calendars