Skip to main content

The REST Admin API is a legacy API as of October 1, 2024. Starting April 1, 2025, all new public apps must be built exclusively with the GraphQL Admin API. For details and migration steps, visit our migration guide.

Shop

The Shop resource is a collection of general business and store management settings and information about the store. The resource lets you retrieve information about the store, but it doesn't let you update any information. Only the merchant can update this information from inside the Shopify admin.

Was this section helpful?
#

Endpoints


Anchor to

The Shop resource

Anchor to

Properties


address1

The shop's street address.


address2

The optional second line of the shop's street address.


auto_configure_tax_inclusivity
deprecated

The setting for whether applicable taxes are included automatically, based on buyer's location.


checkout_api_supported

Whether the shop is capable of accepting payments directly through the Checkout API.


city

The shop's city.


country

The shop's country. In most cases, this value matches the country_code.


country_code

The two-letter country code corresponding to the shop's country.


country_name

The shop's normalized country name.


county_taxes
boolean
deprecated

Whether the shop is applying taxes on a per-county basis. Only applicable to shops based in the US. Valid values: true or null."


created_at

The date and time (ISO 8601) when the shop was created.


customer_email

The contact email used for communication between the shop owner and the customer.


currency

The three-letter code (ISO 4217 format) for the shop's default currency.


Was this section helpful?
{}

The Shop resource

{
"address1": "1 Infinite Loop",
"address2": "Suite 100",
"auto_configure_tax_inclusivity": true,
"checkout_api_supported": true,
"city": "Cupertino",
"country": "US",
"country_code": "US",
"country_name": "United States",
"county_taxes": null,
"created_at": "2007-12-31T19:00:00-05:00",
"customer_email": "customers@apple.com",
"currency": "USD",
"domain": "shop.apple.com",
"enabled_presentment_currencies": [
"CAD",
"GBP",
"USD",
"JPY"
],
"eligible_for_payments": true,
"email": "j.smith@example.com",
"finances": true,
"force_ssl": true,
"google_apps_domain": null,
"google_apps_login_enabled": null,
"has_discounts": false,
"has_gift_cards": true,
"has_storefront": true,
"iana_timezone": "America/New_York",
"id": 548380009,
"latitude": 45.427408,
"longitude": -75.68903,
"money_format": "${{amount}}",
"money_in_emails_format": "${{amount}}",
"money_with_currency_format": "${{amount}} USD",
"money_with_currency_in_emails_format": "${{amount}} USD",
"multi_location_enabled": true,
"myshopify_domain": "jsmith.myshopify.com",
"name": "John Smith Test Store",
"password_enabled": false,
"phone": null,
"plan_display_name": "enterprise",
"pre_launch_enabled": false,
"plan_name": "enterprise",
"primary_locale": "fr",
"primary_location_id": 905684977,
"province": "California",
"province_code": "CA",
"requires_extra_payments_agreement": false,
"setup_required": false,
"shop_owner": "John Smith",
"source": null,
"taxes_included": null,
"tax_shipping": null,
"timezone": "(GMT-05:00) Eastern Time",
"transactional_sms_disabled": false,
"updated_at": "2007-12-31T19:00:00-05:00",
"weight_unit": "lb",
"zip": "95014",
"marketing_sms_consent_enabled_at_checkout": true
}

Retrieves the shop's configuration


api_version
string
required

fields

A comma-separated list of fields to include in the response.


Was this section helpful?

Retrieve the shop's configuration

Retrieve the shop's mailing address

Query parameters
fields=address1,address2,city,province,country

A comma-separated list of fields to include in the response.

Was this section helpful?
get

/admin/api/2025-07/shop.json

curl -X GET "https://your-development-store.myshopify.com/admin/api/2025-07/shop.json" \
-H "X-Shopify-Access-Token: {access_token}"

{}

Response

JSON
HTTP/1.1 200 OK
{
"shop": {
"id": 548380009,
"name": "John Smith Test Store",
"email": "j.smith@example.com",
"domain": "shop.apple.com",
"province": "California",
"country": "US",
"address1": "1 Infinite Loop",
"zip": "95014",
"city": "Cupertino",
"source": null,
"phone": "1231231234",
"latitude": 45.45,
"longitude": -75.43,
"primary_locale": "en",
"address2": "Suite 100",
"created_at": "2007-12-31T19:00:00-05:00",
"updated_at": "2025-07-01T14:04:46-04:00",
"country_code": "US",
"country_name": "United States",
"currency": "USD",
"customer_email": "customers@apple.com",
"timezone": "(GMT-05:00) Eastern Time (US & Canada)",
"iana_timezone": "America/New_York",
"shop_owner": "John Smith",
"money_format": "${{amount}}",
"money_with_currency_format": "${{amount}} USD",
"weight_unit": "lb",
"province_code": "CA",
"taxes_included": null,
"auto_configure_tax_inclusivity": null,
"tax_shipping": null,
"county_taxes": true,
"plan_display_name": "Shopify Plus",
"plan_name": "enterprise",
"has_discounts": true,
"has_gift_cards": true,
"myshopify_domain": "jsmith.myshopify.com",
"google_apps_domain": null,
"google_apps_login_enabled": null,
"money_in_emails_format": "${{amount}}",
"money_with_currency_in_emails_format": "${{amount}} USD",
"eligible_for_payments": true,
"requires_extra_payments_agreement": false,
"password_enabled": false,
"has_storefront": true,
"finances": true,
"primary_location_id": 655441491,
"checkout_api_supported": true,
"multi_location_enabled": true,
"setup_required": false,
"pre_launch_enabled": false,
"enabled_presentment_currencies": [
"USD"
],
"marketing_sms_consent_enabled_at_checkout": false,
"transactional_sms_disabled": false
}
}