# domain - admin-graphql - QUERY Version: 2024-10 ## Description Lookup a Domain by ID. ### Access Scopes ## Arguments * [id](/docs/api/admin-graphql/2024-10/scalars/ID): ID! - The ID of the `Domain` to return. ## Returns * [host](/docs/api/admin-graphql/2024-10/scalars/String): String! The host name of the domain. For example, `example.com`. * [id](/docs/api/admin-graphql/2024-10/scalars/ID): ID! A globally-unique ID. * [localization](/docs/api/admin-graphql/2024-10/objects/DomainLocalization): DomainLocalization The localization of the domain, if the domain doesn't redirect. * [marketWebPresence](/docs/api/admin-graphql/2024-10/objects/MarketWebPresence): MarketWebPresence The web presence of the domain. * [sslEnabled](/docs/api/admin-graphql/2024-10/scalars/Boolean): Boolean! Whether SSL is enabled. * [url](/docs/api/admin-graphql/2024-10/scalars/URL): URL! The URL of the domain (for example, `https://example.com`). ## Examples ### Retrieve a domain by ID Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2024-10/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"query { domain(id: \\\"gid://shopify/Domain/948873163\\\") { host url } }\"\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: `query {\n domain(id: \"gid://shopify/Domain/948873163\") {\n host\n url\n }\n }`,\n});\n" Ruby example: "session = ShopifyAPI::Auth::Session.new(\n shop: \"your-development-store.myshopify.com\",\n access_token: access_token\n)\nclient = ShopifyAPI::Clients::Graphql::Admin.new(\n session: session\n)\n\nquery = <<~QUERY\n query {\n domain(id: \"gid://shopify/Domain/948873163\") {\n host\n url\n }\n }\nQUERY\n\nresponse = client.query(query: query)\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n query {\n domain(id: \"gid://shopify/Domain/948873163\") {\n host\n url\n }\n }`,\n);\n\nconst data = await response.json();\n" Graphql query: "query {\n domain(id: \"gid://shopify/Domain/948873163\") {\n host\n url\n }\n}" #### Graphql Input null #### Graphql Response { "data": { "domain": { "host": "www.snowdevil.ca", "url": "https://www.snowdevil.ca" } } } ### Retrieve information about a shop's domains Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2024-10/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"query { shop { domains { id host url } } }\"\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: `query {\n shop {\n domains {\n id\n host\n url\n }\n }\n }`,\n});\n" Ruby example: "session = ShopifyAPI::Auth::Session.new(\n shop: \"your-development-store.myshopify.com\",\n access_token: access_token\n)\nclient = ShopifyAPI::Clients::Graphql::Admin.new(\n session: session\n)\n\nquery = <<~QUERY\n query {\n shop {\n domains {\n id\n host\n url\n }\n }\n }\nQUERY\n\nresponse = client.query(query: query)\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n query {\n shop {\n domains {\n id\n host\n url\n }\n }\n }`,\n);\n\nconst data = await response.json();\n" Graphql query: "query {\n shop {\n domains {\n id\n host\n url\n }\n }\n}" #### Graphql Input null #### Graphql Response { "data": { "shop": { "domains": [ { "id": "gid://shopify/Domain/26371970", "host": "snowdevil.myshopify.com", "url": "https://snowdevil.myshopify.com" }, { "id": "gid://shopify/Domain/948873163", "host": "www.snowdevil.ca", "url": "https://www.snowdevil.ca" } ] } } }