# GitLab logo

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

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

## Related company logos

- [GitHub](https://superlogo.ai/logo/github.com)
- [Atlassian](https://superlogo.ai/logo/atlassian.com)
- [Datadog](https://superlogo.ai/logo/datadog.com)
- [MongoDB](https://superlogo.ai/logo/mongodb.com)
- [Redis](https://superlogo.ai/logo/redis.com)
- [Elastic](https://superlogo.ai/logo/elastic.co)

## 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
