# Anthropic logo

> AI safety company; creator of Claude.

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

## About Anthropic

Anthropic was founded by Dario and Daniela Amodei with several former OpenAI researchers. Its flagship product Claude is a general-purpose AI assistant. The company's warm coral-and-cream palette is a deliberate departure from the sterile tech-industry defaults, signaling a "human-friendly AI" positioning.

## Company facts

- **Founded:** 2021
- **Headquarters:** San Francisco, California, USA
- **Founders:** Dario Amodei, Daniela Amodei, and former OpenAI researchers
- **Industry:** Artificial intelligence
- **Website:** https://anthropic.com

## About the Anthropic logo

The Anthropic logo is a stylized abstract mark — three angular strokes forming a compact shape often described as a stylized "A". The mark is usually paired with the "Anthropic" wordmark in a humanist serif.

## Anthropic brand colors

| Color | Hex |
|---|---|
| Anthropic Coral | `#D97757` |
| Anthropic Cream | `#F5F0E8` |
| Anthropic Black | `#141413` |

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

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

## Related company logos

- [OpenAI](https://superlogo.ai/logo/openai.com)
- [Google](https://superlogo.ai/logo/google.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
