# Spotify logo

> Music, podcasts, and audiobook streaming.

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

## About Spotify

Spotify is the world's largest music streaming platform, with 600M+ monthly active users. It also distributes podcasts and audiobooks. The green sound-wave logo is designed to evoke "signal" — the sense that music is being broadcast to your ear.

## Company facts

- **Founded:** 2006
- **Headquarters:** Stockholm, Sweden
- **Founders:** Daniel Ek, Martin Lorentzon
- **Industry:** Audio streaming
- **Listed as:** NYSE: SPOT
- **Website:** https://spotify.com

## About the Spotify logo

The Spotify logo is a green circle containing three curved lines representing radio waves. The wordmark "Spotify" sometimes appears alongside it in Circular typography. The current flatter design was introduced in July 2015.

## Spotify brand colors

| Color | Hex |
|---|---|
| Spotify Green | `#1DB954` |
| Spotify Black | `#191414` |
| Spotify 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":["spotify.com"],"size":512}'
```

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

## Related company logos

- [Apple](https://superlogo.ai/logo/apple.com)
- [Amazon](https://superlogo.ai/logo/amazon.com)
- [SoundCloud](https://superlogo.ai/logo/soundcloud.com)
- [Netflix](https://superlogo.ai/logo/netflix.com)
- [YouTube](https://superlogo.ai/logo/youtube.com)
- [Twitch](https://superlogo.ai/logo/twitch.tv)
- [Bandcamp](https://superlogo.ai/logo/bandcamp.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
