# Reddit logo

> Community-driven discussion and content aggregation.

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

## About Reddit

Reddit went public in March 2024 (NYSE: RDDT). It hosts over 100,000 active communities called subreddits. Snoo's design has evolved several times but always keeps the antenna-eared alien silhouette — an intentional callback to the site's early geek-culture identity.

## Company facts

- **Founded:** 2005
- **Headquarters:** San Francisco, California, USA
- **Founders:** Steve Huffman, Alexis Ohanian, Aaron Swartz
- **Industry:** Social news aggregation
- **Listed as:** NYSE: RDDT
- **Website:** https://reddit.com

## About the Reddit logo

The Reddit logo is an anthropomorphic alien mascot named Snoo, usually rendered as a rounded white silhouette on Reddit's signature orange-red circle. The current cleaner Snoo debuted with the site redesign in 2018.

## Reddit brand colors

| Color | Hex |
|---|---|
| Reddit Orange-Red | `#FF4500` |
| Reddit 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":["reddit.com"],"size":512}'
```

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

## Related company logos

- [X (Twitter)](https://superlogo.ai/logo/x.com)
- [Meta](https://superlogo.ai/logo/meta.com)
- [LinkedIn](https://superlogo.ai/logo/linkedin.com)
- [Quora](https://superlogo.ai/logo/quora.com)
- [TikTok](https://superlogo.ai/logo/tiktok.com)
- [Snapchat](https://superlogo.ai/logo/snapchat.com)
- [Pinterest](https://superlogo.ai/logo/pinterest.com)
- [Discord](https://superlogo.ai/logo/discord.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
