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

# Quickstart

> Begin with a guide on the fastest path to a successful outcome

## Prerequisites

* A [Scispot](https://labsheets.scispot.io) account
* `curl` or any HTTP client

## Create a token

<Steps>
  <Step title="Open Personal Tokens">
    In Scispot: **Account** → **Personal Tokens** → **Generate New Token**.
  </Step>

  <Step title="Copy the token">
    Save it securely. You cannot view it again after closing the dialog.
  </Step>
</Steps>

## First API call

Create a labspace with **JSON** and **Bearer** auth:

```bash theme={null}
curl --location 'https://cloudlab.scispot.io/labspace/create' \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Bearer YOUR_PERSONAL_TOKEN' \
  --data '{
    "name": "My Labspace",
    "description": "Created from the API"
  }'
```

A JSON response with `"success": true` and a `uuid` means the call succeeded.

## Next steps

* [Authentication](/authentication) for header details
* [API Reference](/api-reference/overview) for all endpoints
