# Shopify logo

> E-commerce platform for online storefronts.

**Domain:** `shopify.com`  
**Logo image (transparent PNG):** https://superlogo.ai/api/logo-image/shopify.com?size=1024  
**Programmatic access:** `POST https://superlogo.ai/v1/resolve` with `{"domains":["shopify.com"]}` — $0.01/logo, no attribution.

## About Shopify

Shopify powers over 5 million active stores worldwide, from indie sellers to Fortune 500 brands. It handles roughly 10% of all US e-commerce sales. The green shopping-bag logo has remained essentially unchanged since 2018.

## Company facts

- **Founded:** 2006
- **Headquarters:** Ottawa, Ontario, Canada
- **Founders:** Tobias Lütke, Daniel Weinand, Scott Lake
- **Industry:** E-commerce software
- **Listed as:** NYSE: SHOP
- **Website:** https://shopify.com

## About the Shopify logo

The Shopify logo is a green shopping bag with a stylized capital "S" cutout, next to the "shopify" wordmark. The bag shape signals commerce; the color reflects the company's Canadian roots and small-business focus.

## Shopify brand colors

| Color | Hex |
|---|---|
| Shopify Green | `#95BF47` |
| Shopify Dark | `#5E8E3E` |

## Fetch this logo programmatically

```bash
curl -X POST https://superlogo.ai/v1/resolve \
  -H "Authorization: Bearer sl_live_YOURKEY" \
  -H "Content-Type: application/json" \
  -d '{"domains":["shopify.com"],"size":512}'
```

```python
import requests
r = requests.post(
    "https://superlogo.ai/v1/resolve",
    headers={"Authorization": "Bearer sl_live_YOURKEY"},
    json={"domains": ["shopify.com"], "size": 512},
)
logo_b64 = r.json()["logos"][0]["logo_base64"]
```

## Related company logos

- [Amazon](https://superlogo.ai/logo/amazon.com)
- [Stripe](https://superlogo.ai/logo/stripe.com)
- [Squarespace](https://superlogo.ai/logo/squarespace.com)
- [Wix](https://superlogo.ai/logo/wix.com)
- [eBay](https://superlogo.ai/logo/ebay.com)
- [Etsy](https://superlogo.ai/logo/etsy.com)

## Pricing

- $0.01 per logo lookup by domain
- $0.04 per logo when resolving from a company name
- Failed lookups are free
- 100 free lookups per month
- No attribution, no monthly minimum
