Visual Workflows
AI-Enhanced

Make.com Integration

Build sophisticated visual workflows that combine SearchHive's web intelligence with Make.com's powerful automation platform and AI capabilities.

Visual Workflow Builder

Drag-and-drop interface for complex automation logic

AI-Powered Workflows

Integrate OpenAI, Claude, and other AI services seamlessly

Advanced Logic

Conditional paths, loops, and complex data transformations

What you'll build
Create intelligent workflows that search the web, analyze content with AI, process data through multiple stages, and deliver insights to your team automatically.

Setup Instructions

1Create SearchHive HTTP Modules

Set up HTTP modules for each SearchHive API endpoint you want to use in your workflows.

Required HTTP Module Configuration:

SwiftSearch HTTP Module Setup

JSON
{
  "url": "https://www.searchhive.dev/api/v1/swiftsearch",
  "method": "POST",
  "headers": {
    "Authorization": "Bearer " + "{{connection.api_key}}",
    "Content-Type": "application/json"
  },
  "body": {
    "query": "{{1.search_query}}",
    "max_results": "{{1.max_results}}",
    "auto_scrape": true,
    "extract_contacts": true
  }
}
Authentication

Store your SearchHive API key in Make.com's connection settings for secure reuse across scenarios.

Dynamic Parameters

Use Make.com variables ({{variable}}) to make your modules dynamic and reusable.

2Configure API Authentication

Create a secure connection for your SearchHive API key in Make.com.

Connection Setup Steps:

  1. Go to Make.com → Connections → Create new connection
  2. Choose "Custom" connection type
  3. Add your SearchHive API key as a secure parameter
  4. Test the connection with a simple API call
  5. Save and reuse across all SearchHive modules
3Build Your First Scenario

Create a simple workflow to test your SearchHive integration.

Lead Generation Scenario Example

JSON
{
  "name": "Lead Generation Workflow",
  "description": "Search for companies and extract contact information",
  "modules": [
    {
      "id": 1,
      "module": "builtin:BasicTrigger",
      "version": 1,
      "parameters": {
        "interval": 60,
        "query": "construction companies Seattle"
      }
    },
    {
      "id": 2,
      "module": "http:ActionSendData",
      "version": 3,
      "parameters": {
        "url": "https://www.searchhive.dev/api/v1/swiftsearch",
        "method": "POST",
        "headers": [
          {
            "name": "Authorization": "Bearer",
            "value": "{{connection.api_key}}"
          }
        ],
        "qs": [],
        "bodyType": "application/json",
        "body": "{{json(parameters)}}"
      }
    },
    {
      "id": 3,
      "module": "json:ParseJSON",
      "version": 1
    },
    {
      "id": 4,
      "module": "array:Iterator",
      "version": 1
    },
    {
      "id": 5,
      "module": "google-sheets:addRow",
      "version": 2,
      "parameters": {
        "spreadsheetId": "1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms",
        "values": [
          "{{4.title}}",
          "{{4.link}}",
          "{{4.contact_info.email}}",
          "{{4.contact_info.phone}}",
          "{{formatDate(now; 'YYYY-MM-DD')}}"
        ]
      }
    }
  ]
}

Pro Tip: Start with a manual trigger to test your workflow, then switch to scheduled or webhook triggers for automation.

SearchHive API Modules

SwiftSearch Module

Real-time web search with advanced options.

Enhanced search results
Auto-scraping integration
Contact extraction
Social profile discovery
1 credit per search
ScrapeForge Module

Extract content from any webpage or PDF.

Text and metadata extraction
Image and link discovery
JavaScript rendering
Structured data output
1 credit per page
DeepDive Module

AI-powered research and analysis workflows.

Multi-source research
Trend analysis
Content summarization
Sentiment analysis
5 credits per research

Advanced Workflow Templates

AI-Powered Research Assistant
Advanced

Automated market research with AI analysis and reporting

Key Features:

  • Multi-source research compilation
  • AI-powered trend analysis
  • Automated report generation
  • Smart insights extraction

Required Modules:

SearchHive DeepDive
OpenAI GPT-4
Google Docs
Slack
Real-time Competitive Monitoring
Intermediate

Track competitors with visual workflow automation

Key Features:

  • Scheduled competitor searches
  • Price monitoring and alerts
  • Visual data processing
  • Automated notifications

Required Modules:

SearchHive SwiftSearch
ScrapeForge
Airtable
Email
Lead Generation Pipeline
Beginner

End-to-end lead discovery and qualification workflow

Key Features:

  • Company discovery automation
  • Contact information extraction
  • Lead scoring and filtering
  • CRM integration

Required Modules:

SearchHive APIs
Data Processing
CRM Integration
Team Notifications

AI-Enhanced Workflow Example

Combine SearchHive with Make.com's AI modules for intelligent content processing and analysis.

Intelligent Content Monitoring with AI

JSON
// AI-Enhanced Workflow with Make.com AI modules
{
  "name": "Intelligent Content Monitoring",
  "modules": [
    {
      "id": 1,
      "module": "http:SearchHive:SwiftSearch",
      "parameters": {
        "query": "{{trigger.brand_name}} news",
        "max_results": 10
      }
    },
    {
      "id": 2,
      "module": "openai:createCompletion",
      "version": 1,
      "parameters": {
        "prompt": "Analyze sentiment of this content: {{1.snippet}}",
        "model": "gpt-4",
        "max_tokens": 100
      }
    },
    {
      "id": 3,
      "module": "filter:BasicFilter",
      "version": 1,
      "filter": {
        "conditions": [
          [
            {
              "a": "{{2.choices[].text}}",
              "o": "text:contains",
              "b": "negative"
            }
          ]
        ]
      }
    },
    {
      "id": 4,
      "module": "slack:createMessage",
      "version": 2,
      "parameters": {
        "text": "🚨 Negative mention detected: {{1.title}}\nSentiment: {{2.choices[].text}}\nURL: {{1.link}}",
        "channel": "#pr-alerts"
      }
    }
  ]
}
AI Integration Tips
Make.com supports OpenAI, Anthropic Claude, Google AI, and other AI services. Use these with SearchHive data for sentiment analysis, content summarization, trend detection, and automated decision making.

Error Handling & Best Practices

Robust Error Handling

Implement comprehensive error handling for reliable automation workflows.

Error Handling Configuration

JSON
{
  "modules": [
    {
      "id": "searchhive-request",
      "module": "http:ActionSendData",
      "version": 3,
      "errorHandlers": [
        {
          "error": "*",
          "directives": [
            {
              "type": "retry",
              "count": 3,
              "interval": 5
            },
            {
              "type": "break"
            }
          ]
        }
      ]
    },
    {
      "id": "error-notification",
      "module": "slack:createMessage",
      "version": 2,
      "parameters": {
        "text": "SearchHive API error: {{searchhive-request.error.message}}",
        "channel": "#alerts"
      }
    }
  ]
}
Performance Optimization
Use Make.com's execution limit settings to control costs
Implement filters to process only relevant data
Cache frequently accessed data to reduce API calls
Use parallel processing for independent operations
Monitor SearchHive credit usage in your dashboard
Workflow Organization
Use clear naming conventions for modules and scenarios
Document complex workflows with notes and descriptions
Create reusable templates for common SearchHive patterns
Use folders to organize related scenarios
Start Building

Ready to create intelligent workflows? Get your SearchHive API key and start building with Make.com.

More Integrations

Explore other automation platforms and integration options.