Skip to main content

http_request

Make HTTP requests to external APIs.
  • Category: integration
  • Estimated Duration: 5s
  • Capabilities: supportsRerun, supportsCancel
  • Services: None (uses native fetch)

Input

string (URL)
required
URL to request.
enum
default:"GET"
'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'
Record<string, string>
Request headers.
unknown
Request body (JSON-serialized for POST/PUT/PATCH).
number
default:"30000"
Timeout in ms (1000-60000).

Output


reddit_monitor

Search Reddit for posts matching keywords. Uses public Reddit search.json API, no authentication required.
  • Category: integration
  • Estimated Duration: 20s
  • Capabilities: supportsRerun
  • Services: Optional notifications

Input

string[]
required
Keywords to search for.
enum
default:"day"
'hour' | 'day' | 'week' | 'month' | 'year' | 'all'
enum
default:"new"
'relevance' | 'hot' | 'top' | 'new' | 'comments'
number
default:"50"
Max results (capped at 100).

Output


twitter_monitor

Search Twitter/X for posts matching keywords.
  • Category: integration
  • Estimated Duration: 15s
  • Capabilities: supportsRerun
  • Services: Required: twitter. Optional notifications

Input

string[]
required
Keywords to search.
boolean
default:"true"
Exclude retweets.
number
Minimum likes filter.
number
default:"50"
Max results.
string
Language filter (e.g. 'en').
number
Search tweets from last N days.

Output


linkedin_monitor

Search LinkedIn for posts via ForumScout API.
  • Category: integration
  • Estimated Duration: 60s
  • Capabilities: supportsRerun
  • Services: Required: forumScout. Optional notifications

Input

string[]
required
Keywords to search.
string
Time filter.
number
default:"50"
Max results.

Output


search_contacts

Search for contacts using Apollo.io with email enrichment.
  • Category: integration
  • Estimated Duration: 5s
  • Capabilities: supportsEnrichment, supportsBulkActions, supportsRerun
  • Services: Required: apollo

Input

string[]
Job titles to search.
string[]
Person locations.
string[]
Organization locations.
string[]
Employee count ranges (e.g. "1-10").
string
Search keywords.
number
default:"10"
Max contacts (capped at 100).
boolean
Include similar titles.
string[]
e.g. "vp", "director"
string[]
Technologies used.
string[]
Industry tags.
string[]
e.g. "engineering", "sales"

Output


draft_emails

Generate personalized email drafts for contacts using Claude.
  • Category: action
  • Estimated Duration: 30s
  • Capabilities: supportsRerun, supportsBulkActions
  • Services: Required: anthropic, emailDrafts
campaignId must be set in the execution context, and variables.senderName must exist.

Input

Contact[]
required
Array of contacts with id, name, email, title, and company.
string
required
Product/service description.
string
Optional email template.
string
Optional subject line.
object
{ required: boolean, message?: string }

Output