Introduction
Base URLs, the JSON response envelope, and how to read the API reference.
The Getme API lets you build on the platform — sites, commerce, bookings, and more. It is organized around REST, uses resource-oriented URLs, returns JSON, and relies on standard HTTP response codes and verbs.
Base URL
https://api.getmeonline.io
A staging environment is available at https://api-staging.getmeonline.io for testing against non-production data.
Requests
- All requests are made over HTTPS; plain HTTP is not supported.
- Request and response bodies are
application/json. - Endpoints are versioned under the
/v1path prefix.
Responses
Successful responses use a consistent envelope:
{
"success": true,
"data": {}
}
The data field holds the resource — or a list of resources — that you requested. Errors use the same envelope with success set to false; see Errors.