# Cloudflare logo

> CDN, DDoS protection, DNS, and edge compute.

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

## About Cloudflare

Cloudflare protects and accelerates roughly 20% of the top 10M websites globally. It went public on NYSE in September 2019. The company runs one of the largest anycast networks in the world, with 320+ cities represented in its edge fleet.

## Company facts

- **Founded:** 2009
- **Headquarters:** San Francisco, California, USA
- **Founders:** Matthew Prince, Michelle Zatlyn, Lee Holloway
- **Industry:** Internet infrastructure
- **Listed as:** NYSE: NET
- **Website:** https://cloudflare.com

## About the Cloudflare logo

The Cloudflare logo is a stylized cloud silhouette in orange gradient, next to the wordmark "CLOUDFLARE" in a bold sans-serif. The cloud shape signals the company's edge-network positioning.

## Cloudflare brand colors

| Color | Hex |
|---|---|
| Cloudflare Orange | `#F38020` |
| Cloudflare Black | `#232324` |

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

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

## Related company logos

- [Vercel](https://superlogo.ai/logo/vercel.com)
- [Netlify](https://superlogo.ai/logo/netlify.com)
- [Heroku](https://superlogo.ai/logo/heroku.com)
- [DigitalOcean](https://superlogo.ai/logo/digitalocean.com)
- [Railway](https://superlogo.ai/logo/railway.app)

## 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
