Skip to main content

Getting Started

What is Scrift?

Scrift is an SVG-first brand logo API: thousands of brands from a curated catalog, automatic dark-mode colors, and _css variables you can drop straight into your UI. No attribution is required for normal use (see our Terms of Service).

Quickstart

Fetch a single brand by slug with your API key:

curl https://api.scrift.app/v1/catalog/stripe \
-H "X-API-Key: YOUR_API_KEY"

Typical JSON shape (fields you will use most often):

{
"slug": "stripe",
"name": "Stripe",
"brandColor": "#635BFF",
"darkModeColor": "#A29BFE",
"_css": {
"--brand-color": "#635BFF",
"--brand-color-dark": "#A29BFE",
"--brand-color-contrast": "#FFFFFF"
}
}

The catalog also returns variant metadata, extended color roles, and a static _notice string on each payload.

Get an API key

  1. Create an account at scrift.app.
  2. Open the dashboard and copy your API key. It is shown once when created-store it securely. You can regenerate a key from the dashboard if needed.

What's next