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>"
}
}Shop
Get Shop
Retrieve shop information and settings
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
Whether the request succeeded
Shop object
Show Shop Object
Show Shop Object
Unique shop ID
Shop name
Shop contact email
Primary domain
LaunchMyStore subdomain (e.g., mystore.launchmystore.io)
Shop phone number
Shop address
Primary currency code (e.g., “USD”)
Money format string (e.g., ”$”)
Money format with currency (e.g., ”$ USD”)
Shop timezone
IANA timezone identifier
Weight unit:
kg, g, lb, ozCurrent plan name
Plan display name
Whether storefront password is enabled
Whether checkout API is available
Whether multi-location inventory is enabled
Whether prices include tax
Whether shipping is taxable
Array of enabled currency codes for multi-currency
Shop creation timestamp
Last update timestamp
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
| Code | Description |
|---|---|
UNAUTHORIZED | Invalid or missing access token |
FORBIDDEN | App doesn’t have read_shop scope |
⌘I