EventNerds

The API-first event engine for developers who mean business

Bring your own website and MarTech stack. We handle the complex event infrastructure for registration, ticketing, on-site check-ins, agenda and session management, speaker portals, calls for papers, and so much more.

Everything you need to run world-class events

Powerful API-first event engine
Create your events and build your own custom front-end experiences.
Rapid event creation
Fast, fluid user experience for creating events and sessions.
Ticketing & payments
Built-in ticketing with promo codes, Stripe integration, and order management
On-site tools suite
Manage attendees, check-ins, and more without any upsell or random fees.
Real-time updates
Live dashboards and instant notifications so you always know what's happening.
Integrations
Connect with HubSpot, Customer.io, Zapier, Slack, and your entire MarTech stack
Developer API

Build exactly what you need

Full TypeScript support, webhooks, and embeddable components. Integrate EventNerds into your stack in minutes.

// Get all sessions for an event with speakers
interface Session {
  id: string;
  title: string;
  description: string;
  starts_at: string;
  ends_at: string;
  session_type: 'keynote' | 'talk' | 'workshop' | 'panel' | 'break';
  track: { id: string; name: string; color: string } | null;
  room: { id: string; name: string; capacity: number } | null;
  speakers: Array<{
    id: string;
    name: string;
    title: string;
    company: string;
    is_moderator: boolean;
  }>;
}

const BASE_URL = 'https://your-app.com/api/v1/developer';

async function getSessions(eventId: string, date?: string): Promise<Session[]> {
  const params = new URLSearchParams({ event_id: eventId });
  if (date) params.append('date', date);

  const response = await fetch(`${BASE_URL}/sessions?${params}`, {
    headers: {
      'X-API-Key': process.env.EVENTNERDS_API_KEY!,
      'Content-Type': 'application/json'
    }
  });

  if (!response.ok) {
    throw new Error(`Failed to fetch sessions: ${response.statusText}`);
  }

  const { data, meta } = await response.json();
  console.log(`Page ${meta.page} of ${meta.total_pages}`);
  return data;
}

// Get sessions by type
const keynotes = sessions.filter(s => s.session_type === 'keynote');
const workshops = sessions.filter(s => s.session_type === 'workshop');

TypeScript SDK

Fully typed client library with autocompletion and type safety

Real-time webhooks

Get instant notifications for registrations, payments, and check-ins

OpenAPI spec

Generate clients in any language with our OpenAPI 3.0 specification

Public API

  • RESTful endpoints for all resources
  • OpenAPI specification included
  • Typed TypeScript client
  • Per-event API keys with scopes
  • Usage tracking and rate limiting

Embeddable components

  • Drop-in registration forms
  • Event agenda widgets
  • Speaker galleries
  • Ticket selection UI
  • Customizable checkout flow

Simple, predictable pricing

The free tier has all features included. Try it out on an event. Cancel anytime. No sales calls, no contracts, no surprises.

Free
$0
Perfect for testing and small events
  • 1 event per month
  • All features included
  • Unlimited team members
  • Community support
Standard
$49/mo
For growing teams and regular events
  • 3 events per month
  • All features included
  • Unlimited team members
  • Accept attendee payments (0.5% platform fee)
  • Email support
Most popular
Pro
$149/mo
For serious event organizers with multiple events
  • Unlimited events
  • All features included
  • Unlimited team members
  • Accept attendee payments (0.5% platform fee)
  • Email + Slack support

Compare to Bizzabo and Cvent at $30K+/year. Same features, fraction of the cost.

All plans include unlimited API calls, webhooks, integrations, and access to all features.

Paid plans include ticket payment processing via Stripe Connect with a 0.5% EventNerds platform fee. Standard Stripe processing fees (2.9% + $0.30) apply.

Ready to modernize your event management?

EventNerds is what developers choose when they want to build their own event experiences.

Built by EventNerdsStrategic Nerds

The API-first event engine for developers who mean business