> ## Documentation Index
> Fetch the complete documentation index at: https://docs.partners.api.cobee.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Started

> Let’s get you up and running with our API!

Our API allows you to interact programmatically with our system. It is designed to be secure, flexible, and easy to integrate into your applications. To get started, follow the steps below.

***

## Steps to use the API

<Steps>
  <Step title="Get Your Credentials">
    Before you can begin using the API, you need to obtain your `clientId` and `clientSecret`. These are the credentials that identify your application to our system and allow you to authenticate securely.

    To get access to either (or both), you'll need to contact your **Customer Success Manager**. They'll handle the setup and provide the necessary API credentials for each environment.
  </Step>

  <Step title="Authenticate">
    Once you have your credentials, you’ll need to authenticate into the API in order to obtain a **JWT (JSON Web Token)**. This token is used for securely accessing the API.

    Authentication is done through a simple `POST` request with your **clientId** and **clientSecret**. When the request is successful, you’ll receive a JWT that will be used in subsequent API calls.

    For more details on the authentication process, refer to the <a href="./authentication" target="_self">Authentication Documentation</a>.
  </Step>

  <Step title="Make API Requests">
    After you’ve authenticated and received your JWT, you can start making API requests. For each API request, you need to include the **JWT** in the `Authorization` header of your HTTP request.

    Here’s an example of making a simple API call:

    ```bash theme={null}
    GET /some-protected-resource
    Authorization: Bearer your-jwt-token
    ```
  </Step>
</Steps>
