Getme developer documentation
Build on Getme — the REST API, webhooks, CLI, and SDKs for sites, commerce, and bookings.
Everything you need to integrate with the Getme platform — from your first authenticated request to production webhooks and CI automation. Pick a surface below, or use search to jump straight to a topic.
Getting started
Most integrations follow the same three steps. The reference pages for each surface go deeper, but this is the shape of a first integration.
- Create a developer app and generate API credentials.
- Authenticate your requests and confirm connectivity with a simple call.
- Subscribe to the webhooks your integration needs and handle the events.
Authentication
API requests are authenticated with a bearer token. Send your key in the Authorization header on every request; never expose secret keys in browser code.
curl https://api.getmeonline.io/v1/ping \
-H "Authorization: Bearer $GETME_API_KEY"