This website requires JavaScript to run properly.

Your First Request

Make your first successful request to the Yoku API.

Quick Start Guide

Step 1: Get Your API Key

  1. Sign up at yoku.app
  2. Navigate to Dashboard → Settings → API Keys
  3. Click "Create Key"
  4. Enter a name for your key (e.g. "Production Backend")
  5. Copy the key and store it securely (it won't be shown again!)

Step 2: Make a Test Request

# Using curl
curl -X GET "https://api.yoku.app/v1/brand?domain=stripe.com" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \

Common Initial Requests

1. Basic Domain Lookup

Usefull when you quickly need to get the basic brand infos from a domain name.

curl -X GET "https://api.yoku.app/v1/brand?domain=github.com" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

2. Company Name Resolution

curl -X GET "https://api.yoku.app/v1/brand?name=Salesforce" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

3. Financial Identifier

# For financial applications
curl -X GET "https://api.yoku.app/v1/brand?ticker=AAPL" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"