# BBC logo

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

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

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

## Related company logos

- [CNN](https://superlogo.ai/logo/cnn.com)
- [Reuters](https://superlogo.ai/logo/reuters.com)
- [The New York Times](https://superlogo.ai/logo/nytimes.com)
- [The Wall Street Journal](https://superlogo.ai/logo/wsj.com)
- [The Washington Post](https://superlogo.ai/logo/washingtonpost.com)
- [Bloomberg](https://superlogo.ai/logo/bloomberg.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
