Skip to content
Last updated

Introduction

The MICEtribe Public APIs enable organizers, partners, and technology providers to seamlessly integrate with the MICEtribe event registration platform. These APIs are designed to support bi-directional data synchronization, advanced registration workflows, and secure event operations at scale.

Using the MICEtribe APIs, you can programmatically manage registrations, control access credentials, and retrieve event configuration data in real time.

In this documentation you will find:

  • Our complete API documentation for use in AP integrations

  • Public API endpoints

This documentation is currently a work in progress, so some sections may still contain gaps or inaccuracies. If you notice anything that seems incorrect, incomplete, or unclear, please reach out to your MICEtribe representative (Customer Success Manager, Project Manager, or reach out to us on integrations@micetribe.com). We’ll make sure to review and update it as quickly as possible.

What You Can Do with the MICEtribe APIs

Registration Management

  • Create and push registrations into MICEtribe from external systems, CRMs, websites, or ticketing platforms.
  • Push registrations to MICEtribe while overriding or supplying custom QR codes, enabling external credentialing or access-control workflows.
  • Create parent–child (group) registrations, supporting delegates, companions, exhibitors, staff, or any hierarchical attendee structure.
  • Delete registrations from a specific event when cancellations or revocations are required.
  • Retrieve registrations for a specific event, allowing external systems to sync attendee data, status, and access information.

Event & Configuration Data

  • Retrieve event metadata, including:
  • Personas (attendee categories)
  • Registration configurations
  • Event-level settings required for integration and mapping

Designed for Integrations at Scale

The MICEtribe APIs are built to support:

  • Secure authentication and controlled access
  • High-volume event traffic
  • Real-time and scheduled synchronization
  • Integration with third-party platforms such as CRMs, badge printing systems, access control, virtual event platforms, and automation tools

Step 1: Sign Up and Get Your API Key

Tokens are generated per event scope. Every new event must have it's new generated token.

All API requests should be made over SSL, and API token authenticated endpoints MUST only be called from back-side code for secruity reason.

API token grant access to data in your MICEtribe organization and should be treated as passwords.

API tokens should only be shared with trusted parties in a secure manner.

Steps needed to get the token:

  1. Visit the MICEtribe Sign-Up Page.
  2. Create your account and log in.
  3. Create your event that needs to use the APIs
  4. Contact integrations@micetribe.com to enable API token for your event

Your API key is required to authenticate all API requests.

Step 2: Make Your First API Request

Let's start by making a simple request to the Warp API to establish a temporal anchor—a fixed point in time that you can return to later.

Call me API

Use the following curl command to check health status of the API server:

curl --location 'https://api.micetribe.com/integrations/v1//me' \
--header 'Authorization: Bearer YOUR_API_TOKEN'

Response Example

{
    "status": "ok"
}

This response confirms that the server responds successfully

Congratulations!

You’ve completed your first API call with MICEtribe API system! Explore more advanced features in our documentation