How to create a new event

How to create a new event

Use this guide when you need to set up a new event in the platform.


Request

Bash
curl -X POST "https://your-event-domain.com/api/v2/event/set" \
  -H "Authorization: Bearer your_api_key_here" \
  -F "title=Tech Summit 2030" \
  -F "country=United Kingdom" \
  -F "city=London" \
  -F "start=15 Jun 2030 09:00" \
  -F "end=17 Jun 2030 18:00" \
  -F "venue=ExCeL London" \
  -F "address=Royal Victoria Dock, 1 Western Gateway"

Notes

  • Date format must be DD Mon YYYY HH:MM (e.g. 15 Jun 2030 09:00)

  • country accepts a full name (United Kingdom) or 2-letter ISO code (GB)

  • Store the returned id — this is your event_id for all other API calls