# Amazon logo

> E-commerce, AWS cloud, Prime Video, and Alexa.

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

## About Amazon

Amazon.com started as an online bookstore in 1994 and now operates the world's largest e-commerce platform, AWS (the leading public cloud provider), Prime Video, MGM Studios, Whole Foods, and Kuiper satellites. The smile-shaped arrow beneath the wordmark is often called the "Amazon smile."

## Company facts

- **Founded:** 1994
- **Headquarters:** Seattle, Washington, USA
- **Founders:** Jeff Bezos
- **Industry:** E-commerce and cloud computing
- **Listed as:** NASDAQ: AMZN
- **Website:** https://amazon.com

## About the Amazon logo

The Amazon logo is the wordmark "amazon" in lowercase with a curved orange arrow underneath, sweeping from the "a" to the "z" — signaling "we sell everything from A to Z." The current version was introduced in 2000, designed by Turner Duckworth.

## Amazon brand colors

| Color | Hex |
|---|---|
| Amazon Orange | `#FF9900` |
| Amazon Black | `#131A22` |

## 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":["amazon.com"],"size":512}'
```

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

## Related company logos

- [Shopify](https://superlogo.ai/logo/shopify.com)
- [eBay](https://superlogo.ai/logo/ebay.com)
- [Walmart](https://superlogo.ai/logo/walmart.com)
- [Target](https://superlogo.ai/logo/target.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
