Integrate verified brand data into your application. Simple, fast, and reliable API with comprehensive documentation.
99.9% uptime with sub-100ms response times
OAuth 2.0 and API key authentication
Clean, predictable resource-oriented URLs
Distributed across multiple regions worldwide
Sign up for an account and generate your API key from the dashboard.
sk_live_xxxxxxxxxxxxxAll API requests require authentication via the Authorization header.
const response = await fetch('https://api.brandverify.com/v1/brands/brand_123', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
});
const brand = await response.json();
console.log(brand);{
"id": "brand_123",
"name": "TechCorp",
"category": "Technology",
"description": "Leading technology company",
"verified": true,
"verifiedAt": "2024-01-15T10:30:00Z",
"email": "contact@techcorp.com",
"website": "https://techcorp.com",
"socialAccounts": [
{
"platform": "Twitter",
"handle": "@techcorp",
"url": "https://twitter.com/techcorp",
"verified": true
}
]
}/api/v1/brands/{brandId}Retrieve detailed information about a specific brand
API rate limits vary by plan. Exceeded limits return a 429 status code.
100 requests/hour
1 req/sec
10,000 requests/hour
100 req/sec
Unlimited
Custom