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

# Get Store Settings

> Read the merchant store general settings.

Returns the merchant's general store settings — name, business identity,
address, country, GST number, localization (currencies/languages), and
exchange-rate configuration.

**Required scope:** `read_settings`

## Response

<ResponseField name="data" type="object">
  <Expandable title="settings">
    <ResponseField name="id" type="string">Store ID.</ResponseField>
    <ResponseField name="name" type="string">Store display name.</ResponseField>
    <ResponseField name="business" type="string">Legal business name.</ResponseField>
    <ResponseField name="businessEmail" type="string">Business contact email.</ResponseField>
    <ResponseField name="phone" type="string">Phone number.</ResponseField>
    <ResponseField name="profileImage" type="string">Logo / profile image URL.</ResponseField>
    <ResponseField name="storeURL" type="string">Custom store URL slug.</ResponseField>
    <ResponseField name="category" type="string">Store category.</ResponseField>
    <ResponseField name="country" type="string">ISO country code.</ResponseField>
    <ResponseField name="storeAdd" type="object">Store address (street, city, postal).</ResponseField>
    <ResponseField name="gstNumber" type="string">Tax / GST registration number.</ResponseField>
    <ResponseField name="availableCountries" type="array">Countries the store ships to.</ResponseField>
    <ResponseField name="availableLanguages" type="array">Languages the storefront supports.</ResponseField>
    <ResponseField name="defaultLanguage" type="string">Default language code.</ResponseField>
    <ResponseField name="useManualExchangeRates" type="boolean">If `true`, the store uses fixed manual rates instead of live FX.</ResponseField>
    <ResponseField name="manualExchangeRates" type="object">Map of `currency → rate` when manual rates are enabled.</ResponseField>
    <ResponseField name="currencyConversionFee" type="number">Surcharge added to converted prices (basis points).</ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json theme={null}
  {
    "status": 200,
    "state": "success",
    "message": null,
    "data": {
      "settings": {
        "id": "7374cb9e-9f9c-4041-87de-379aea6ed21a",
        "name": "Acme Store",
        "business": "Acme Pvt Ltd",
        "businessEmail": "owner@acme.example",
        "phone": "+91-9999999999",
        "profileImage": null,
        "storeURL": "acme",
        "category": "fashion",
        "country": "IN",
        "storeAdd": null,
        "gstNumber": "29ABCDE1234F1Z5",
        "availableCountries": ["IN", "AE", "US"],
        "availableLanguages": ["en", "hi"],
        "defaultLanguage": "en",
        "useManualExchangeRates": false,
        "manualExchangeRates": null,
        "currencyConversionFee": 0
      }
    },
    "pagination": null
  }
  ```
</ResponseExample>
