# Microsoft logo

> Windows, Office, Azure, Xbox, and enterprise software.

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

## About Microsoft

Microsoft is a leading enterprise software and cloud computing company. Its Azure platform is the second-largest cloud provider globally after AWS. The four colored squares of the current logo each represent a product family: red for Office, green for Xbox, blue for Windows, yellow for Bing (interpretation is unofficial).

## Company facts

- **Founded:** 1975
- **Headquarters:** Redmond, Washington, USA
- **Founders:** Bill Gates, Paul Allen
- **Industry:** Software and cloud computing
- **Listed as:** NASDAQ: MSFT
- **Website:** https://microsoft.com

## About the Microsoft logo

The Microsoft logo is a four-square symbol (red, green, blue, yellow) next to the "Microsoft" wordmark in Segoe UI. The current design was introduced on August 23, 2012 — Microsoft's first true logo update in 25 years.

## Microsoft brand colors

| Color | Hex |
|---|---|
| Microsoft Red | `#F25022` |
| Microsoft Green | `#7FBA00` |
| Microsoft Blue | `#00A4EF` |
| Microsoft Yellow | `#FFB900` |
| Microsoft Gray | `#737373` |

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

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

## Related company logos

- [Apple](https://superlogo.ai/logo/apple.com)
- [Google](https://superlogo.ai/logo/google.com)
- [Amazon](https://superlogo.ai/logo/amazon.com)
- [Oracle](https://superlogo.ai/logo/oracle.com)
- [Meta](https://superlogo.ai/logo/meta.com)
- [Samsung](https://superlogo.ai/logo/samsung.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
