# Google logo

> Search, advertising, Android, Chrome, and cloud services.

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

## About Google

Google is a subsidiary of Alphabet Inc. Its search engine handles over 8.5 billion queries per day. The company also owns YouTube, Android, Chrome, Gmail, and Google Cloud. The four-color logo signals playfulness and non-conformity, a deliberate visual break from the blue-dominant tech-company palette of the 1990s.

## Company facts

- **Founded:** 1998
- **Headquarters:** Mountain View, California, USA
- **Founders:** Larry Page, Sergey Brin
- **Industry:** Internet services and products
- **Listed as:** NASDAQ: GOOGL
- **Website:** https://google.com

## About the Google logo

The Google logo is the wordmark "Google" set in a custom geometric sans-serif called Product Sans, with each letter in one of the four brand colors — blue, red, yellow, and green. The current flat design was introduced in September 2015.

## Google brand colors

| Color | Hex |
|---|---|
| Google Blue | `#4285F4` |
| Google Red | `#EA4335` |
| Google Yellow | `#FBBC04` |
| Google Green | `#34A853` |

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

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

## Related company logos

- [Apple](https://superlogo.ai/logo/apple.com)
- [Microsoft](https://superlogo.ai/logo/microsoft.com)
- [Meta](https://superlogo.ai/logo/meta.com)
- [Amazon](https://superlogo.ai/logo/amazon.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
