# Binance logo

**Domain:** `binance.com`  
**Logo image (transparent PNG):** https://superlogo.ai/api/logo-image/binance.com?size=1024  
**Programmatic access:** `POST https://superlogo.ai/v1/resolve` with `{"domains":["binance.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":["binance.com"],"size":512}'
```

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

## Related company logos

- [Coinbase](https://superlogo.ai/logo/coinbase.com)
- [Stripe](https://superlogo.ai/logo/stripe.com)
- [PayPal](https://superlogo.ai/logo/paypal.com)
- [Square](https://superlogo.ai/logo/square.com)
- [Wise](https://superlogo.ai/logo/wise.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
