> ## Documentation Index
> Fetch the complete documentation index at: https://developer.setle.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

> Lets integrate your app with Setle

Quickly follow along with this guide to integrate the Setle API into your application.

<Steps>
  <Step title="Retrieve Client Credentials">
    Check that you received a `client_id` and `client_secret` from the Setle team. We will assume it is for the production [environment](/api-reference/environments).

    Haven't received the credentials yet? Please contact the Setle team and [read more about Client Credentials](/api-reference/authentication#client-credentials)
  </Step>

  <Step title="Retrieve an access token">
    With these Client Credentials you can now fetch a new Access Token [using this API endpoint](/api-reference/authentication/create).
  </Step>

  <Step title="Make a test api call">
    You now have a valid token. Let's use it to search in the Renovations that your users have been making in your account.

    Add the Access Token to the Authentication header:

    ```json theme={null}
    Authorization: Bearer <token>
    ```

    Next, call the [Renovations Search endpoint](/api-reference/renovation/search)
  </Step>

  <Step title="Done! 🎉 Read more about how our data model is structured">
    To better understand the structure and models of our api we recommend that you dive into our documentation about the key models like: Estate, Renovation, Renovation Items, ... and how these are connected.
  </Step>
</Steps>
