# Blink Shopify

> Access Shopify store data: orders, products, customers, and inventory. Use when asked about store sales, product listings, customer data, or order fulfillment. Requires a linked Shopify connection.

- Skill: `blink-new/blink-shopify` (Agent Skill)
- Install (CLI): `npx skillmds@latest add blink-new/blink-shopify`
- Raw SKILL.md: https://api.skillmd.com/api/skills/blink-new/blink-shopify/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: blink-new (https://skillmd.com/u/blink-new)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/blink-new/blink-shopify

---


# Blink Shopify

Access the user's linked Shopify store. Provider key: `shopify`.

## Get shop info
```bash
blink connector exec shopify /admin/api/2024-01/shop.json GET
```

## List orders
```bash
blink connector exec shopify /admin/api/2024-01/orders.json GET '{"status":"any","limit":20}'
```

## Get a specific order
```bash
blink connector exec shopify /admin/api/2024-01/orders/{order_id}.json GET
```

## List products
```bash
blink connector exec shopify /admin/api/2024-01/products.json GET '{"limit":20}'
```

## Get a product
```bash
blink connector exec shopify /admin/api/2024-01/products/{product_id}.json GET
```

## List customers
```bash
blink connector exec shopify /admin/api/2024-01/customers.json GET '{"limit":20}'
```

## Search customers
```bash
blink connector exec shopify /admin/api/2024-01/customers/search.json GET '{"query":"email:john@example.com"}'
```

## Get inventory levels
```bash
blink connector exec shopify /admin/api/2024-01/inventory_levels.json GET '{"location_ids":"{location_id}"}'
```

## Common use cases
- "How many orders did we get today?" → GET /orders.json?created_at_min=today
- "List all products in our store" → GET /products.json
- "Find customer john@example.com" → GET /customers/search.json?query=email:john@example.com
- "What's our total revenue this month?" → GET /orders.json with date filters
- "Check inventory for product X" → GET /inventory_levels.json

