Open Connector
All tools

Shopify logoShopify

Connect to Shopify Admin GraphQL to read and manage store catalog data.

shopifyvcatalog-v110 tools

Authentication

MethodKindStatusDetails
OAuth 2.0oauth2available
API Access Tokenapi_keyavailable
OAuth 2.0 (Client Credentials)oauth2available

Call a tool

import { createClient } from "@open-connector/sdk";const oc = createClient({  baseUrl: "https://api.openconnector.dev",  apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await oc.executeTool({  slug: "SHOPIFY_GRAPHQL_EXECUTE",  connectedAccountId: "conn_...",  arguments: { /* match this tool's input schema */ },});
import Composio from "@composio/client";const composio = new Composio({  baseURL: "https://api.openconnector.dev/composio",  apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await composio.tools.execute("SHOPIFY_GRAPHQL_EXECUTE", {  connected_account_id: "conn_...",  arguments: { /* match this tool's input schema */ },});
oc tools execute SHOPIFY_GRAPHQL_EXECUTE --data '{ }'

Tool catalog

Available tools

10 callable operations

Run Shopify GraphQL query or mutationSHOPIFY_GRAPHQL_EXECUTEExecutes an arbitrary GraphQL query or mutation against Shopify's API using the connected account. Use this escape hatch when reviewed tools do not cover the needed operation.

Executes an arbitrary GraphQL query or mutation against Shopify's API using the connected account. Use this escape hatch when reviewed tools do not cover the needed operation.

Authentication

Connected account required

Tags

graphqladvancedreadwritescope-unmapped
Check Shopify Admin GraphQL endpointSHOPIFY_GRAPHQL_HEALTHChecks that the connected Shopify Admin GraphQL endpoint is reachable.

Checks that the connected Shopify Admin GraphQL endpoint is reachable.

Authentication

Connected account required

Scopes

read_products

Tags

graphqlhealthread
Get a Shopify product by handleSHOPIFY_PRODUCT_BY_HANDLEReturns a Shopify product by its storefront handle.

Returns a Shopify product by its storefront handle.

Authentication

Connected account required

Scopes

read_products

Tags

productsread
Change Shopify product statusSHOPIFY_PRODUCT_CHANGE_STATUSChanges the publication status of a Shopify product.

Changes the publication status of a Shopify product.

Authentication

Connected account required

Scopes

write_products

Tags

productswrite
Create a Shopify productSHOPIFY_PRODUCT_CREATECreates a product in Shopify and returns validation errors from the provider.

Creates a product in Shopify and returns validation errors from the provider.

Authentication

Connected account required

Scopes

write_products

Tags

productswrite
Get a Shopify productSHOPIFY_PRODUCT_GETReturns a Shopify product by its global ID, including its first 50 variants.

Returns a Shopify product by its global ID, including its first 50 variants.

Authentication

Connected account required

Scopes

read_products

Tags

productsread
Update a Shopify productSHOPIFY_PRODUCT_UPDATEUpdates a product in Shopify and returns validation errors from the provider.

Updates a product in Shopify and returns validation errors from the provider.

Authentication

Connected account required

Scopes

write_products

Tags

productswrite
Count Shopify productsSHOPIFY_PRODUCTS_COUNTReturns the number of products matching an optional Shopify search query.

Returns the number of products matching an optional Shopify search query.

Authentication

Connected account required

Scopes

read_products

Tags

productsread
List Shopify productsSHOPIFY_PRODUCTS_LISTLists products in the connected Shopify shop with cursor pagination and optional search filters.

Lists products in the connected Shopify shop with cursor pagination and optional search filters.

Authentication

Connected account required

Scopes

read_products

Tags

productsread
Get Shopify shop detailsSHOPIFY_SHOP_GETReturns basic identity and locale metadata for the connected Shopify shop.

Returns basic identity and locale metadata for the connected Shopify shop.

Authentication

Connected account required

Scopes

read_products

Tags

shopread

Provider resources