# LinkedIn logo

> Professional networking and job search platform.

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

## About LinkedIn

LinkedIn was acquired by Microsoft in December 2016 for $26.2 billion. It has over 1 billion registered members across 200+ countries. The iconic "in" bug is used as a favicon and app-tile representation across the web.

## Company facts

- **Founded:** 2002
- **Headquarters:** Sunnyvale, California, USA
- **Founders:** Reid Hoffman, Allen Blue, Konstantin Guericke, Eric Ly, Jean-Luc Vaillant
- **Industry:** Professional social network
- **Website:** https://linkedin.com

## About the LinkedIn logo

The LinkedIn logo is the wordmark "Linked" in blue text next to "in" set in white on a blue rounded square. The current design was introduced in 2019, tightening the previous typography.

## LinkedIn brand colors

| Color | Hex |
|---|---|
| LinkedIn Blue | `#0A66C2` |
| LinkedIn 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":["linkedin.com"],"size":512}'
```

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

## Related company logos

- [Meta](https://superlogo.ai/logo/meta.com)
- [X (Twitter)](https://superlogo.ai/logo/x.com)
- [Salesforce](https://superlogo.ai/logo/salesforce.com)
- [TikTok](https://superlogo.ai/logo/tiktok.com)
- [Reddit](https://superlogo.ai/logo/reddit.com)
- [Snapchat](https://superlogo.ai/logo/snapchat.com)
- [Pinterest](https://superlogo.ai/logo/pinterest.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
