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

# Stores - About

> Detailed information about rental providers (stores) and their settings

The Lokki API provides comprehensive information about rental providers, referred to as "stores". Each store contains a wide range of settings, from localization and branding to complex booking rules and pricing configurations.

## Available Endpoints

<CardGroup cols={2}>
  <Card title="Get One Store" icon="shop" href="/api-reference/stores/get-one">
    Retrieve comprehensive information for a specific store by ID or slug.
  </Card>

  <Card title="Get Many Stores" icon="filter" href="/api-reference/stores/get-many">
    Retrieve a list of stores with optional filtering by location, sorting, and pagination.
  </Card>

  <Card title="Get Store Count" icon="tally" href="/api-reference/stores/get-count">
    Get the total count of stores matching specific search filters.
  </Card>
</CardGroup>

## Data Structure

The `Store` structure is organized into logical modules:

### Profile & Identity

* **Profile**: Contains the store's `name`, `description`, and `verticales`.
* **Branding**: Holds visual assets like `logoURL` and `banners`.
* **Localization**: Details about the `current` language of the response and other `available` languages.

### Geographical Information (`geo`)

* **Location**: The specific coordinates (`lat`/`lng`), full `address`, and Google `placeId` for the main store or the queried rental point.
* **Locations**: A list of all available rental points for this store.

### Business Settings

* **Temporal**: Timezone and detailed `schedule` (opening hours, low season, closed ranges).
* **Pricing**: Currency details (`isoCode`, `symbol`), tax settings, and store-wide discounts.
* **Reviews**: Aggregated Google Reviews with ratings and latest comments.

### Booking & Modules

* **Booking**: Rules for `instantBooking`, `leadTime` requirements, and allowed `fixedDurations`.
* **Modules**: Configuration for add-on features like `delivery`, `insurance`, and `cancellation` policies.

<Warning>
  **Deprecation Notice**: Several top-level fields in the store object (like `name`, `logoURL`, `address`) are now deprecated in favor of the modular structure. See our [Deprecation Guide](/api-reference/stores/deprecations) for details.
</Warning>

## Related Data

Once you have identified a store's `slug`, you can use it to fetch the items available in that store.

<Card title="Store Items" icon="objects-column" href="/api-reference/store-items/about">
  Explore endpoints to retrieve products, services, and pricing for a specific store.
</Card>
