Configure the Company Research & Analysis Agent for your needs
actor.json
{ "actorSpecification": 1, "name": "company-research-analysis-agent", "title": "Company Research & Analysis Agent", "version": "1.0", "minMemoryMbytes": 128, "maxMemoryMbytes": 1024 }
{ "views": { "overview": { "title": "Company Report", "transformation": { "fields": ["domain", "generated_report"] } } } }
{ "views": { "raw_data": { "title": "Raw Data", "transformation": { "fields": [ "domain", "recent_news", "linkedin_data", "pitchbook_data", "crunchbase_data", "funding_analysis" ] } } } }
{ "minMemoryMbytes": 256, // For basic scraping "maxMemoryMbytes": 2048 // For large companies }
# Retry configuration MAX_RETRIES = 3 RETRY_DELAY = 1000 # milliseconds # Timeout settings REQUEST_TIMEOUT = 30000 # milliseconds PAGE_LOAD_TIMEOUT = 60000 # milliseconds
# Proxy configuration PROXY_CONFIGURATION = { 'useApifyProxy': True, 'groups': ['RESIDENTIAL'], 'countryCode': 'US' }
# Rate limiting configuration REQUESTS_PER_MINUTE = 30 CONCURRENT_REQUESTS = 5
Was this page helpful?