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

# Workspace subdomain

> Learn how to find your workspace subdomain.

## What is a Subdomain?

A subdomain is the part of your workspace URL that comes before the main domain. For example, in the URL:

```
https://spinkart.neetokb.com
```

**spinkart** is the subdomain.

This subdomain is crucial for making API requests, as it identifies your specific workspace within NeetoKB.

## Step-by-Step Instructions

<Steps>
  <Step title="Locate your workspace URL">
    You can usually find this in your browser's address bar when logged into your workspace.

    Example:

    ```
    https://your-subdomain.neetokb.com/admin/articles
    ```
  </Step>

  <Step title="Identify the main domain">
    Our main domain is: `neetokb.com`
  </Step>

  <Step title="Extract the part before the main domain">
    Everything before `neetokb.com` is your subdomain.

    **Example:**

    * URL: `https://green-earth.neetokb.com`
    * Subdomain: `green-earth`
  </Step>
</Steps>

## Using Your Subdomain in API Requests

Once you've identified your subdomain, you'll use it in all API requests. The base URL format is:

```
https://{your-subdomain}.neetokb.com/api/external/v1
```

For example, if your subdomain is `mycompany`, your API base URL would be:

```
https://mycompany.neetokb.com/api/external/v1
```

## Common Examples

Here are some common subdomain patterns:

| Type       | Example URL                                               | Subdomain        |
| ---------- | --------------------------------------------------------- | ---------------- |
| Company    | `https://acmecorp.neetokb.com/admin/articles`             | `acmecorp`       |
| Department | `https://marketing.neetokb.com/admin/reports/dashboard`   | `marketing`      |
| Project    | `https://product-launch.neetokb.com/admin/my-preferences` | `product-launch` |
