# Apple logo

> Consumer electronics, software, and services.

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

## About Apple

Apple Inc. designs and sells iPhone, Mac, iPad, Apple Watch, and services like the App Store and iCloud. Founded in a Los Altos garage in 1976, it became the world's first company to reach a $3 trillion market capitalization. Its logo is one of the most recognized commercial marks on Earth.

## Company facts

- **Founded:** 1976
- **Headquarters:** Cupertino, California, USA
- **Founders:** Steve Jobs, Steve Wozniak, Ronald Wayne
- **Industry:** Consumer electronics
- **Listed as:** NASDAQ: AAPL
- **Website:** https://apple.com

## About the Apple logo

The Apple logo is a silhouette of an apple with a single bite taken from the right side. Designed by Rob Janoff in 1977, it replaced the original Isaac-Newton-under-a-tree emblem. The current monochrome silver rendition dates to 2013.

## Apple brand colors

| Color | Hex |
|---|---|
| Apple Silver | `#A2AAAD` |
| Apple Black | `#000000` |
| Apple White | `#FFFFFF` |

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

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

## Related company logos

- [Microsoft](https://superlogo.ai/logo/microsoft.com)
- [Google](https://superlogo.ai/logo/google.com)
- [Samsung](https://superlogo.ai/logo/samsung.com)
- [Meta](https://superlogo.ai/logo/meta.com)
- [LG](https://superlogo.ai/logo/lg.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
