Netfyo

The Netfyo API

REST endpoints and webhooks for every part of the event lifecycle. Build on top of the OS.

// Fetch a public event
const res = await fetch(
  "https://netfyo.site/api/public/events/your-slug"
);
const event = await res.json();

// Webhook payload on new registration
{
  "type": "registration.created",
  "event": { "slug": "your-slug", "title": "Your Event" },
  "registration": { "id": "...", "email": "...", "created_at": "..." }
}
Events

Read, list, and filter public events by city and category.

Registrations

Create, cancel, and query attendee registrations for your events.

Check-ins

Trigger check-ins from a partner scanner or badge printer.