Parsew
Get Started

Quickstart

Render your first company icon in a few minutes.

Create a publishable key

  1. Sign up at parsew.com.
  2. Create an organization in the dashboard.
  3. Open API Keys and create a key.
  4. Add the browser domains where the key will be used.

The key begins with pk_ and is shown once when you create it.

Render an icon

Use the image endpoint directly in an <img> tag:

<img
  src="https://logo.parsew.com/stripe.com?token=pk_...&size=128&format=webp"
  width="64"
  height="64"
  alt="Stripe"
/>

The domain can include a protocol, www, or a path. Parsew normalizes it before lookup.

Render an Open Graph image

Add the /og/ path prefix:

<img
  src="https://logo.parsew.com/og/stripe.com?token=pk_...&format=webp"
  alt=""
/>

The OG endpoint defaults to 1200 pixels and returns a 404 if the company does not publish a usable social image.

Use the TypeScript client

npm install @parsew/sdk
images.ts
import { ParsewBrands } from '@parsew/sdk/client'

const images = new ParsewBrands({ token: 'pk_...' })

const iconUrl = images.url('stripe.com', { size: 128, format: 'webp' })
const ogImageUrl = images.ogUrl('stripe.com', { format: 'webp' })

Use fetch() and fetchOg() when you need the response bytes on the server.

On this page