API Reference
Here you will find anything that might be related to the public API Key system
Claim your API Key
Use your API Key
$ curl -X GET https://api.chronosrmd.com/api/[something]
-H "Authorization: Bearer YOUR_API_KEY"
-H "Content-Type: application/json"const apiKey = "YOUR_API_KEY";
fetch("https://api.chronosrmd.com/api/[something]", {
method: "GET",
headers: {
"Authorization": `Bearer ${apiKey}`,
"Content-Type": "application/json"
}
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error("Error:", error));Available routes
Get all your Reminders - /reminders
Get reminder details - /reminders/{:id}
Give more freedom for creating reminders with the API
Last updated