Logo.dev
| Metadata | Value |
|---|---|
| Category | dev |
| Capabilities | http |
| Website | https://www.logo.dev |
Connections
Section titled “Connections”api
Readme
Section titled “Readme”Company logo API - get logos for any brand by domain, stock ticker, or company name.
- Sign up at https://www.logo.dev/signup (free tier available)
- Get your publishable key from https://www.logo.dev/dashboard
- Add credential in AgentOS Settings → Providers → Logo.dev
How It Works
Section titled “How It Works”Logo.dev is a CDN — URLs return images directly, not JSON. The utilities verify the logo exists and return the URL in the response headers.
URL pattern:
https://img.logo.dev/{identifier}?token=KEY&size=128&format=pngGet logo by domain
Section titled “Get logo by domain”curl -X POST http://localhost:3456/api/adapters/logo-dev/logo_url \ -H "Content-Type: application/json" \ -H "X-Agent: cursor" \ -d '{"domain": "shopify.com", "size": 64}'Returns the verified URL that can be used in <img> tags.
Get logo by ticker
Section titled “Get logo by ticker”curl -X POST http://localhost:3456/api/adapters/logo-dev/ticker_url \ -H "Content-Type: application/json" \ -H "X-Agent: cursor" \ -d '{"ticker": "AAPL"}'Get logo by company name
Section titled “Get logo by company name”curl -X POST http://localhost:3456/api/adapters/logo-dev/name_url \ -H "Content-Type: application/json" \ -H "X-Agent: cursor" \ -d '{"name": "Shopify"}'Get crypto logo
Section titled “Get crypto logo”curl -X POST http://localhost:3456/api/adapters/logo-dev/crypto_url \ -H "Content-Type: application/json" \ -H "X-Agent: cursor" \ -d '{"symbol": "BTC"}'Use Cases
Section titled “Use Cases”- Adapter icons: Generate proper logos for adapters that don’t have them
- Contact enrichment: Add company logos to contacts
- Entity display: Show logos in task/project views
Lookup Methods
Section titled “Lookup Methods”| Method | Identifier | Example |
|---|---|---|
| Domain | shopify.com | Most reliable |
| Ticker | ticker:AAPL | Stock symbols |
| Crypto | crypto:BTC | Cryptocurrency |
| Name | name:Shopify | Fuzzy matching |
| ISIN | isin:US0378331005 | International securities |
Parameters
Section titled “Parameters”| Param | Values | Default |
|---|---|---|
| size | 16-800 | 128 |
| format | jpg, png, webp | png |
| theme | auto, light, dark | auto |
| retina | true/false | false |
| fallback | monogram, 404 | monogram |
Pricing
Section titled “Pricing”- Free: 1,000 requests/month
- Pro: Higher limits
- Enterprise: SVG format, custom fallbacks