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

# Find Your Location ID

> Your Location ID identifies your HoopAI account in every API request. Here's where to find it.

Your **Location ID** is the unique identifier for your HoopAI account (workspace). Almost every API endpoint requires it — either as a query parameter or a field in the request body.

<Tip>
  Your Location ID looks like this: `7jgDexejcVMu5NvJKKDG` — a 20-character alphanumeric string.
</Tip>

## Where to find it

<Steps>
  <Step title="Open Settings">
    In your HoopAI dashboard, click the **Settings** icon in the left sidebar.
  </Step>

  <Step title="Go to Business Profile">
    Under **Business Info**, select **Business Profile**.
  </Step>

  <Step title="Copy your Location ID">
    Your Location ID is displayed at the top right of the page next to the **Location ID** label.

    <Frame caption="Location ID displayed in Business Profile settings">
      <img src="https://mintlify.s3.us-west-1.amazonaws.com/hoopai-84ec0cdc/images/settings-location-id.png" alt="Location ID in Business Profile settings" />
    </Frame>

    Click the copy icon to copy it to your clipboard.
  </Step>
</Steps>

## How it's used in API requests

Your Location ID scopes every request to your specific account.

**As a query parameter** (GET requests):

```bash theme={null}
GET /contacts/?locationId=YOUR_LOCATION_ID
```

**In the request body** (POST/PUT requests):

```json theme={null}
{
  "locationId": "YOUR_LOCATION_ID",
  "name": "Jane Smith",
  "email": "jane@example.com"
}
```

<Note>
  Throughout the API reference you'll see `locationId` and "account" used interchangeably. They refer to the same thing.
</Note>

## Next step

<Card title="Create an API key" icon="key" href="/developer/getting-started/api-keys">
  Generate a Private Integration key to authenticate your requests
</Card>
