# Coinbase logo

> Cryptocurrency exchange and custody.

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

## About Coinbase

Coinbase became the first major crypto exchange to go public via direct listing in April 2021 on NASDAQ. The company adopted a remote-first "no headquarters" model in 2020. The stark blue-and-white logo signals trust and regulatory alignment — unusual in an industry that often leans on neon or dark themes.

## Company facts

- **Founded:** 2012
- **Headquarters:** Remote-first (formerly San Francisco, California, USA)
- **Founders:** Brian Armstrong, Fred Ehrsam
- **Industry:** Cryptocurrency
- **Listed as:** NASDAQ: COIN
- **Website:** https://coinbase.com

## About the Coinbase logo

The Coinbase logo is a solid blue circle with a smaller white circle cutout in the center — a minimalist "C" abstraction that also evokes a coin. The wordmark "Coinbase" uses a custom geometric sans-serif.

## Coinbase brand colors

| Color | Hex |
|---|---|
| Coinbase Blue | `#0052FF` |
| Coinbase 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":["coinbase.com"],"size":512}'
```

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

## Related company logos

- [Binance](https://superlogo.ai/logo/binance.com)
- [Robinhood](https://superlogo.ai/logo/robinhood.com)
- [Stripe](https://superlogo.ai/logo/stripe.com)
- [PayPal](https://superlogo.ai/logo/paypal.com)
- [Square](https://superlogo.ai/logo/square.com)
- [Wise](https://superlogo.ai/logo/wise.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
