> ## Documentation Index
> Fetch the complete documentation index at: https://docs.spot-nik.com/llms.txt
> Use this file to discover all available pages before exploring further.

# API quickstart

> Make your first request to the SuperPlanner API.

This guide walks you through making your first call to the SuperPlanner API.

## Prerequisites

* SuperPlanner installed on a monday.com account
* An API token — see [Generate an API token](/superplanner/api/generate-token)
* Your regional base URL — see [Base URL](/superplanner/api/base-url)

## List resources

Retrieve all resources in your account:

<CodeGroup>
  ```bash curl theme={null}
  curl https://live1-service-7042312-f94c764b.us.monday.app/api/public/v1/resource \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch(
    "https://live1-service-7042312-f94c764b.us.monday.app/api/public/v1/resource",
    {
      headers: { Authorization: "Bearer YOUR_API_KEY" }
    }
  );
  const data = await response.json();
  console.log(data);
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      "https://live1-service-7042312-f94c764b.us.monday.app/api/public/v1/resource",
      headers={"Authorization": "Bearer YOUR_API_KEY"}
  )
  print(response.json())
  ```
</CodeGroup>

## Next steps

* Browse the full API reference in the sidebar
* [Generate a token](/superplanner/api/generate-token) if you haven't already
