# Notion logo

> Connected workspace for notes, docs, and databases.

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

## About Notion

Notion has over 100 million users worldwide as of 2024. Its block-based document model, where every element is a database row, inspired a wave of "all-in-one workspace" competitors. The stark monochrome logo reads as intentionally unbranded, which fits the app's "make it yours" ethos.

## Company facts

- **Founded:** 2013
- **Headquarters:** San Francisco, California, USA
- **Founders:** Ivan Zhao, Simon Last
- **Industry:** Productivity software
- **Website:** https://notion.so

## About the Notion logo

The Notion logo is a black-on-white stylized capital "N" made of four vertical bars forming an "N" shape. The minimal design was deliberate — an unfussy mark that lets user content stand out.

## Notion brand colors

| Color | Hex |
|---|---|
| Notion Black | `#000000` |
| Notion 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":["notion.so"],"size":512}'
```

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

## Related company logos

- [Slack](https://superlogo.ai/logo/slack.com)
- [Atlassian](https://superlogo.ai/logo/atlassian.com)
- [Airtable](https://superlogo.ai/logo/airtable.com)
- [Zoom](https://superlogo.ai/logo/zoom.us)
- [Salesforce](https://superlogo.ai/logo/salesforce.com)
- [HubSpot](https://superlogo.ai/logo/hubspot.com)
- [Zendesk](https://superlogo.ai/logo/zendesk.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
