Loading...
Loading...
Comprehensive guide and tools for working with Shopify's Admin (REST & GraphQL) and Storefront APIs. Use this skill when the user needs to interact with Shopify data, manage resources (products, orders, customers), or build custom storefront integrations.
npx skill4agent add toilahuongg/google-antigravity-kit shopify-apiX-Shopify-Access-Token: <shpat_...>https://{shop}.myshopify.com/admin/api/{version}/{endpoint}X-Shopify-Access-Token: <access_token>POST https://{shop}.myshopify.com/admin/api/{version}/graphql.jsonquery getProducts($first: Int!) {
products(first: $first) {
edges {
node {
id
title
handle
}
cursor
}
pageInfo {
hasNextPage
}
}
}mutation productUpdate($input: ProductInput!) {
productUpdate(input: $input) {
product {
id
title
}
userErrors {
field
message
}
}
}pageInfo { hasNextPage }cursorafterhttps://{shop}.myshopify.com/admin/api/{version}/{resource}.jsonpagepage_infoGET /admin/api/2025-10/products.json?limit=50Link: <...page_info=...>; rel="next", <...>; rel="previous"POST https://{shop}.myshopify.com/api/{version}/graphql.jsonX-Shopify-Storefront-Access-Token: <public_token>query {
shop {
name
}
products(first: 5) {
edges {
node {
title
priceRange {
minVariantPrice {
amount
currencyCode
}
}
}
}
}
}X-Shopify-Shop-Api-Call-Limitextensions.cost429 Too Many Requests