# X (Twitter) logo

> Microblogging and real-time social network (formerly Twitter).

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

## About X (Twitter)

X (formerly Twitter) is a real-time social network where users post messages up to 280 characters. Founded in 2006, it was acquired by Elon Musk in October 2022 for $44 billion and rebranded from Twitter to X in July 2023. The stark black monochrome logo represents an intentional break from the friendly-bluebird era.

## Company facts

- **Founded:** 2006
- **Headquarters:** San Francisco, California, USA
- **Founders:** Jack Dorsey, Noah Glass, Biz Stone, Evan Williams
- **Industry:** Social media
- **Website:** https://x.com

## About the X (Twitter) logo

The X logo is a stylized "𝕏" glyph — a wide-set X composed of two sharp diagonal strokes. It replaced the Larry the Bird icon on July 23, 2023, after Elon Musk's acquisition and rebrand.

## X (Twitter) brand colors

| Color | Hex |
|---|---|
| X Black | `#000000` |
| X 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":["x.com"],"size":512}'
```

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

## Related company logos

- [Meta](https://superlogo.ai/logo/meta.com)
- [LinkedIn](https://superlogo.ai/logo/linkedin.com)
- [Reddit](https://superlogo.ai/logo/reddit.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)
- [Quora](https://superlogo.ai/logo/quora.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
