For Agents
List Dandelion organisation events, followers, and ticket orders, and read the authenticated organiser profile for downstream automation.
Get started with Dandelion Events 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:
"list dandelion organisation events"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Dandelion Events API API.
List events published by an authenticated Dandelion organisation
Retrieve followers attached to a Dandelion organisation profile
List ticket orders placed against organisation events
Read the authenticated organiser profile for context-aware automations
GET STARTED
Use for: I want to pull a list of upcoming Dandelion events for my organisation, Retrieve all followers of my Dandelion organisation, List ticket orders for a specific Dandelion event, Get the authenticated Dandelion user profile
Not supported: Does not handle event creation, payment processing, or marketing email delivery — use for reading Dandelion events, followers, and ticket orders only.
Jentic publishes the only available OpenAPI document for Dandelion Events API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Dandelion Events API, keeping it validated and agent-ready. Dandelion is an event-management platform used by community organisers and ethical event hosts to publish events, accept bookings, and manage followers. The API exposes four read operations covering the authenticated user, organisation events, organisation followers, and ticket orders, designed primarily for Zapier-style integrations and lightweight automation. Authentication uses an API key in the Authorization header.
Authenticate organiser requests using an API key in the Authorization header
Patterns agents use Dandelion Events API API for, with concrete tasks.
★ Calendar and CRM Sync for Event Organisers
Mirror Dandelion events and ticket orders into an organiser's calendar or CRM. The GET /z/organisation_events and GET /z/organisation_event_orders endpoints supply the event metadata and attendee records needed to keep a downstream tool current. Suitable for community organisers, retreat hosts, and small ticketed venues that already use Dandelion as the source of truth.
Pull the latest 50 organisation events and their corresponding ticket orders, then create matching entries in the user's calendar and CRM.
Follower-Based Audience Analytics
Analyse who follows an organiser to inform community programming and outreach. The GET /z/organisation_followers endpoint returns the follower list for the authenticated organisation, which can be joined with order history to identify repeat attendees. Useful for community-led organisers running recurring gatherings.
Fetch the organisation followers list, cross-reference with organisation event orders, and return the followers who have attended at least two events.
Automated Attendee Communications
Trigger downstream messaging when ticket orders are placed by reading orders on a schedule and feeding new entries into a notification flow. The GET /z/organisation_event_orders endpoint is well suited to polling-based automations of the kind originally built for Zapier. Helps organisers send personalised confirmations or surveys without manual exports.
Poll organisation event orders every 15 minutes, detect new orders since the last run, and trigger a thank-you email to each new attendee.
Agent Workflows for Ethical Event Operators via Jentic
Agents managing event operations for community-led organisers can call Dandelion through Jentic without storing each organiser's API key. The agent searches Jentic for the relevant intent, loads the schema, and pulls events, followers, or orders for inclusion in a workflow. This keeps credentials isolated per organiser.
Use Jentic to search 'list dandelion organisation events', load the GET /z/organisation_events schema, and return a summary of upcoming events for the organiser.
4 endpoints — jentic publishes the only available openapi specification for dandelion events api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/z
Get the authenticated user profile
/z/organisation_events
List organisation events
/z/organisation_followers
List organisation followers
/z/organisation_event_orders
List organisation event ticket orders
/z
Get the authenticated user profile
/z/organisation_events
List organisation events
/z/organisation_followers
List organisation followers
/z/organisation_event_orders
List organisation event ticket orders
Three things that make agents converge on Jentic-routed access.
Credential isolation
Dandelion organiser API keys sit encrypted in the Jentic vault. Each agent run gets a scoped session and the raw Authorization header value never enters the agent's context.
Intent-based discovery
Agents search by intent (e.g. 'list dandelion organisation events') and Jentic returns the matching GET /z/organisation_events operation with its input schema, so the agent calls the right endpoint without browsing the Zapier-style docs page.
Time to first call
Direct Dandelion integration: 1-2 days for auth, polling, and schema discovery. Through Jentic: under 30 minutes — search, load, execute.
Alternatives and complements available in the Jentic catalogue.
Ticketmaster Discovery API
Ticketmaster discovery covers large-scale ticketed events; Dandelion targets community-led organisers.
Choose Ticketmaster Discovery when working with mainstream concerts or sports; choose Dandelion for grassroots events.
Airtable API
Airtable stores attendee and event records; Dandelion supplies the live event and order feed.
Pair with Dandelion when an organiser uses Airtable as their CRM and wants events and orders mirrored.
Mailchimp API
Mailchimp sends follow-up campaigns to attendees Dandelion has captured.
Use alongside Dandelion when the organiser wants to email new ticket buyers or followers.
Specific to using Dandelion Events API API through Jentic.
Why is there no official OpenAPI spec for Dandelion Events API?
Dandelion Events does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Dandelion Events API 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 Dandelion Events API use?
The Dandelion Events API uses an API key passed in the Authorization header. Through Jentic the organiser key is held in the vault and never enters the agent's context.
Can I list ticket orders with the Dandelion Events API?
Yes. The GET /z/organisation_event_orders endpoint returns ticket orders placed against the authenticated organisation's events, suitable for periodic polling and downstream automation.
What are the rate limits for the Dandelion Events API?
The OpenAPI spec does not declare explicit rate limits. Treat the API as polling-friendly but apply backoff on 429 responses, especially when iterating through orders for high-volume organisers.
How do I sync Dandelion events to another tool through Jentic?
Run pip install jentic, then search Jentic for 'list dandelion organisation events', load the GET /z/organisation_events schema, and execute it on a schedule to push events into your calendar, CRM, or notification system.
Does the Dandelion Events API let me create or update events?
No. The published spec exposes read-only endpoints for events, followers, orders, and the authenticated user. Event creation and edits remain in the Dandelion web interface.