Introduction
Getting started with the Circlo API
The Circlo API allows you to interact with the Circlo platform programmatically. To use the API, you need to authenticate your requests using a bearer token.
Authentication
All API requests require authentication using a bearer token. You can obtain a token by contacting the admin. For development purposes, you can use this link:
https://api.getcirclo.comHow to Use
Include your token in the Authorization header of every request:
Authorization: Bearer YOUR_TOKEN_HEREExample Request
curl -X GET \ https://api.getcirclo.com/api/user-preferences/user/USER_ID \ -H "Authorization: Bearer YOUR_TOKEN_HERE"