Quickstart
Make your first authenticated Getme API request in a few minutes.
This guide walks you through your first authenticated request to the Getme API. You will create an app, generate credentials, and confirm connectivity.
1. Create an app
In the developer portal, create an app for your integration. Each app owns its own credentials and scopes, so you can rotate or revoke them independently.
2. Generate credentials
Generate an API key for the app. Store it as an environment variable — never commit keys to source control or ship them in browser code.
3. Make your first request
Confirm connectivity with a simple authenticated call.
curl https://api.getmeonline.io/v1/ping \
-H "Authorization: Bearer $GETME_API_KEY"
A 200 OK response means your credentials work and you are ready to explore the reference surfaces.