Skip to content
GetmeDocs
Sign inCreate account

Getting started

  • Getme developer documentation

API Reference

  • Introduction
  • Authentication
  • Errors
  • Idempotent requests
  • Metadata
  • Pagination
  • Request IDs
  • Versioning
  • Webhooks
  • Event Catalog
  • SDKs and CLI

Core Resources

  • Auth
  • Events

Site Resources

  • Forms
  • Sites

Commerce Resources

  • Brands
  • Categories
  • Products
  • Services

Crm Resources

  • Customers

Other Resources

  • Media

Dev Tools

  • CLIBeta
  • Website source with the CLIBeta
  • Webhooks with the CLIBeta
  • SDKsBeta
  • Node SDKBeta
  • Python SDKBeta

Guides

  • Guides
  • Quickstart
  • Website source workflow
  • Webhook handler

Changelog

  • Changelog
  • June 10, 2026 - Developer platform docs beta
  • July 15, 2026 - Install token lifecycle safety
  • July 15, 2026 - Source-first site development
  • July 15, 2026 - Site source navigation warnings
Loading documentation...

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.

  1. Create a developer app and generate API credentials.
  2. Authenticate your requests and confirm connectivity with a simple call.
  3. Subscribe to the webhooks your integration needs and handle the events.

Contract-driven

Reference surfaces are generated or written from the public developer contracts. API, webhook, CLI, and SDK docs use the same resource names, public identifiers, and versioning model.

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.

bash
curl https://api.getmeonline.io/v1/ping \
  -H "Authorization: Bearer $GETME_API_KEY"

Explore the platform

  • API referenceREST endpoints for sites, commerce, and bookings, generated from the public OpenAPI contract.
Webhooks
Event catalog, payloads, signing, and retries for server-to-server notifications.
  • CLIBetaInstall, authenticate, and sync sites and themes from your terminal or CI.
  • SDKsBetaTyped Node and Python clients with auth, pagination, and resource helpers.
  • GuidesQuickstarts, recipes, and architecture walkthroughs for common integrations.
  • ChangelogAPI versions, SDK and CLI releases, and platform changes over time.
  • On this page

    • Getting started
    • Authentication
    • Explore the platform