# Netflix logo

> Video streaming, original series, and films.

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

## About Netflix

Netflix pioneered streaming video in 2007, having started in 1997 as a DVD-by-mail service. It now has ~270M paying subscribers worldwide. Netflix Red is one of the most recognized brand-owned color codes; the company has trademarked the specific shade for entertainment use.

## Company facts

- **Founded:** 1997
- **Headquarters:** Los Gatos, California, USA
- **Founders:** Reed Hastings, Marc Randolph
- **Industry:** Video streaming
- **Listed as:** NASDAQ: NFLX
- **Website:** https://netflix.com

## About the Netflix logo

The Netflix logo is the wordmark "NETFLIX" in a custom bold sans-serif, rendered in signature Netflix Red (#E50914). The stacked "N" icon used as an app tile and favicon was introduced in 2016.

## Netflix brand colors

| Color | Hex |
|---|---|
| Netflix Red | `#E50914` |
| Netflix Black | `#221F1F` |

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

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

## Related company logos

- [Disney](https://superlogo.ai/logo/disney.com)
- [Spotify](https://superlogo.ai/logo/spotify.com)
- [YouTube](https://superlogo.ai/logo/youtube.com)
- [Twitch](https://superlogo.ai/logo/twitch.tv)
- [SoundCloud](https://superlogo.ai/logo/soundcloud.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
