Parsew
API Reference

Open Graph endpoint

Retrieve a company's social preview image by domain.

Request

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

The default output width is 1200 pixels. Parsew preserves the source image's aspect ratio for OG requests.

The endpoint defaults to fallback=404 because a generated square monogram is rarely useful in a wide preview. You can explicitly request fallback=monogram if your interface prefers one.

TypeScript

import { ParsewBrands } from '@parsew/sdk/client'

const images = new ParsewBrands({ token: 'pk_...' })
const url = images.ogUrl('stripe.com', { format: 'webp' })

The status codes match the icon endpoint.

On this page