Loby API
The base URL to send all API requests is https://api.loby.io. HTTPS is required for all API requests.
The Loby API follows RESTful conventions when possible, with most operations performed via GET, POST, PATCH, and DELETE requests. Request and response bodies are encoded as JSON and therefore requests need to include the header content-type: application/json when appropriate.
Use Loby API to retrieve, create or modify data stored in your Loby account programmatically and to create custom integrations.
Versions
There is currently one version, which is reachable via: https://api.loby.io/v1
Authentication
Loby API uses API access tokens to authenticate requests. You can view and manage your API keys in Loby.
Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API key in publicly accessible areas such as GitHub, client-side code, and so forth.
All API requests must be made over HTTPS. Calls made over plain HTTP will fail. API requests without authentication will also fail.
The API key should be passed as a Bearer authorization header, e.g.:
Authorization: Bearer {{accessToken}}
Replace {{accessToken}} with your key from Loby.