Integrate Zendact Research's company intelligence directly into your applications with our RESTful API. Built for developers, designed for scale.
Everything you need to build powerful company intelligence features
Clean, intuitive REST endpoints with JSON responses. Easy to integrate with any programming language or framework.
Enterprise-grade security with API key authentication and optional OAuth 2.0 support for enhanced security.
Lightning-fast response times with global CDN delivery and 99.9% uptime SLA for production applications.
Core endpoints for company search, analysis, and data retrieval
Search for companies using natural language queries or structured filters
GET /api/v1/companies/searchqSearch query (required)industryFilter by industrysizeCompany size filterlocationGeographic filterlimitResults per page (max 100){
"results": [
{
"id": "company_123",
"name": "TechCorp Inc.",
"industry": "Software",
"size": "1000-5000",
"location": "San Francisco, CA",
"founded": 2015,
"website": "techcorp.com",
"score": 8.7
}
],
"total": 1,
"page": 1,
"limit": 20
}Get comprehensive information about a specific company
GET /api/v1/companies/{id}idCompany identifier (required)includeData sections to includemetricsCustom metrics to calculate{
"id": "company_123",
"name": "TechCorp Inc.",
"description": "Leading software company...",
"financials": {
"revenue": "$50M",
"funding": "$100M",
"valuation": "$500M"
},
"digital_presence": {
"website_traffic": "2.5M/month",
"social_followers": 50000
},
"metrics": {
"digital_transformation": 8.2,
"esg_score": 6.8,
"market_position": 9.1
}
}Generate custom analysis and scoring for companies
POST /api/v1/companies/{id}/analyze{
"criteria": [
{
"name": "innovation",
"description": "Technology innovation",
"weight": 0.4
},
{
"name": "sustainability",
"description": "ESG practices",
"weight": 0.6
}
],
"include_insights": true
}{
"analysis_id": "analysis_456",
"company_id": "company_123",
"scores": {
"innovation": 8.5,
"sustainability": 7.2,
"overall": 7.7
},
"insights": [
"Strong R&D investment shows...",
"ESG initiatives improving..."
],
"generated_at": "2024-01-15T10:30:00Z"
}Get started quickly with these code samples
const response = await fetch(
'https://api.zendactresearch.com/v1/companies/search?q=fintech',
{
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
}
);
const data = await response.json();
console.log(data.results);import requests
headers = {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
response = requests.get(
'https://api.zendactresearch.com/v1/companies/search',
params={'q': 'fintech'},
headers=headers
)
data = response.json()
print(data['results'])curl -X GET \ "https://api.zendactresearch.com/v1/companies/search?q=fintech" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json"
<?php $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'https://api.zendactresearch.com/v1/companies/search?q=fintech'); curl_setopt($ch, CURLOPT_HTTPHEADER, [ 'Authorization: Bearer YOUR_API_KEY', 'Content-Type: application/json' ]); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $response = curl_exec($ch); $data = json_decode($response, true); print_r($data['results']); ?>
Transparent pricing based on your usage needs
All plans include HTTPS encryption, JSON responses, and comprehensive documentation
Get Started with APIOfficial libraries and tools to accelerate your development
Official Node.js and browser SDK
pip-installable Python package
Ruby library for Rails apps
Ready-to-use API collection
Get help when you need it with our comprehensive developer resources
Comprehensive API docs with examples
Manage API keys and monitor usage
Discord community and GitHub discussions