Quikturnv1.0

Overview

Fast, CDN-backed logo delivery via REST API, TypeScript SDK, or React components

The Quikturn API delivers company logos at the edge. Use the REST API directly (an <img> tag is all you need), or integrate deeper with our official TypeScript SDK and React components.

How It Works

REST API (simplest)

StepActionResult
1Get your API keySign up and copy a pk_* key from the portal
2Request a logoGET /{domain}?token=pk_*
3Receive redirect302 to CDN-hosted logo asset
<img src="https://logos.getquikturn.io/apple.com?token=pk_xxx" alt="Apple" />

With the SDK

npm install @quikturn/logos @quikturn/logos-react
import { QuikturnProvider, QuikturnLogo } from "@quikturn/logos-react";

<QuikturnProvider token="pk_live_xxx">
  <QuikturnLogo domain="apple.com" size={64} />
</QuikturnProvider>

The REST API works with any HTTP client — an &lt;img&gt; tag is all you need. The SDKs add typed errors, retries, batch operations, and React components.

Key Features

Pricing Overview

TierRequests/MonthAttributionSupport
Free500,000RequiredCommunity
Launch1,000,000Not requiredEmail
Growth5,000,000Not requiredPriority
EnterpriseCustomNot requiredDedicated

Only the Free tier requires attribution. Learn more

Next Steps

On this page