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

# Quickstart

> Getting started with LOMA's organization API

The LOMA organization API is a RESTful API that allows you to manage several aspects of your organization, including locations, sales data, and tracking activities.

## Authentication

To authenticate requests made to the API, your API Key should be passed in the `API-Key` header formatted as `KEY_ID:KEY_SECRET`.

```ts theme={null}
headers: {
  "API-Key": "KEY_ID:KEY_SECRET"
}
```

### Creating API Keys

Organization admins can create API keys by navigation to the "API Keys" section in the settings page.

<img className="rounded-2xl border-2 border-neutral-300" src="https://mintcdn.com/loma/IL_04fjseRlgpTMN/images/organization-api/api-keys.png?fit=max&auto=format&n=IL_04fjseRlgpTMN&q=85&s=b208beace2841dda28c678dc65b5e14a" width="2360" height="1640" data-path="images/organization-api/api-keys.png" />

## API Endpoints

Check out the available API endpoints, or you can view the OpenAPI specification file.

<Note>
  The base URL for all endpoints is [https://console.lomaplatform.com](https://console.lomaplatform.com)
</Note>

<CardGroup>
  <Card title="API Endpoints" icon="server" href="/organization-api/locations/list-locations">
    Check out the API endpoints.
  </Card>

  <Card title="OpenAPI Specification" icon="leaf" href="https://console.lomaplatform.com/api/org/v1/openapi">
    View the OpenAPI specification file.
  </Card>
</CardGroup>
