To view your API keys, go to the Logo.dev dashboard.

Key types

Publishable key (pk_)

Client-side safe. Only works with img.logo.dev for accessing our image CDN.

<img src="https://img.logo.dev/nike.com?token=YOUR_PUBLISHABLE_KEY" />

Secret key (sk_)

Server-side only. Required for all REST API endpoints. Never expose this key.

// Server-side only
fetch("https://api.logo.dev/v1/search", {
  headers: {
    Authorization: `Bearer YOUR_SECRET_KEY`,
  },
});

Key rotation

Need to rotate keys for any reason? Email team@logo.dev for help.