API Reference
API Basics

API Basics

Welcome to the ToolCharm API Reference! This guide will walk you through the basics of the ToolCharm API, including how to authenticate, make requests, and more.

Base URL

Base URL: https://api.toolcharm.com

This means, for example, your request to create an end user would be:

POST https://api.toolcharm.com/endUsers.

Headers

In order to authenticate your requests, you need to include your API key in the Authorization header. You can find your API key in the ToolCharm Developer Portal (opens in a new tab).

Here's an example of headers you should include in your requests:

{
    "Content-Type": "application/json",
    "Authorization": "Bearer YOUR_API_KEY"
}