# OpenAI logo

> AI research and deployment company; creator of ChatGPT.

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

## About OpenAI

OpenAI released ChatGPT in November 2022, reaching 100 million users in two months — the fastest consumer product growth in history at the time. The company was valued at $157 billion in October 2024. The hexagonal knot logo is meant to evoke the interconnectedness of neural networks.

## Company facts

- **Founded:** 2015
- **Headquarters:** San Francisco, California, USA
- **Founders:** Sam Altman, Elon Musk, Ilya Sutskever, Greg Brockman, and others
- **Industry:** Artificial intelligence
- **Website:** https://openai.com

## About the OpenAI logo

The OpenAI logo is a black hexagonal knot — a stylized six-pointed symmetrical shape reminiscent of a flower or gear. It has been used with slight refinements since the company's founding in 2015.

## OpenAI brand colors

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

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

## Related company logos

- [Anthropic](https://superlogo.ai/logo/anthropic.com)
- [Google](https://superlogo.ai/logo/google.com)
- [Meta](https://superlogo.ai/logo/meta.com)
- [Hugging Face](https://superlogo.ai/logo/huggingface.co)
- [Perplexity](https://superlogo.ai/logo/perplexity.ai)
- [Replicate](https://superlogo.ai/logo/replicate.com)
- [Claude](https://superlogo.ai/logo/claude.ai)
- [ChatGPT](https://superlogo.ai/logo/chatgpt.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
