Skip to main content
GET
/
api
/
v1
/
shop.json
Get Shop
curl --request GET \
  --url https://api.launchmystore.io/api/v1/shop.json \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "<string>",
    "name": "<string>",
    "email": "<string>",
    "domain": "<string>",
    "mylaunchmystore_domain": "<string>",
    "phone": "<string>",
    "address": {},
    "currency": "<string>",
    "money_format": "<string>",
    "money_with_currency_format": "<string>",
    "timezone": "<string>",
    "iana_timezone": "<string>",
    "weight_unit": "<string>",
    "plan_name": "<string>",
    "plan_display_name": "<string>",
    "password_enabled": true,
    "checkout_api_supported": true,
    "multi_location_enabled": true,
    "taxes_included": true,
    "tax_shipping": true,
    "enabled_presentment_currencies": [
      {}
    ],
    "created_at": "<string>",
    "updated_at": "<string>"
  }
}

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 Shop

Returns the shop’s information and settings.

Request

curl -X GET "https://api.launchmystore.io/api/v1/shop.json" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

Response

success
boolean
Whether the request succeeded
data
object
Shop object

Example Response

{
  "success": true,
  "data": {
    "id": "shop_abc123",
    "name": "My Awesome Store",
    "email": "hello@mystore.com",
    "domain": "mystore.com",
    "mylaunchmystore_domain": "mystore.launchmystore.io",
    "phone": "+1 (555) 123-4567",
    "address": {
      "address1": "123 Commerce St",
      "address2": "Suite 100",
      "city": "San Francisco",
      "province": "California",
      "province_code": "CA",
      "country": "United States",
      "country_code": "US",
      "zip": "94102"
    },
    "currency": "USD",
    "money_format": "${{amount}}",
    "money_with_currency_format": "${{amount}} USD",
    "timezone": "(GMT-08:00) Pacific Time (US & Canada)",
    "iana_timezone": "America/Los_Angeles",
    "weight_unit": "lb",
    "plan_name": "professional",
    "plan_display_name": "Professional",
    "password_enabled": false,
    "checkout_api_supported": true,
    "multi_location_enabled": true,
    "taxes_included": false,
    "tax_shipping": false,
    "enabled_presentment_currencies": ["USD", "CAD", "EUR", "GBP"],
    "created_at": "2023-01-15T10:00:00Z",
    "updated_at": "2024-03-20T14:30:00Z"
  }
}

Error Codes

CodeDescription
UNAUTHORIZEDInvalid or missing access token
FORBIDDENApp doesn’t have read_shop scope