What is TaskAGI?
TaskAGI is a powerful automation platform that lets you build AI agents and workflows by connecting various integrations. Think of it as a visual programming tool where you connect blocks (nodes) to create automated processes.
Welcome to TaskAGI! This guide will help you understand the platform and create your first automation.
TaskAGI is a powerful automation platform that lets you build AI agents and workflows by connecting various integrations. Think of it as a visual programming tool where you connect blocks (nodes) to create automated processes.
Workflows consist of nodes connected together. Each node performs a specific action - like sending an email, processing data with AI, or fetching information from an API. Data flows from one node to the next through connections.
Every workflow starts with a trigger. Triggers can be webhooks (HTTP requests), schedules (cron jobs), forms, or manual execution.
Action nodes perform operations like calling APIs, transforming data, sending messages, or interacting with AI models.
Logic nodes like IF conditions and loops let you control the flow of your workflow based on data.
Follow these steps to create your first automation:
You can reference data from previous nodes using the syntax [[nodes.nodeId.propertyName]]. This allows you to pass data between nodes dynamically.
Examples:
[[nodes.webhook.body.email]] - Access email from webhook body
[[nodes.openai.response]] - Access AI response
[[nodes.googlesheets.rows]] - Access spreadsheet rows
Some integrations (especially AI models) consume credits when executed. Your credit balance is shown in your dashboard. Different operations have different credit costs based on their complexity and resource usage.
TaskAGI connects to hundreds of services. Each integration provides nodes you can use in your workflows.
Generate high-quality images using Google's Gemini 2.5 Flash Image model - fast, efficient AI image generation with various aspect ratios and formats
Notes:
Generate high-quality images using Google Gemini 2.5 Flash Image model
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Describe the image you want to generate | |
| aspect_ratio | select | 1:1 | The aspect ratio of the generated image |
| num_outputs | number | 1 | Number of images to generate (1-4) |
| output_format | select | webp | The file format for the generated image |
| output_quality | number | 90 | JPEG/WebP compression quality (1-100, higher = better quality) |
| Name | Type | Description |
|---|---|---|
| images | array | Array of generated images with URLs and metadata |
| image_data | binary | Binary data of the first generated image |
| image_url | string | Public URL of the first generated image |
Transform images using style references with Google Nano-Banana - provide multiple reference images and a text prompt to generate stylized outputs
Notes:
Transform images using multiple reference images and style prompts with Google Nano-Banana
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Describe the desired style or transformation (e.g., "Make the sheets in the style of the logo") | |
| image_inputs | textarea | Optional: Multiple image URLs separated by commas or new lines. These images provide style references. | |
| num_outputs | number | 1 | Number of stylized images to generate (1-4) |
| output_format | select | jpg | The file format for the generated image |
| output_quality | number | 90 | JPEG/WebP compression quality (1-100, higher = better quality) |
| aspect_ratio | select | match_input_image | Output image aspect ratio |
| Name | Type | Description |
|---|---|---|
| images | array | Array of stylized images with URLs and metadata |
| image_data | binary | Binary data of the first generated image |
| image_url | string | Public URL of the first generated image |
Online payment solutions for global commerce
Notes:
Create a new order in 2Checkout
| Field | Type | Default | Description |
|---|---|---|---|
| country | text | 2-letter country code (e.g., US, GB) | |
| currency | text | 3-letter currency code (e.g., USD, EUR) | |
| language | text | en | 2-letter language code (e.g., en, fr) |
| customer_name | text | Customer full name | |
| customer_email | text | Customer email address | |
| product_name | text | Product or service name | |
| product_price | number | Product price in the specified currency | |
| quantity | number | 1 | Product quantity |
| Name | Type | Description |
|---|---|---|
| reference | string | Unique order reference ID |
| buy_link_url | string | URL for customer to complete payment |
| status | string | |
| order_data | object |
Retrieve order details
| Field | Type | Default | Description |
|---|---|---|---|
| reference | text | The order reference ID to retrieve |
| Name | Type | Description |
|---|---|---|
| reference | string | |
| status | string | |
| total_amount | number | |
| currency | string | |
| created_date | string | |
| order_data | object |
Process a refund for an order
| Field | Type | Default | Description |
|---|---|---|---|
| reference | text | The order reference ID to refund | |
| amount | number | Amount to refund | |
| comment | text | Reason for refund |
| Name | Type | Description |
|---|---|---|
| refund_reference | string | |
| amount | number | |
| status | string | |
| refund_data | object |
Retrieve list of products from your catalog
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 10 | Number of products to retrieve (max 200) |
| page | number | 1 | Page number for pagination |
| Name | Type | Description |
|---|---|---|
| products | array | Array of product objects |
| total_count | number | Total number of products |
Create a recurring subscription
| Field | Type | Default | Description |
|---|---|---|---|
| country | text | 2-letter country code | |
| currency | text | 3-letter currency code | |
| customer_name | text | Customer full name | |
| customer_email | text | Customer email address | |
| product_code | text | Subscription product code |
| Name | Type | Description |
|---|---|---|
| subscription_reference | string | |
| status | string | |
| next_billing_date | string | |
| subscription_data | object |
Appointment booking and management platform
Notes:
Retrieve appointments from Acuity Scheduling
| Field | Type | Default | Description |
|---|---|---|---|
| appointment_type | text | Filter by specific appointment type (optional) | |
| calendar_id | text | Filter by specific calendar (optional) | |
| min_date | text | Minimum date (YYYY-MM-DD format) | |
| max_date | text | Maximum date (YYYY-MM-DD format) | |
| limit | number | 25 | Maximum number of appointments to retrieve |
| Name | Type | Description |
|---|---|---|
| appointments | array | Array of appointment objects |
| total_count | number | Total number of appointments found |
Retrieve a specific appointment by ID
| Field | Type | Default | Description |
|---|---|---|---|
| appointment_id | text | ID of the appointment to retrieve |
| Name | Type | Description |
|---|---|---|
| appointment_id | string | The appointment ID |
| datetime | string | Appointment date and time |
| end_time | string | Appointment end time |
| client_name | string | Name of the client |
| client_email | string | Email of the client |
| client_phone | string | Phone number of the client |
| appointment_type | string | Type of appointment |
| price | string | Appointment price |
| paid | string | Payment status |
| notes | string | Appointment notes |
Schedule a new appointment
| Field | Type | Default | Description |
|---|---|---|---|
| appointment_type_id | text | ID of the appointment type | |
| datetime | text | Appointment date and time (ISO 8601 format) | |
| first_name | text | Client first name | |
| last_name | text | Client last name | |
| text | Client email address | ||
| phone | text | Client phone number | |
| notes | textarea | Appointment notes | |
| calendar_id | text | Specific calendar to book on (optional) |
| Name | Type | Description |
|---|---|---|
| appointment_id | string | ID of the created appointment |
| datetime | string | Scheduled date and time |
| confirmation_page | string | URL to confirmation page |
| client_name | string | Full name of the client |
Cancel an existing appointment
| Field | Type | Default | Description |
|---|---|---|---|
| appointment_id | text | ID of the appointment to cancel | |
| admin_cancel | checkbox | Cancel as admin (bypasses cancellation policy) |
| Name | Type | Description |
|---|---|---|
| cancelled | boolean | Whether the appointment was successfully cancelled |
| appointment_id | string | ID of the cancelled appointment |
Retrieve client list
| Field | Type | Default | Description |
|---|---|---|---|
| search | text | Search clients by name or email | |
| limit | number | 25 | Maximum number of clients to retrieve |
| Name | Type | Description |
|---|---|---|
| clients | array | Array of client objects |
| total_count | number | Total number of clients found |
Retrieve available appointment types
| Field | Type | Default | Description |
|---|---|---|---|
| category_id | text | Filter by category ID (optional) |
| Name | Type | Description |
|---|---|---|
| appointment_types | array | Array of appointment type objects |
| total_count | number | Total number of appointment types |
Check available time slots
| Field | Type | Default | Description |
|---|---|---|---|
| appointment_type_id | text | ID of the appointment type | |
| date | text | Date to check availability (YYYY-MM-DD) | |
| calendar_id | text | Specific calendar to check (optional) |
| Name | Type | Description |
|---|---|---|
| available_times | array | Array of available time slots |
| date | string | Date checked |
| total_slots | number | Number of available time slots |
Digital marketing analytics and customer journey analysis with comprehensive reporting capabilities
Notes:
Get real-time analytics data for the current moment
| Field | Type | Default | Description |
|---|---|---|---|
| metric | select | instances | |
| dimension | select |
| Name | Type | Description |
|---|---|---|
| data | array | |
| total | number | |
| timestamp | string |
Get website traffic analytics for a date range
| Field | Type | Default | Description |
|---|---|---|---|
| startDate | text | Start date for the report | |
| endDate | text | End date for the report | |
| metrics | textarea | ["visits", "pageviews", "uniquevisitors"] | Array of metrics to include |
| Name | Type | Description |
|---|---|---|
| data | array | |
| summary | object | |
| dateRange | object |
Get conversion and goal completion analytics
| Field | Type | Default | Description |
|---|---|---|---|
| startDate | text | ||
| endDate | text | ||
| conversionMetrics | textarea | ["orders", "revenue", "conversion_rate"] | Conversion metrics to track |
| Name | Type | Description |
|---|---|---|
| conversions | array | |
| revenue | number | |
| conversionRate | number |
Get detailed audience demographics and behavior analytics
| Field | Type | Default | Description |
|---|---|---|---|
| startDate | text | ||
| endDate | text | ||
| dimensions | textarea | ["country", "browser", "device_type"] | Audience dimensions to analyze |
| Name | Type | Description |
|---|---|---|
| audienceData | array | |
| demographics | object | |
| deviceBreakdown | array |
Get page-level performance and engagement analytics
| Field | Type | Default | Description |
|---|---|---|---|
| startDate | text | ||
| endDate | text | ||
| pageFilter | text | Filter to specific pages (optional) |
| Name | Type | Description |
|---|---|---|
| pageData | array | |
| topPages | array | |
| bounceRate | number |
Analyze customer journey and path through your website
| Field | Type | Default | Description |
|---|---|---|---|
| startDate | text | ||
| endDate | text | ||
| touchpoints | textarea | ["entry_page", "key_pages", "exit_page"] | Customer journey touchpoints to analyze |
| Name | Type | Description |
|---|---|---|
| journeyPaths | array | |
| dropoffPoints | array | |
| conversionPaths | array |
Analyze predefined or custom audience segments
| Field | Type | Default | Description |
|---|---|---|---|
| segmentId | text | Adobe Analytics segment identifier | |
| startDate | text | ||
| endDate | text |
| Name | Type | Description |
|---|---|---|
| segmentData | array | |
| segmentSize | number | |
| comparison | object |
Generate custom analytics report with specified metrics and dimensions
| Field | Type | Default | Description |
|---|---|---|---|
| startDate | text | ||
| endDate | text | ||
| customMetrics | textarea | Array of metrics to include in the report | |
| customDimensions | textarea | Array of dimensions to break down the data | |
| filters | textarea | Filters to apply to the report data |
| Name | Type | Description |
|---|---|---|
| reportData | array | |
| metrics | object | |
| dimensions | array |
Retargeting and prospecting advertising platform. Create audience segments, run cross-device campaigns, track conversions with attribution windows, and optimize for ROAS across multiple channels.
Notes:
Retrieve retargeting and prospecting campaigns from AdRoll
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | Filter campaigns by status | |
| campaignType | select | Filter campaigns by type |
| Name | Type | Description |
|---|---|---|
| campaigns | array | List of AdRoll campaigns |
| totalCount | number | Total number of campaigns |
Retrieve ads from AdRoll campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | Filter by specific campaign ID | |
| status | select | Filter ads by status |
| Name | Type | Description |
|---|---|---|
| ads | array | List of ads |
| totalCount | number |
Retrieve audience segments for retargeting
| Field | Type | Default | Description |
|---|---|---|---|
| segmentType | select | Filter segments by type |
| Name | Type | Description |
|---|---|---|
| segments | array | List of audience segments |
| totalCount | number |
Get advertising performance reports and analytics
| Field | Type | Default | Description |
|---|---|---|---|
| reportType | select | Type of report to generate | |
| startDate | text | Start date (YYYY-MM-DD format) | |
| endDate | text | End date (YYYY-MM-DD format) | |
| metrics | textarea | ["impressions", "clicks", "ctr", "cost", "cpm", "cpc", "conversions", "conversion_rate", "roas"] | Metrics to include (JSON array) |
| Name | Type | Description |
|---|---|---|
| reportData | array | Performance metrics and analytics data |
| totalSpend | number | Total advertising spend for the period |
| totalImpressions | number | |
| totalClicks | number | |
| totalConversions | number | |
| averageRoas | number | Average return on advertising spend |
Create a new retargeting or prospecting campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignName | text | Name for the new campaign | |
| campaignType | select | Type of campaign to create | |
| objective | select | Campaign objective | |
| budget | number | Daily budget in USD | |
| bidStrategy | select | Bidding strategy |
| Name | Type | Description |
|---|---|---|
| campaignId | string | ID of the created campaign |
| campaignName | string | |
| status | string |
Create a new ad within a campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | ID of the campaign to create ad in | |
| adName | text | Name for the new ad | |
| adType | select | Type of ad creative | |
| headline | text | Headline for the ad | |
| body | textarea | Body text for the ad | |
| callToAction | select | Call to action button text | |
| destinationUrl | text | URL where users will be directed when clicking | |
| imageUrl | text | URL of the image for the ad |
| Name | Type | Description |
|---|---|---|
| adId | string | ID of the created ad |
| adName | string | |
| status | string |
Create a new audience segment for retargeting
| Field | Type | Default | Description |
|---|---|---|---|
| segmentName | text | Name for the new segment | |
| segmentType | select | Type of audience segment | |
| rules | textarea | Targeting rules for the segment (JSON format) | |
| lookbackDays | number | 30 | Number of days to look back for visitor data |
| Name | Type | Description |
|---|---|---|
| segmentId | string | ID of the created segment |
| segmentName | string | |
| estimatedSize | number | Estimated audience size |
Update an existing campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | ID of the campaign to update | |
| updates | textarea | Campaign fields to update (JSON format) |
| Name | Type | Description |
|---|---|---|
| campaignId | string | |
| success | boolean |
Get conversion tracking data and attribution
| Field | Type | Default | Description |
|---|---|---|---|
| conversionType | select | Filter by conversion type | |
| attributionWindow | select | Attribution window for conversions | |
| startDate | text | Start date (YYYY-MM-DD format) | |
| endDate | text | End date (YYYY-MM-DD format) |
| Name | Type | Description |
|---|---|---|
| conversions | array | List of conversion events |
| totalConversions | number | |
| totalValue | number | |
| conversionRate | number |
Payment technology platform for omnichannel commerce
Notes:
Process a payment with Adyen
| Field | Type | Default | Description |
|---|---|---|---|
| amount_value | number | Amount in minor units (e.g., 1000 for $10.00) | |
| currency_code | text | USD | 3-letter currency code (e.g., USD, EUR) |
| reference | text | Your unique payment reference | |
| return_url | text | URL to redirect after payment | |
| shopper_email | text | Customer email address | |
| country_code | text | US | 2-letter country code |
| Name | Type | Description |
|---|---|---|
| psp_reference | string | Adyen's unique payment reference |
| result_code | string | Payment result code |
| redirect_url | string | URL for payment completion (if applicable) |
| payment_data | object |
Capture an authorized payment
| Field | Type | Default | Description |
|---|---|---|---|
| psp_reference | text | Original payment PSP reference | |
| modification_amount | number | Amount to capture in minor units | |
| currency_code | text | 3-letter currency code | |
| reference | text | Your unique capture reference |
| Name | Type | Description |
|---|---|---|
| psp_reference | string | |
| status | string | |
| response | string | |
| capture_data | object |
Process a payment refund
| Field | Type | Default | Description |
|---|---|---|---|
| psp_reference | text | PSP reference of payment to refund | |
| modification_amount | number | Amount to refund in minor units | |
| currency_code | text | 3-letter currency code | |
| reference | text | Your unique refund reference |
| Name | Type | Description |
|---|---|---|
| psp_reference | string | |
| status | string | |
| response | string | |
| refund_data | object |
Cancel an authorized payment
| Field | Type | Default | Description |
|---|---|---|---|
| psp_reference | text | PSP reference of payment to cancel | |
| reference | text | Your unique cancellation reference |
| Name | Type | Description |
|---|---|---|
| psp_reference | string | |
| status | string | |
| response | string | |
| cancel_data | object |
Retrieve available payment methods
| Field | Type | Default | Description |
|---|---|---|---|
| amount_value | number | Transaction amount in minor units | |
| currency_code | text | USD | 3-letter currency code |
| country_code | text | US | 2-letter country code |
| Name | Type | Description |
|---|---|---|
| payment_methods | array | Available payment methods |
| groups | array |
Extract hotel data, prices, reviews, and availability from Agoda with location-based search and real-time booking information
Notes:
Extract detailed hotel and property information from Agoda URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Agoda property/hotel URLs to scrape |
| Name | Type | Description |
|---|---|---|
| properties | array | Detailed hotel information with prices, reviews, and amenities |
| count | number | Number of properties scraped |
Find hotels and properties by country code
| Field | Type | Default | Description |
|---|---|---|---|
| countries | textarea | Country codes to discover properties (e.g., US, CA, TH, JP) |
| Name | Type | Description |
|---|---|---|
| properties | array | Properties found in the specified countries |
| count | number | Number of properties discovered |
Extract properties from Agoda search result URLs
| Field | Type | Default | Description |
|---|---|---|---|
| searchUrls | textarea | Agoda search result URLs with filters applied |
| Name | Type | Description |
|---|---|---|
| properties | array | Properties from search results |
| count | number | Number of properties found |
Search for hotels by location and dates with guest details
| Field | Type | Default | Description |
|---|---|---|---|
| location | text | City or location to search (e.g., "New York", "Tokyo", "Bangkok") | |
| checkIn | text | Check-in date in YYYY-MM-DD format | |
| checkOut | text | Check-out date in YYYY-MM-DD format | |
| adults | number | 2 | Number of adult guests |
| children | number | 0 | Number of child guests |
| rooms | number | 1 | Number of rooms needed |
| currency | text | Currency code for prices (e.g., USD, EUR, THB) |
| Name | Type | Description |
|---|---|---|
| listings | array | Hotels matching search criteria with availability and pricing |
| count | number | Number of listings found |
Social media management and monitoring platform with advanced analytics and competitive intelligence
Notes:
Get list of connected social media profiles
| Name | Type | Description |
|---|---|---|
| profiles | array | |
| count | number | |
| success | boolean |
Publish or schedule a social media post
| Field | Type | Default | Description |
|---|---|---|---|
| profileIds | textarea | Social profile IDs separated by commas | |
| content | textarea | Content of the social media post | |
| scheduledAt | text | Schedule post for later (ISO 8601 format). Leave empty for immediate posting. | |
| mediaUrls | textarea | Image/video URLs separated by commas | |
| linkUrl | text | URL to include in the post | |
| tags | text | Post tags separated by commas |
| Name | Type | Description |
|---|---|---|
| postId | string | |
| post | object | |
| status | string | |
| publishedAt | string | |
| success | boolean |
Get published and scheduled posts
| Field | Type | Default | Description |
|---|---|---|---|
| profileId | text | Filter by specific social profile ID | |
| status | select | Filter by post status | |
| startDate | text | Start date in YYYY-MM-DD format | |
| endDate | text | End date in YYYY-MM-DD format | |
| limit | number | 50 | Maximum number of posts to return |
| Name | Type | Description |
|---|---|---|
| posts | array | |
| count | number | |
| success | boolean |
Get details of a specific post
| Field | Type | Default | Description |
|---|---|---|---|
| postId | text | The ID of the post to retrieve |
| Name | Type | Description |
|---|---|---|
| post | object | |
| content | string | |
| status | string | |
| profileName | string | |
| publishedAt | string | |
| success | boolean |
Delete a scheduled or draft post
| Field | Type | Default | Description |
|---|---|---|---|
| postId | text | The ID of the post to delete |
| Name | Type | Description |
|---|---|---|
| deleted | boolean | |
| postId | string | |
| success | boolean |
Get messages from social media inboxes for monitoring
| Field | Type | Default | Description |
|---|---|---|---|
| profileId | text | Filter by specific social profile ID | |
| status | select | Filter by message status | |
| messageType | select | Filter by message type | |
| limit | number | 50 | Maximum number of messages to return |
| Name | Type | Description |
|---|---|---|
| messages | array | |
| count | number | |
| unreadCount | number | |
| success | boolean |
Reply to a social media message or comment
| Field | Type | Default | Description |
|---|---|---|---|
| messageId | text | The ID of the message to reply to | |
| content | textarea | Content of the reply message | |
| isPrivate | select | false | Whether to reply publicly or privately |
| Name | Type | Description |
|---|---|---|
| replyId | string | |
| reply | object | |
| success | boolean |
Get analytics data for social media performance
| Field | Type | Default | Description |
|---|---|---|---|
| profileIds | textarea | Social profile IDs separated by commas | |
| startDate | text | Start date in YYYY-MM-DD format | |
| endDate | text | End date in YYYY-MM-DD format | |
| metrics | select | engagement | Type of metrics to retrieve |
| Name | Type | Description |
|---|---|---|
| analytics | object | |
| totalEngagement | number | |
| totalReach | number | |
| totalImpressions | number | |
| totalClicks | number | |
| success | boolean |
Get posts in the publishing queue
| Field | Type | Default | Description |
|---|---|---|---|
| profileId | text | Filter by specific social profile ID | |
| limit | number | 50 | Maximum number of queued posts to return |
| Name | Type | Description |
|---|---|---|
| queuedPosts | array | |
| count | number | |
| success | boolean |
Get competitive analysis and monitoring data
| Field | Type | Default | Description |
|---|---|---|---|
| competitorUrl | text | Social media profile URL of competitor to analyze | |
| platform | select | Social media platform to analyze | |
| analysisType | select | overview | Type of analysis to perform |
| Name | Type | Description |
|---|---|---|
| analysis | object | |
| followerCount | number | |
| avgEngagement | number | |
| postFrequency | number | |
| topPerformingPost | object | |
| success | boolean |
SEO analysis and backlink tracking with comprehensive domain metrics, keyword research, and competitive intelligence
Notes:
Get domain authority and rating metrics
| Field | Type | Default | Description |
|---|---|---|---|
| target | text | Domain or URL to analyze (e.g., example.com) | |
| mode | select | domain | Type of target to analyze |
| Name | Type | Description |
|---|---|---|
| domainRating | number | |
| urlRating | number | |
| backlinks | number | |
| referringDomains | number | |
| organicKeywords | number | |
| organicTraffic | number |
Get detailed backlink data for a target
| Field | Type | Default | Description |
|---|---|---|---|
| target | text | Domain or URL to get backlinks for | |
| mode | select | domain | |
| limit | number | 100 | Maximum number of backlinks to return |
| order | select | ahrefs_rank |
| Name | Type | Description |
|---|---|---|
| backlinks | array | |
| totalBacklinks | number | |
| averageDR | number | |
| doFollowPercentage | number |
Get domains linking to your target
| Field | Type | Default | Description |
|---|---|---|---|
| target | text | Domain or URL to analyze | |
| mode | select | domain | |
| limit | number | 100 | Maximum number of referring domains |
| Name | Type | Description |
|---|---|---|
| referringDomains | array | |
| totalReferringDomains | number | |
| averageDomainRating | number |
Get organic search keywords for a target
| Field | Type | Default | Description |
|---|---|---|---|
| target | text | Domain or URL to analyze | |
| country | select | us | Country for keyword analysis |
| limit | number | 100 | Maximum number of keywords to return |
| volume | number | 0 | Filter keywords by minimum search volume |
| Name | Type | Description |
|---|---|---|
| keywords | array | |
| totalKeywords | number | |
| totalTraffic | number | |
| averagePosition | number |
Get top performing pages by organic traffic
| Field | Type | Default | Description |
|---|---|---|---|
| target | text | Domain to analyze (e.g., example.com) | |
| country | select | us | |
| limit | number | 50 | Maximum number of pages to return |
| Name | Type | Description |
|---|---|---|
| pages | array | |
| totalPages | number | |
| totalTraffic | number |
Analyze keyword difficulty and SERP overview
| Field | Type | Default | Description |
|---|---|---|---|
| keyword | text | Keyword to analyze for difficulty | |
| country | select | us |
| Name | Type | Description |
|---|---|---|
| keyword | string | |
| difficulty | number | |
| volume | number | |
| cpc | number | |
| globalVolume | number | |
| serp | array |
Find keywords competitors rank for but you don't
| Field | Type | Default | Description |
|---|---|---|---|
| target | text | Your domain to compare | |
| competitors | textarea | Competitor domains, one per line | |
| country | select | us | |
| limit | number | 100 | Maximum keywords to analyze |
| Name | Type | Description |
|---|---|---|
| gapKeywords | array | |
| totalOpportunities | number | |
| potentialTraffic | number |
Find broken backlinks pointing to your domain
| Field | Type | Default | Description |
|---|---|---|---|
| target | text | Domain to check for broken backlinks | |
| limit | number | 100 | Maximum number of broken links to return |
| Name | Type | Description |
|---|---|---|
| brokenLinks | array | |
| totalBrokenLinks | number | |
| recoverableLinks | number |
Extract property listings, host profiles, reviews, and availability from Airbnb with location-based search and guest configuration
Notes:
Extract detailed property information from Airbnb listing URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Airbnb property URLs to scrape | |
| country | text | Optional country code for localized data |
| Name | Type | Description |
|---|---|---|
| properties | array | Detailed property listings with host info, reviews, and amenities |
| count | number | Number of properties scraped |
Find properties by location with dates and guest configuration
| Field | Type | Default | Description |
|---|---|---|---|
| location | text | Search location (e.g., "Paris, France", "Tokyo, Japan") | |
| checkIn | text | Check-in date in YYYY-MM-DD format | |
| checkOut | text | Check-out date in YYYY-MM-DD format | |
| numOfAdults | number | 2 | Number of adult guests |
| numOfChildren | number | 0 | Number of children (ages 2-12) |
| numOfInfants | number | 0 | Number of infants (under 2) |
| numOfPets | number | 0 | Number of pets |
| country | text | Optional country code for localized results |
| Name | Type | Description |
|---|---|---|
| properties | array | Properties found in the specified location |
| count | number | Number of properties discovered |
Extract properties from Airbnb search result URLs
| Field | Type | Default | Description |
|---|---|---|---|
| searchUrls | textarea | Airbnb search result URLs with filters applied |
| Name | Type | Description |
|---|---|---|
| properties | array | Properties from search results |
| count | number | Number of properties found |
Flexible database and CRM platform for organizing data, managing campaigns, and building custom workflows
Notes:
Retrieve all accessible Airtable bases
| Name | Type | Description |
|---|---|---|
| bases | array | Array of accessible bases |
| total | number |
Get all tables within a specific base
| Field | Type | Default | Description |
|---|---|---|---|
| baseId | text | The ID of the Airtable base |
| Name | Type | Description |
|---|---|---|
| tables | array | Array of tables in the base |
| total | number |
Retrieve records from an Airtable table
| Field | Type | Default | Description |
|---|---|---|---|
| baseId | text | The ID of the Airtable base | |
| tableIdOrName | text | The ID or name of the table | |
| filterByFormula | text | Airtable formula to filter records (e.g., {Status} = "Active") | |
| view | text | Name of the view to use for filtering | |
| sort | textarea | JSON array for sorting (e.g., [{"field":"Name","direction":"asc"}]) | |
| fields | text | Comma-separated field names (leave empty for all fields) | |
| maxRecords | number | 100 | Maximum number of records to return (max 100 per request) |
| Name | Type | Description |
|---|---|---|
| records | array | |
| total | number |
Get a specific record by ID
| Field | Type | Default | Description |
|---|---|---|---|
| baseId | text | The ID of the Airtable base | |
| tableIdOrName | text | The ID or name of the table | |
| recordId | text | The ID of the record to retrieve |
| Name | Type | Description |
|---|---|---|
| record | object | |
| id | string | |
| fields | object |
Create a new record in an Airtable table
| Field | Type | Default | Description |
|---|---|---|---|
| baseId | text | The ID of the Airtable base | |
| tableIdOrName | text | The ID or name of the table | |
| fields | textarea | {"Name": "Example Record", "Status": "Active"} | JSON object with field names and values |
| Name | Type | Description |
|---|---|---|
| record | object | |
| id | string | |
| success | boolean |
Update an existing record in an Airtable table
| Field | Type | Default | Description |
|---|---|---|---|
| baseId | text | The ID of the Airtable base | |
| tableIdOrName | text | The ID or name of the table | |
| recordId | text | The ID of the record to update | |
| fields | textarea | {"Status": "Updated"} | JSON object with field names and new values |
| destructiveUpdate | select | false |
| Name | Type | Description |
|---|---|---|
| record | object | |
| id | string | |
| success | boolean |
Delete a record from an Airtable table
| Field | Type | Default | Description |
|---|---|---|---|
| baseId | text | The ID of the Airtable base | |
| tableIdOrName | text | The ID or name of the table | |
| recordId | text | The ID of the record to delete |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string | |
| deletedId | string |
Create multiple records at once
| Field | Type | Default | Description |
|---|---|---|---|
| baseId | text | The ID of the Airtable base | |
| tableIdOrName | text | The ID or name of the table | |
| records | textarea | [{"fields": {"Name": "Record 1"}}, {"fields": {"Name": "Record 2"}}] | JSON array of record objects with fields |
| Name | Type | Description |
|---|---|---|
| records | array | |
| success | boolean | |
| total | number |
Update multiple records at once
| Field | Type | Default | Description |
|---|---|---|---|
| baseId | text | The ID of the Airtable base | |
| tableIdOrName | text | The ID or name of the table | |
| records | textarea | [{"id": "recXXX", "fields": {"Status": "Updated"}}] | JSON array of record objects with id and fields |
| destructiveUpdate | select | false |
| Name | Type | Description |
|---|---|---|
| records | array | |
| success | boolean | |
| total | number |
Get table structure and field information
| Field | Type | Default | Description |
|---|---|---|---|
| baseId | text | The ID of the Airtable base | |
| tableIdOrName | text | The ID or name of the table |
| Name | Type | Description |
|---|---|---|
| schema | object | |
| fields | array | |
| views | array |
B2B marketplace and sourcing platform for wholesale purchasing and supplier management
Notes:
Search for products on Alibaba marketplace
| Field | Type | Default | Description |
|---|---|---|---|
| keywords | text | Keywords to search for products | |
| category_id | text | Alibaba category ID to filter results | |
| min_price | text | Minimum price filter (USD) | |
| max_price | text | Maximum price filter (USD) | |
| min_order_quantity | number | Minimum order quantity | |
| page_no | number | 1 | Page number for pagination |
| page_size | number | 20 | Number of results per page (max 50) |
| sort | select | default |
| Name | Type | Description |
|---|---|---|
| products | array | Array of product objects |
| total_count | number | Total number of products found |
| current_page | number | |
| page_size | number |
Get detailed information about a specific product
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | Alibaba product ID |
| Name | Type | Description |
|---|---|---|
| product | object | Complete product information |
| product_id | string | |
| subject | string | |
| price | object | |
| min_order_quantity | number | |
| supplier_info | object |
Get information about a supplier
| Field | Type | Default | Description |
|---|---|---|---|
| supplier_id | text | Alibaba supplier ID |
| Name | Type | Description |
|---|---|---|
| supplier | object | Complete supplier information |
| supplier_id | string | |
| company_name | string | |
| country | string | |
| main_products | string | |
| gold_supplier | boolean |
Search for suppliers on Alibaba
| Field | Type | Default | Description |
|---|---|---|---|
| keywords | text | Keywords to search for suppliers | |
| country | text | Filter by supplier country | |
| gold_supplier | checkbox | Show only Gold Suppliers | |
| page_no | number | 1 | Page number for pagination |
| page_size | number | 20 | Number of results per page (max 50) |
| Name | Type | Description |
|---|---|---|
| suppliers | array | Array of supplier objects |
| total_count | number | Total number of suppliers found |
Get Alibaba product categories
| Field | Type | Default | Description |
|---|---|---|---|
| parent_id | text | Parent category ID (leave empty for top-level) | |
| level | select | 1 |
| Name | Type | Description |
|---|---|---|
| categories | array | Array of category objects |
| total_count | number |
Create a Request for Quotation (requires authentication)
| Field | Type | Default | Description |
|---|---|---|---|
| subject | text | Subject/title of the RFQ | |
| description | textarea | Detailed description of requirements | |
| category_id | text | Product category ID | |
| quantity | number | Required quantity | |
| unit | text | Unit of measurement (e.g., pieces, kg, etc.) | |
| target_price | text | Target price range |
| Name | Type | Description |
|---|---|---|
| rfq_id | string | Created RFQ ID |
| status | string | |
| created_time | string |
Dropshipping and product sourcing platform for e-commerce businesses
Notes:
Search for products on AliExpress
| Field | Type | Default | Description |
|---|---|---|---|
| keywords | text | Keywords to search for products | |
| category_ids | text | Comma-separated category IDs | |
| min_price | text | Minimum price filter (USD) | |
| max_price | text | Maximum price filter (USD) | |
| platform_product_type | select | ||
| page_no | number | 1 | Page number for pagination |
| page_size | number | 20 | Number of results per page (max 50) |
| sort | select | SALE_PRICE_ASC |
| Name | Type | Description |
|---|---|---|
| products | array | Array of product objects |
| current_page_no | number | |
| current_record_count | number | |
| total_record_count | number |
Get detailed information about specific products
| Field | Type | Default | Description |
|---|---|---|---|
| product_ids | textarea | Comma-separated AliExpress product IDs | |
| fields | text | Specific fields to retrieve (comma-separated) |
| Name | Type | Description |
|---|---|---|
| products | array | Array of detailed product information |
| total_result_count | number |
Get trending/hot products from AliExpress
| Field | Type | Default | Description |
|---|---|---|---|
| category_ids | text | Comma-separated category IDs | |
| delivery_days | number | Maximum delivery days filter | |
| fields | text | Specific fields to retrieve | |
| keywords | text | Search keywords | |
| max_sale_price | text | Maximum sale price (USD) | |
| min_sale_price | text | Minimum sale price (USD) | |
| page_no | number | 1 | |
| page_size | number | 50 | Number of results per page (max 50) |
| Name | Type | Description |
|---|---|---|
| products | array | Array of trending product objects |
| current_page_no | number | |
| current_record_count | number |
Get AliExpress product categories
| Field | Type | Default | Description |
|---|---|---|---|
| app_signature | text | Application signature |
| Name | Type | Description |
|---|---|---|
| categories | array | Array of category objects |
| total_result_count | number |
Generate affiliate tracking links for products
| Field | Type | Default | Description |
|---|---|---|---|
| source_values | textarea | Comma-separated product URLs or IDs | |
| promotion_link_type | select | 0 |
| Name | Type | Description |
|---|---|---|
| promotion_links | array | Array of generated affiliate links |
| total_result_count | number |
Get affiliate order list (requires affiliate access)
| Field | Type | Default | Description |
|---|---|---|---|
| fields | text | Specific fields to retrieve | |
| start_time | text | Start time for order query (YYYY-MM-DD HH:mm:ss) | |
| end_time | text | End time for order query (YYYY-MM-DD HH:mm:ss) | |
| time_type | select | create_time | |
| page_size | number | 50 | Number of orders per page (max 50) |
| Name | Type | Description |
|---|---|---|
| orders | array | Array of affiliate order objects |
| current_record_count | number |
Manage Amazon advertising campaigns for Sponsored Products, Sponsored Brands, and Sponsored Display. Track performance, optimize keywords, and analyze search terms for marketplace advertising.
Notes:
Retrieve advertising campaigns from Amazon Advertising
| Field | Type | Default | Description |
|---|---|---|---|
| campaignType | select | Type of Amazon advertising campaign | |
| stateFilter | select | Filter campaigns by state |
| Name | Type | Description |
|---|---|---|
| campaigns | array | List of advertising campaigns |
| totalCount | number | Total number of campaigns |
Retrieve ad groups from Amazon Advertising campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| campaignType | select | Type of Amazon advertising campaign | |
| campaignId | text | Filter by specific campaign ID |
| Name | Type | Description |
|---|---|---|
| adGroups | array | List of ad groups |
| totalCount | number |
Retrieve keywords from Amazon Advertising campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| campaignType | select | Type of Amazon advertising campaign | |
| adGroupId | text | Filter by specific ad group ID | |
| matchType | select | Filter by keyword match type |
| Name | Type | Description |
|---|---|---|
| keywords | array | List of keywords |
| totalCount | number |
Get advertising performance reports and analytics
| Field | Type | Default | Description |
|---|---|---|---|
| reportType | select | Type of report to generate | |
| campaignType | select | Type of Amazon advertising campaign | |
| reportDate | text | Date for the report (YYYYMMDD format) | |
| metrics | textarea | ["impressions", "clicks", "cost", "attributedConversions1d", "attributedSales1d"] | Metrics to include (JSON array) |
| Name | Type | Description |
|---|---|---|
| reportData | array | Performance metrics and analytics data |
| totalSpend | number | Total advertising spend |
| totalImpressions | number | |
| totalClicks | number | |
| totalSales | number | Total attributed sales |
Create a new Amazon advertising campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignType | select | Type of Amazon advertising campaign | |
| campaignName | text | Name for the new campaign | |
| targetingType | select | Campaign targeting type | |
| dailyBudget | number | Daily budget for the campaign | |
| startDate | text | Campaign start date (YYYYMMDD) |
| Name | Type | Description |
|---|---|---|
| campaignId | string | ID of the created campaign |
| campaignName | string | |
| status | string |
Update an existing Amazon advertising campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignType | select | Type of Amazon advertising campaign | |
| campaignId | text | ID of the campaign to update | |
| updates | textarea | Campaign fields to update (JSON format) |
| Name | Type | Description |
|---|---|---|
| campaignId | string | |
| success | boolean |
Retrieve product ads from Amazon advertising campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| adGroupId | text | Filter by specific ad group ID | |
| stateFilter | select | Filter ads by state |
| Name | Type | Description |
|---|---|---|
| productAds | array | List of product ads |
| totalCount | number |
Get search term reports to find new keyword opportunities
| Field | Type | Default | Description |
|---|---|---|---|
| campaignType | select | Type of Amazon advertising campaign | |
| reportDate | text | Date for the search terms report (YYYYMMDD) | |
| minImpressions | number | 10 | Filter search terms with minimum impressions |
| Name | Type | Description |
|---|---|---|
| searchTerms | array | Search terms that triggered ads |
| topPerformingTerms | array | Search terms with best performance |
Amazon affiliate program management and tracking
Notes:
Search for products in Amazon catalog
| Field | Type | Default | Description |
|---|---|---|---|
| keywords | text | Search keywords or phrases | |
| search_index | select | All | Amazon product category |
| sort_by | select | Relevance | Sort results by criteria |
| min_price | number | Minimum price in cents (e.g., 1000 = $10.00) | |
| max_price | number | Maximum price in cents (e.g., 5000 = $50.00) | |
| item_count | number | 10 | Number of items to return (max 10) |
| Name | Type | Description |
|---|---|---|
| items | array | Array of product items |
| total_results | number | Approximate total number of results |
| search_terms | string | Keywords used for search |
Get detailed information for specific products
| Field | Type | Default | Description |
|---|---|---|---|
| asins | textarea | Comma-separated list of Amazon ASINs (max 10) |
| Name | Type | Description |
|---|---|---|
| items | array | Array of detailed product information |
| valid_asins | array | List of valid ASINs found |
| invalid_asins | array | List of invalid or not found ASINs |
Get Amazon category browse node information
| Field | Type | Default | Description |
|---|---|---|---|
| browse_node_ids | textarea | Comma-separated list of browse node IDs |
| Name | Type | Description |
|---|---|---|
| browse_nodes | array | Array of browse node information |
| categories | array | Category hierarchy information |
Get product variations (size, color, etc.)
| Field | Type | Default | Description |
|---|---|---|---|
| asin | text | Parent product ASIN with variations | |
| variation_count | number | 10 | Maximum number of variations to return (max 10) |
| Name | Type | Description |
|---|---|---|
| variations | array | Array of product variations |
| variation_summary | object | Summary of available variations |
| parent_asin | string | Parent product ASIN |
Create Amazon affiliate tracking links
| Field | Type | Default | Description |
|---|---|---|---|
| asin | text | Amazon product ASIN | |
| link_type | select | product | Type of affiliate link |
| custom_id | text | Custom identifier for tracking |
| Name | Type | Description |
|---|---|---|
| affiliate_link | string | Generated affiliate tracking link |
| short_link | string | Shortened Amazon link |
| tracking_info | object | Link tracking information |
Track price changes for products (simulated)
| Field | Type | Default | Description |
|---|---|---|---|
| asin | text | Amazon product ASIN | |
| days_back | number | 30 | Number of days to look back (simulated) |
| Name | Type | Description |
|---|---|---|
| current_price | object | Current product price information |
| price_trend | string | Price trend analysis |
| product_info | object | Basic product information |
Cloud storage service by Amazon for file backup and sharing
Notes:
Upload a file to Amazon Drive
| Name | Type | Required | Description |
|---|---|---|---|
| file_content | file | Yes | The file content to upload |
| Field | Type | Default | Description |
|---|---|---|---|
| folder_path | text | Path to upload folder (e.g., /Documents/MyFolder). Leave empty for root folder. | |
| file_name | text | Name for the uploaded file including extension |
| Name | Type | Description |
|---|---|---|
| file_id | string | Unique identifier of the uploaded file |
| download_url | string | URL to download the file |
| file_size | number | Size of the uploaded file in bytes |
Download a file from Amazon Drive
| Field | Type | Default | Description |
|---|---|---|---|
| file_id | text | ID of the file to download |
| Name | Type | Description |
|---|---|---|
| file_content | binary | The downloaded file content |
| file_name | string | Original name of the file |
| file_size | number | Size of the file in bytes |
List files and folders in Amazon Drive
| Field | Type | Default | Description |
|---|---|---|---|
| folder_path | text | Path to list files from. Leave empty for root folder. | |
| limit | number | 50 | Maximum number of files to return (1-200) |
| Name | Type | Description |
|---|---|---|
| files | array | List of files and folders |
| total_count | number | Total number of items found |
Delete a file from Amazon Drive
| Field | Type | Default | Description |
|---|---|---|---|
| file_id | text | ID of the file to delete |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the file was successfully deleted |
| message | string | Status message |
Create a new folder in Amazon Drive
| Field | Type | Default | Description |
|---|---|---|---|
| folder_name | text | Name of the folder to create | |
| parent_path | text | Path where to create the folder. Leave empty for root. |
| Name | Type | Description |
|---|---|---|
| folder_id | string | ID of the created folder |
| folder_path | string | Full path of the created folder |
Amazon seller automation for managing products, orders, and inventory
Notes:
Retrieve orders from Amazon marketplace
| Field | Type | Default | Description |
|---|---|---|---|
| created_after | text | ISO 8601 date (e.g., 2023-01-01T00:00:00Z) | |
| created_before | text | ISO 8601 date (e.g., 2023-12-31T23:59:59Z) | |
| order_statuses | select |
| Name | Type | Description |
|---|---|---|
| orders | array | Array of Amazon order objects |
| total | number | Total number of orders found |
Get specific order details
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | Amazon order ID |
| Name | Type | Description |
|---|---|---|
| order | object | Complete order details |
| amazon_order_id | string | |
| order_status | string | |
| order_total | object |
Get items for a specific order
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | Amazon order ID |
| Name | Type | Description |
|---|---|---|
| order_items | array | Array of items in the order |
| total_items | number | Total number of items |
Retrieve inventory levels for products
| Field | Type | Default | Description |
|---|---|---|---|
| sku_list | textarea | Comma-separated list of SKUs (leave empty for all) | |
| granularity | select | Marketplace |
| Name | Type | Description |
|---|---|---|
| inventory_summaries | array | Array of inventory summary objects |
| total | number | Total number of inventory items |
Update inventory quantity for a product
| Field | Type | Default | Description |
|---|---|---|---|
| sku | text | Product SKU to update | |
| quantity | number | New inventory quantity |
| Name | Type | Description |
|---|---|---|
| feed_id | string | ID of the inventory update feed |
| status | string | Status of the inventory update |
Retrieve product catalog information
| Field | Type | Default | Description |
|---|---|---|---|
| identifiers | textarea | Comma-separated ASINs, SKUs, or UPCs | |
| identifier_type | select | ASIN |
| Name | Type | Description |
|---|---|---|
| products | array | Array of product catalog items |
| total | number | Total number of products found |
Create a fulfillment order (FBA)
| Field | Type | Default | Description |
|---|---|---|---|
| seller_fulfillment_order_id | text | Your unique identifier for this fulfillment order | |
| displayable_order_id | text | Order ID displayed to customer | |
| shipping_speed_category | select | Standard | |
| destination_address | textarea | JSON object with address details | |
| items | textarea | JSON array of items to fulfill |
| Name | Type | Description |
|---|---|---|
| fulfillment_order | object | Created fulfillment order details |
| status | string | Status of the fulfillment order |
Product analytics and user journey optimization with advanced behavioral insights and retention analysis
Notes:
Send a custom event to Amplitude for analytics tracking
| Field | Type | Default | Description |
|---|---|---|---|
| userId | text | Unique identifier for the user | |
| eventType | text | Name of the event to track | |
| eventProperties | textarea | {} | Additional properties for the event |
| userProperties | textarea | {} | User properties to set |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| eventId | string | |
| timestamp | string |
Get activity data for a specific user over a time period
| Field | Type | Default | Description |
|---|---|---|---|
| userId | text | User to get activity for | |
| startDate | text | Start date for activity lookup | |
| endDate | text | End date for activity lookup |
| Name | Type | Description |
|---|---|---|
| events | array | |
| sessionCount | number | |
| totalEvents | number |
Get event counts segmented by user properties
| Field | Type | Default | Description |
|---|---|---|---|
| eventType | text | Event to analyze | |
| startDate | text | ||
| endDate | text | ||
| segmentBy | text | Property to segment by (optional) | |
| interval | select | day |
| Name | Type | Description |
|---|---|---|
| segmentationData | array | |
| totalEvents | number | |
| uniqueUsers | number |
Analyze conversion funnels with multiple steps
| Field | Type | Default | Description |
|---|---|---|---|
| funnelSteps | textarea | Array of events representing funnel steps | |
| startDate | text | ||
| endDate | text | ||
| conversionWindow | number | 7 | Number of days for conversion window |
| Name | Type | Description |
|---|---|---|
| funnelData | array | |
| conversionRates | array | |
| overallConversion | number |
Analyze user retention over time periods
| Field | Type | Default | Description |
|---|---|---|---|
| startEvent | text | Event that defines start of retention analysis | |
| returnEvent | text | Event that indicates user return | |
| startDate | text | ||
| endDate | text | ||
| retentionType | select | rolling |
| Name | Type | Description |
|---|---|---|
| retentionData | array | |
| retentionRates | array | |
| cohortSizes | array |
Search for users based on user properties or event criteria
| Field | Type | Default | Description |
|---|---|---|---|
| userId | text | Specific user ID to search for | |
| userProperties | textarea | Filter users by properties | |
| limit | number | 100 | Maximum number of users to return |
| Name | Type | Description |
|---|---|---|
| users | array | |
| userCount | number | |
| userProperties | array |
Analyze revenue metrics and trends
| Field | Type | Default | Description |
|---|---|---|---|
| revenueProperty | text | Event property that contains revenue value | |
| startDate | text | ||
| endDate | text | ||
| interval | select | day |
| Name | Type | Description |
|---|---|---|
| revenueData | array | |
| totalRevenue | number | |
| averageRevenue | number | |
| revenueGrowth | number |
Analyze user journey paths and common user flows
| Field | Type | Default | Description |
|---|---|---|---|
| startEvent | text | Event to start path analysis from | |
| endEvent | text | Event to end path analysis at | |
| startDate | text | ||
| endDate | text | ||
| pathLength | number | 5 | Maximum number of steps in path |
| Name | Type | Description |
|---|---|---|
| pathData | array | |
| commonPaths | array | |
| pathCounts | object |
Connect to Anthropic API to use Claude models for text generation, analysis, and more.
Notes:
Generate text using Claude models from Anthropic
| Name | Type | Required | Description |
|---|---|---|---|
| prompt | string | Yes |
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Enter your prompt text. You can drag & drop parameters from previous nodes. | |
| model | select | claude-sonnet-4-5-20250929 | Select the Claude model to use |
| temperature | float | 0.7 | Controls randomness: 0 = deterministic, 1 = creative |
| max_tokens | number | 1000 | Maximum number of tokens to generate |
| system_prompt | textarea | Optional system prompt to set the assistant's behavior | |
| json_schema | code | Define output structure. Response is GUARANTEED to match this schema. Example: {"type": "object", "properties": {"title": {"type": "string"}, "score": {"type": "number"}}, "required": ["title", "score"]} |
| Name | Type | Description |
|---|---|---|
| content | string | |
| data | object | |
| usage | object | |
| model | string | |
| stop_reason | string |
Analyze images using Claude's vision capabilities
| Name | Type | Required | Description |
|---|---|---|---|
| images | array | Yes |
| Field | Type | Default | Description |
|---|---|---|---|
| images | textarea | Image URLs or file paths (one per line), or drag & drop parameters from previous nodes that output images | |
| prompt | textarea | What would you like to know about the image(s)? You can use parameters from previous nodes. | |
| model | select | claude-sonnet-4-5-20250929 | Select the Claude vision model to use |
| temperature | float | 0.7 | Controls randomness: 0 = deterministic, 1 = creative |
| max_tokens | number | 1000 | Maximum number of tokens to generate |
| Name | Type | Description |
|---|---|---|
| analysis | string | |
| usage | object | |
| model | string | |
| images_analyzed | number |
Workflow orchestration platform for data engineering and ETL pipelines
Notes:
Retrieve a list of all DAGs in your Airflow instance
| Field | Type | Default | Description |
|---|---|---|---|
| only_active | checkbox | Only return active (non-paused) DAGs | |
| limit | number | 100 | Maximum number of DAGs to retrieve |
| Name | Type | Description |
|---|---|---|
| dags | array | List of Airflow DAGs |
| count | number | Total number of DAGs returned |
Get detailed information about a specific DAG
| Field | Type | Default | Description |
|---|---|---|---|
| dag_id | text | The unique identifier of the DAG |
| Name | Type | Description |
|---|---|---|
| dag_id | string | The unique identifier of the DAG |
| is_paused | boolean | Whether the DAG is currently paused |
| is_active | boolean | Whether the DAG is currently active |
| schedule_interval | string | The scheduling interval for the DAG |
| last_run_date | string | Date of the most recent DAG run |
Pause or unpause a specific DAG
| Field | Type | Default | Description |
|---|---|---|---|
| dag_id | text | The unique identifier of the DAG | |
| action | select |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the operation was successful |
| is_paused | boolean | The new pause state of the DAG |
| message | string | Details about the operation |
Manually trigger a DAG run with optional configuration
| Field | Type | Default | Description |
|---|---|---|---|
| dag_id | text | The unique identifier of the DAG to trigger | |
| run_id | text | Custom run ID (optional, auto-generated if empty) | |
| conf | textarea | {} | Configuration parameters to pass to the DAG as JSON |
| Name | Type | Description |
|---|---|---|
| dag_run_id | string | Unique identifier for the triggered DAG run |
| execution_date | string | The execution date of the DAG run |
| success | boolean | Whether the trigger was successful |
| state | string | Initial state of the DAG run |
Retrieve execution history for a specific DAG
| Field | Type | Default | Description |
|---|---|---|---|
| dag_id | text | The unique identifier of the DAG | |
| limit | number | 25 | Maximum number of DAG runs to retrieve |
| state_filter | select |
| Name | Type | Description |
|---|---|---|
| dag_runs | array | List of DAG execution records |
| count | number | Number of DAG runs returned |
Retrieve task instances for a specific DAG run
| Field | Type | Default | Description |
|---|---|---|---|
| dag_id | text | The unique identifier of the DAG | |
| dag_run_id | text | The unique identifier of the DAG run |
| Name | Type | Description |
|---|---|---|
| task_instances | array | List of task instances in the DAG run |
| count | number | Number of task instances returned |
Retrieve a list of Airflow connections
| Field | Type | Default | Description |
|---|---|---|---|
| connection_type | text | Filter by connection type (optional) |
| Name | Type | Description |
|---|---|---|
| connections | array | List of Airflow connections |
| count | number | Number of connections returned |
Retrieve a list of Airflow variables
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 100 | Maximum number of variables to retrieve |
| Name | Type | Description |
|---|---|---|
| variables | array | List of Airflow variables |
| count | number | Number of variables returned |
Convert HTML to professional PDF documents using Headless Chrome. Generate proposals, invoices, reports, and certificates with full CSS support.
Notes:
Convert HTML content to a professional PDF document using Headless Chrome. Perfect for proposals, invoices, reports, and certificates.
| Field | Type | Default | Description |
|---|---|---|---|
| html | code | The HTML content to convert to PDF. Supports full HTML, CSS, and inline styles. | |
| fileName | text | Output file name without extension (e.g., "proposal"). If empty, a default name will be used. | |
| landscape | checkbox | Use landscape page orientation instead of portrait | |
| pageSize | select | Letter | Paper size for the PDF |
| marginTop | number | 0.4 | Top margin in inches (e.g., 0.5) |
| marginBottom | number | 0.4 | Bottom margin in inches |
| marginLeft | number | 0.4 | Left margin in inches |
| marginRight | number | 0.4 | Right margin in inches |
| printBackground | checkbox | 1 | Include background colors and images in the PDF |
| delay | number | Wait time in milliseconds before generating PDF. Useful for pages with JavaScript animations or lazy-loaded content. |
| Name | Type | Description |
|---|---|---|
| pdf_url | string | Temporary URL of the generated PDF (valid for 24 hours) |
| pdf_data | binary | Binary PDF content for uploading to other services |
| response_id | string | Unique identifier for the generated PDF |
| cost | number | API call cost |
| success | boolean |
Convert any public webpage to a PDF document. Captures the page exactly as it appears in a browser.
| Field | Type | Default | Description |
|---|---|---|---|
| url | text | The full URL of the webpage to convert to PDF (must be publicly accessible) | |
| fileName | text | Output file name without extension | |
| landscape | checkbox | Use landscape page orientation | |
| pageSize | select | Letter | |
| marginTop | number | 0.4 | |
| marginBottom | number | 0.4 | |
| marginLeft | number | 0.4 | |
| marginRight | number | 0.4 | |
| printBackground | checkbox | 1 | Include background colors and images |
| delay | number | Wait time for JavaScript to execute before capture |
| Name | Type | Description |
|---|---|---|
| pdf_url | string | Temporary URL of the generated PDF |
| pdf_data | binary | Binary PDF content |
| response_id | string | |
| cost | number | |
| success | boolean |
Combine multiple PDF documents into a single PDF file.
| Field | Type | Default | Description |
|---|---|---|---|
| pdfUrls | textarea | Enter PDF URLs to merge, one per line, or as a JSON array | |
| fileName | text | Output file name without extension |
| Name | Type | Description |
|---|---|---|
| pdf_url | string | Temporary URL of the merged PDF |
| pdf_data | binary | Binary PDF content |
| response_id | string | |
| cost | number | |
| success | boolean |
B2B lead generation and sales intelligence platform with contact database, email sequences, and prospecting automation
Notes:
Search Apollo database for B2B contacts and leads
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | General search query (name, company, title, etc.) | |
| job_titles | textarea | [] | Array of job titles to search for (e.g., ["CEO", "CTO", "Marketing Manager"]) |
| company_names | textarea | [] | Array of company names to search within |
| industries | textarea | [] | Array of industries to filter by |
| locations | textarea | [] | Array of locations (cities, states, countries) |
| company_size | select | Filter by company size | |
| limit | number | 25 | Maximum number of contacts to return (default: 25, max: 200) |
| Name | Type | Description |
|---|---|---|
| contacts | array | Array of found contacts with details |
| total_results | number | Total number of contacts matching the search |
| search_query | string | The search query that was executed |
Get detailed information about a specific contact
| Field | Type | Default | Description |
|---|---|---|---|
| text | Email address to enrich (either email or contact_id required) | ||
| contact_id | text | Apollo contact ID to enrich (either email or contact_id required) | |
| reveal_email | checkbox | Spend credits to reveal email address if hidden |
| Name | Type | Description |
|---|---|---|
| contact | object | Enriched contact information |
| company | object | Company information for the contact |
| email_revealed | boolean | Whether email was successfully revealed |
Search Apollo database for companies and organizations
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Company name or domain to search for | |
| industries | textarea | [] | Array of industries to filter by |
| locations | textarea | [] | Array of locations (cities, states, countries) |
| employee_count_min | number | Minimum number of employees | |
| employee_count_max | number | Maximum number of employees | |
| revenue_min | number | Minimum annual revenue in USD | |
| revenue_max | number | Maximum annual revenue in USD | |
| limit | number | 25 | Maximum number of companies to return (default: 25, max: 200) |
| Name | Type | Description |
|---|---|---|
| companies | array | Array of found companies with details |
| total_results | number | Total number of companies matching the search |
Get detailed information about a specific company
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | Company domain to enrich (either domain or company_id required) | |
| company_id | text | Apollo company ID to enrich (either domain or company_id required) |
| Name | Type | Description |
|---|---|---|
| company | object | Enriched company information |
| technology_stack | array | Technologies used by the company |
| funding_info | object | Company funding rounds and investors |
Create a new email outreach sequence in Apollo
| Field | Type | Default | Description |
|---|---|---|---|
| sequence_name | text | Name for the email sequence | |
| email_steps | textarea | [{"subject": "Introduction", "body": "Hi {{first_name}}, ...", "wait_days": 0}, {"subject": "Follow up", "body": "Hi {{first_name}}, following up...", "wait_days": 3}] | Array of email steps with subject, body, and wait days |
| from_email | text | Sender email address (must be verified in Apollo) |
| Name | Type | Description |
|---|---|---|
| sequence_id | string | ID of the created sequence |
| sequence_name | string | Name of the created sequence |
| steps_count | number | Number of steps in the sequence |
Add contacts to an existing email sequence
| Field | Type | Default | Description |
|---|---|---|---|
| sequence_id | text | ID of the sequence to add contacts to | |
| contact_ids | textarea | [] | Array of Apollo contact IDs to add to sequence |
| emails | textarea | [] | Array of email addresses to add to sequence |
| Name | Type | Description |
|---|---|---|
| added_count | number | Number of contacts successfully added to sequence |
| failed_count | number | Number of contacts that failed to be added |
| sequence_id | string | ID of the sequence contacts were added to |
Retrieve all email sequences and their performance
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | Filter sequences by status |
| Name | Type | Description |
|---|---|---|
| sequences | array | List of email sequences with performance data |
| total_count | number | Total number of sequences |
Retrieve contacts currently in a specific sequence
| Field | Type | Default | Description |
|---|---|---|---|
| sequence_id | text | ID of the sequence to get contacts from | |
| status | select | Filter contacts by their sequence status |
| Name | Type | Description |
|---|---|---|
| contacts | array | Contacts in the sequence with their status |
| sequence_id | string | ID of the sequence |
| performance_stats | object | Sequence performance statistics |
Retrieve email activity and engagement data
| Field | Type | Default | Description |
|---|---|---|---|
| date_range | select | Time period for email activity | |
| sequence_id | text | Filter activity by specific sequence (optional) |
| Name | Type | Description |
|---|---|---|
| activities | array | List of email activities (opens, clicks, replies, etc.) |
| summary_stats | object | Aggregated email performance metrics |
| date_range | string | Date range of the activity data |
Extract iOS app data and user reviews from Apple App Store with developer analytics and ASO insights
Notes:
Extract detailed information about iOS apps from Apple App Store
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Apple App Store app URLs (e.g., https://apps.apple.com/us/app/app-name/id123456789) |
| Name | Type | Description |
|---|---|---|
| apps | array | Comprehensive app information including ratings, downloads, developer details |
| count | number | Number of apps scraped |
Extract user reviews and ratings for iOS apps from Apple App Store
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Apple App Store app URLs to extract reviews from |
| Name | Type | Description |
|---|---|---|
| reviews | array | User reviews with ratings, text, dates, and user information |
| count | number | Number of reviews scraped |
Team collaboration and project management platform for organizing work and tracking progress
Notes:
Create a new task in Asana
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | The name of the task to create | |
| notes | textarea | Detailed description of the task | |
| project_gid | text | The ID of the project to add the task to | |
| assignee | text | Email of the person to assign the task to | |
| due_date | text | Due date in YYYY-MM-DD format |
| Name | Type | Description |
|---|---|---|
| task_gid | string | The unique ID of the created task |
| task_url | string | The URL to view the task in Asana |
| task_name | string | The name of the created task |
Update an existing task in Asana
| Field | Type | Default | Description |
|---|---|---|---|
| task_gid | text | The ID of the task to update | |
| name | text | New name for the task | |
| notes | textarea | Updated description of the task | |
| completed | select | Mark task as completed or incomplete |
| Name | Type | Description |
|---|---|---|
| task_gid | string | The unique ID of the updated task |
| success | boolean | Whether the update was successful |
Retrieve details of a specific task
| Field | Type | Default | Description |
|---|---|---|---|
| task_gid | text | The ID of the task to retrieve |
| Name | Type | Description |
|---|---|---|
| task_gid | string | |
| name | string | |
| notes | string | |
| completed | boolean | |
| due_date | string | |
| assignee | object | |
| project | object |
List tasks from a project or workspace
| Field | Type | Default | Description |
|---|---|---|---|
| project_gid | text | ID of project to list tasks from (leave empty for all tasks) | |
| assignee | text | Filter tasks by assignee email | |
| completed_since | text | Only return tasks completed after this date (YYYY-MM-DD) | |
| limit | number | 50 | Maximum number of tasks to return (max 100) |
| Name | Type | Description |
|---|---|---|
| tasks | array | Array of task objects |
| count | number | Number of tasks returned |
Create a new project in Asana
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | The name of the project to create | |
| notes | textarea | Description of the project | |
| team_gid | text | The ID of the team to create the project in | |
| public | select | true | Whether the project should be public to the team |
| Name | Type | Description |
|---|---|---|
| project_gid | string | The unique ID of the created project |
| project_url | string | The URL to view the project in Asana |
| project_name | string | The name of the created project |
Influencer marketing platform and campaign management with creator discovery and performance tracking
Notes:
Search for influencers based on criteria
| Field | Type | Default | Description |
|---|---|---|---|
| keywords | text | Keywords to search for in influencer profiles | |
| platform | select | Social media platform to search on | |
| minFollowers | number | Minimum follower count | |
| maxFollowers | number | Maximum follower count | |
| location | text | Geographic location or region | |
| limit | number | 50 | Maximum number of influencers to return |
| Name | Type | Description |
|---|---|---|
| influencers | array | Array of influencer profiles matching the search criteria |
| count | number | Number of influencers found |
Create a new influencer marketing campaign
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the campaign | |
| description | textarea | Detailed description of the campaign | |
| budget | number | Campaign budget in dollars | |
| startDate | text | Campaign start date (YYYY-MM-DD format) | |
| endDate | text | Campaign end date (YYYY-MM-DD format) |
| Name | Type | Description |
|---|---|---|
| campaignId | string | The created campaign ID |
| success | boolean | Whether the campaign was created successfully |
Invite an influencer to join a campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | The ID of the campaign to invite the influencer to | |
| influencerId | text | The ID of the influencer to invite | |
| message | textarea | Custom message to include with the invitation |
| Name | Type | Description |
|---|---|---|
| invitationId | string | The created invitation ID |
| success | boolean | Whether the invitation was sent successfully |
Retrieve all campaigns for the brand
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | Filter campaigns by status | |
| limit | number | 50 | Maximum number of campaigns to return |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of campaign data |
| count | number | Number of campaigns returned |
Get performance metrics for a campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | The ID of the campaign to get performance for |
| Name | Type | Description |
|---|---|---|
| performance | object | Campaign performance data including impressions, engagement, and ROI |
| success | boolean | Whether the performance data was retrieved successfully |
Get detailed profile information for an influencer
| Field | Type | Default | Description |
|---|---|---|---|
| influencerId | text | The ID of the influencer to get profile for |
| Name | Type | Description |
|---|---|---|
| profile | object | Detailed influencer profile including demographics and metrics |
| found | boolean | Whether the influencer profile was found |
Speech-to-text transcription for audio and video files with speaker diarization and AI summaries
Notes:
Transcribe audio or video from a URL. Supports MP3, MP4, WAV, M4A, WEBM, and more.
| Field | Type | Default | Description |
|---|---|---|---|
| audio_url | text | URL to the audio or video file to transcribe (must be publicly accessible) | |
| language_code | select | en | Language of the audio (auto-detect if not specified) |
| speaker_labels | checkbox | Identify different speakers in the audio | |
| punctuate | checkbox | 1 | Automatically add punctuation to the transcript |
| format_text | checkbox | 1 | Apply text formatting (capitalize sentences, etc.) |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the transcription completed successfully |
| transcript_id | string | Unique identifier for the transcript |
| text | string | The full transcribed text |
| words | array | Word-level transcription with timestamps and confidence |
| utterances | array | Speaker-segmented utterances (if speaker_labels enabled) |
| confidence | number | Overall confidence score (0-1) |
| audio_duration | number | Duration of the audio in seconds |
| language_code | string | The detected or specified language code |
Transcribe audio/video and generate an AI summary of the content
| Field | Type | Default | Description |
|---|---|---|---|
| audio_url | text | URL to the audio or video file to transcribe | |
| language_code | select | en | Language of the audio |
| summary_model | select | informative | Style of summary to generate |
| summary_type | select | bullets | Format of the summary |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the transcription completed successfully |
| transcript_id | string | Unique identifier for the transcript |
| text | string | The full transcribed text |
| summary | string | AI-generated summary of the content |
| confidence | number | Overall confidence score (0-1) |
| audio_duration | number | Duration of the audio in seconds |
Check the status of a transcript or retrieve completed transcript
| Field | Type | Default | Description |
|---|---|---|---|
| transcript_id | text | The transcript ID returned from a transcription request |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the request succeeded |
| status | string | Transcript status: queued, processing, completed, or error |
| text | string | The transcribed text (if completed) |
| error | string | Error message if transcription failed |
Payment gateway service for secure online transactions
Notes:
Process a credit card payment
| Field | Type | Default | Description |
|---|---|---|---|
| amount | number | Transaction amount in dollars (e.g., 10.99) | |
| card_number | text | Credit card number | |
| expiry_month | text | 2-digit month (01-12) | |
| expiry_year | text | 4-digit year (e.g., 2025) | |
| cvv | text | Card verification value | |
| description | text | Transaction description |
| Name | Type | Description |
|---|---|---|
| transaction_id | string | The transaction's unique ID |
| response_code | string | Transaction response code (1=Approved, 2=Declined, 3=Error) |
| auth_code | string | Authorization code from processor |
| amount | number | Transaction amount |
| transaction_data | object | Complete transaction response |
Cancel/void an authorized transaction
| Field | Type | Default | Description |
|---|---|---|---|
| transaction_id | text | The transaction ID to void |
| Name | Type | Description |
|---|---|---|
| transaction_id | string | |
| response_code | string | |
| message | string | |
| transaction_data | object |
Refund a settled transaction
| Field | Type | Default | Description |
|---|---|---|---|
| transaction_id | text | The original transaction ID to refund | |
| amount | number | Amount to refund in dollars | |
| last_four | text | Last 4 digits of the original card |
| Name | Type | Description |
|---|---|---|
| transaction_id | string | |
| response_code | string | |
| amount | number | |
| message | string | |
| transaction_data | object |
Retrieve details of a specific transaction
| Field | Type | Default | Description |
|---|---|---|---|
| transaction_id | text | The transaction ID to retrieve |
| Name | Type | Description |
|---|---|---|
| transaction_id | string | |
| status | string | |
| amount | number | |
| submit_time | string | |
| transaction_data | object |
Create a customer profile for recurring billing
| Field | Type | Default | Description |
|---|---|---|---|
| merchant_customer_id | text | Your unique customer identifier | |
| text | Customer email address | ||
| description | text | Customer description |
| Name | Type | Description |
|---|---|---|
| customer_profile_id | string | |
| response_code | string | |
| message | string | |
| profile_data | object |
Visual marketing automation platform with drag-and-drop journey builder
Notes:
Add or update a contact in Autopilot
| Field | Type | Default | Description |
|---|---|---|---|
| text | Contact email address | ||
| firstName | text | Contact first name | |
| lastName | text | Contact last name | |
| company | text | Contact company name | |
| phone | text | Contact phone number | |
| customFields | textarea | {} | Additional contact fields as JSON object |
| Name | Type | Description |
|---|---|---|
| contactId | string | The Autopilot contact ID |
| status | string | Created or Updated |
Add a contact to an Autopilot journey
| Field | Type | Default | Description |
|---|---|---|---|
| triggerId | text | The ID of the journey trigger | |
| contactId | text | The Autopilot contact ID |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the contact was added to the journey |
| message | string | Success or error message |
Add a contact to an Autopilot list
| Field | Type | Default | Description |
|---|---|---|---|
| listId | text | The ID of the list | |
| contactId | text | The Autopilot contact ID |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the contact was added to the list |
| message | string | Success or error message |
Retrieve contact information by email or ID
| Field | Type | Default | Description |
|---|---|---|---|
| lookupField | select | Field to use for contact lookup | |
| lookupValue | text | The email address or contact ID to search for |
| Name | Type | Description |
|---|---|---|
| contact | object | Complete contact information from Autopilot |
| found | boolean | Whether the contact was found |
Retrieve all Autopilot journeys
| Name | Type | Description |
|---|---|---|
| journeys | array | Array of Autopilot journeys |
| count | number | Number of journeys returned |
Retrieve all Autopilot lists
| Name | Type | Description |
|---|---|---|
| lists | array | Array of Autopilot lists |
| count | number | Number of lists returned |
Unsubscribe a contact from all marketing
| Field | Type | Default | Description |
|---|---|---|---|
| contactId | text | The Autopilot contact ID to unsubscribe |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the contact was unsubscribed |
| message | string | Success or error message |
Social listening and influencer identification platform with comprehensive brand monitoring
Notes:
Search for brand mentions and discussions
| Field | Type | Default | Description |
|---|---|---|---|
| query | text |
| Name | Type | Description |
|---|---|---|
| mentions | array |
Discover influencers talking about topics
| Field | Type | Default | Description |
|---|---|---|---|
| topic | text |
| Name | Type | Description |
|---|---|---|
| influencers | array |
Amazon S3 cloud storage service for uploading, downloading, and managing files in buckets
Development collaboration tools with CI/CD, repos, and project management
Notes:
Retrieve a list of projects in your Azure DevOps organization
| Name | Type | Description |
|---|---|---|
| projects | array | List of Azure DevOps projects |
| count | number | Number of projects returned |
Get detailed information about a specific project
| Field | Type | Default | Description |
|---|---|---|---|
| project_id | text | The ID or name of the project |
| Name | Type | Description |
|---|---|---|
| project_name | string | Name of the project |
| description | string | Project description |
| state | string | Current state of the project |
| visibility | string | Project visibility (public/private) |
Retrieve Git repositories in a project
| Field | Type | Default | Description |
|---|---|---|---|
| project_id | text | The ID or name of the project |
| Name | Type | Description |
|---|---|---|
| repositories | array | List of Git repositories |
| count | number | Number of repositories returned |
Retrieve recent builds for a project
| Field | Type | Default | Description |
|---|---|---|---|
| project_id | text | The ID or name of the project | |
| definition_id | text | Filter by specific build definition (optional) | |
| status_filter | select | ||
| result_filter | select |
| Name | Type | Description |
|---|---|---|
| builds | array | List of recent builds |
| count | number | Number of builds returned |
Get detailed information about a specific build
| Field | Type | Default | Description |
|---|---|---|---|
| project_id | text | The ID or name of the project | |
| build_id | text | Unique identifier of the build |
| Name | Type | Description |
|---|---|---|
| build_number | string | Build number |
| status | string | Current status of the build |
| result | string | Build result |
| start_time | string | When the build started |
| finish_time | string | When the build finished |
| source_branch | string | Branch that was built |
Queue a new build for a build definition
| Field | Type | Default | Description |
|---|---|---|---|
| project_id | text | The ID or name of the project | |
| definition_id | text | ID of the build definition to queue | |
| source_branch | text | Branch to build (optional, uses default if empty) | |
| parameters | textarea | {} | Parameters to pass to the build as JSON |
| Name | Type | Description |
|---|---|---|
| build_id | string | Unique identifier of the queued build |
| build_number | string | Build number |
| status | string | Initial status of the build |
| success | boolean | Whether the build was queued successfully |
Cancel a running or queued build
| Field | Type | Default | Description |
|---|---|---|---|
| project_id | text | The ID or name of the project | |
| build_id | text | Unique identifier of the build to cancel |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the cancellation was successful |
| message | string | Details about the operation |
Retrieve work items from a project using a query
| Field | Type | Default | Description |
|---|---|---|---|
| project_id | text | The ID or name of the project | |
| wiql_query | textarea | SELECT [System.Id], [System.Title], [System.State] FROM WorkItems WHERE [System.TeamProject] = @project | Work Item Query Language (WIQL) query |
| Name | Type | Description |
|---|---|---|
| work_items | array | List of work items |
| count | number | Number of work items returned |
Create a new work item in a project
| Field | Type | Default | Description |
|---|---|---|---|
| project_id | text | The ID or name of the project | |
| work_item_type | select | ||
| title | text | Title of the work item | |
| description | textarea | Description of the work item | |
| assigned_to | text | Email or display name of the assignee |
| Name | Type | Description |
|---|---|---|
| work_item_id | number | Unique identifier of the created work item |
| title | string | Title of the work item |
| state | string | Initial state of the work item |
| success | boolean | Whether the work item was created successfully |
Build automation and deployment tool by Atlassian for CI/CD pipelines
Notes:
Retrieve a list of projects in Bamboo
| Name | Type | Description |
|---|---|---|
| projects | array | List of Bamboo projects |
| count | number | Number of projects returned |
Get detailed information about a specific project
| Field | Type | Default | Description |
|---|---|---|---|
| project_key | text | The unique key of the project |
| Name | Type | Description |
|---|---|---|
| project_name | string | Name of the project |
| description | string | Project description |
| key | string | Unique key of the project |
Retrieve build plans for a project or all projects
| Field | Type | Default | Description |
|---|---|---|---|
| project_key | text | Filter by project key (optional) |
| Name | Type | Description |
|---|---|---|
| plans | array | List of build plans |
| count | number | Number of plans returned |
Get detailed information about a specific build plan
| Field | Type | Default | Description |
|---|---|---|---|
| plan_key | text | The unique key of the build plan |
| Name | Type | Description |
|---|---|---|
| plan_name | string | Name of the build plan |
| description | string | Plan description |
| enabled | boolean | Whether the plan is enabled |
| project_key | string | Key of the parent project |
Retrieve recent build results with optional filtering
| Field | Type | Default | Description |
|---|---|---|---|
| plan_key | text | Filter by specific plan key (optional) | |
| build_state | select | ||
| life_cycle_state | select | ||
| max_results | number | 25 | Maximum number of results to retrieve |
| Name | Type | Description |
|---|---|---|
| results | array | List of build results |
| count | number | Number of results returned |
Get detailed information about a specific build result
| Field | Type | Default | Description |
|---|---|---|---|
| result_key | text | The unique key of the build result (format: PLAN-JOB-BUILD) |
| Name | Type | Description |
|---|---|---|
| build_number | number | Build number |
| build_state | string | State of the build (Successful, Failed, Unknown) |
| life_cycle_state | string | Lifecycle state of the build |
| build_started_time | string | When the build started |
| build_completed_time | string | When the build completed |
| build_duration_description | string | Build duration description |
Trigger execution of a build plan
| Field | Type | Default | Description |
|---|---|---|---|
| plan_key | text | The unique key of the build plan to execute | |
| stage | text | Specific stage to execute (optional) | |
| execute_all_stages | checkbox | 1 | Execute all stages in the plan |
| variables | textarea | {} | Build variables as JSON key-value pairs |
| Name | Type | Description |
|---|---|---|
| build_result_key | string | Key of the triggered build result |
| build_number | number | Build number |
| life_cycle_state | string | Initial lifecycle state of the build |
| success | boolean | Whether the plan was executed successfully |
Stop a currently running build plan
| Field | Type | Default | Description |
|---|---|---|---|
| plan_result_key | text | The key of the running build to stop |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the build was stopped successfully |
| message | string | Details about the operation |
Retrieve builds currently in the build queue
| Name | Type | Description |
|---|---|---|
| queued_builds | array | List of builds in the queue |
| count | number | Number of builds in queue |
Retrieve a list of build agents
| Name | Type | Description |
|---|---|---|
| agents | array | List of build agents |
| count | number | Number of agents returned |
Retrieve Bamboo server information
| Name | Type | Description |
|---|---|---|
| version | string | Bamboo server version |
| build_number | string | Server build number |
| state | string | Current state of the server |
Communications platform providing voice, messaging, and 911 access APIs
Notes:
Send SMS messages via Bandwidth
| Field | Type | Default | Description |
|---|---|---|---|
| from | text | Your Bandwidth phone number (e.g., +1234567890) | |
| to | textarea | Recipient phone numbers separated by commas (e.g., +1234567890, +0987654321) | |
| text | textarea | SMS message content | |
| media | textarea | Media file URLs separated by commas (for MMS) | |
| tag | text | Custom tag for message tracking |
| Name | Type | Description |
|---|---|---|
| message_id | string | Unique identifier for the message |
| time | string | Message timestamp |
| recipients_count | number | Number of recipients |
| success | boolean | Whether the SMS was sent successfully |
Initiate a voice call via Bandwidth
| Field | Type | Default | Description |
|---|---|---|---|
| from | text | Your Bandwidth phone number | |
| to | text | Recipient phone number | |
| answer_url | text | URL to fetch BXML when call is answered | |
| answer_method | select | POST | HTTP method for answer URL |
| disconnect_url | text | URL to notify when call ends | |
| call_timeout | number | 30 | Call timeout in seconds (default: 30) |
| Name | Type | Description |
|---|---|---|
| call_id | string | Unique identifier for the call |
| call_url | string | API URL for managing the call |
| state | string | Current state of the call |
| success | boolean | Whether the call was initiated successfully |
Retrieve message history from Bandwidth
| Field | Type | Default | Description |
|---|---|---|---|
| from | text | Filter by sender phone number | |
| to | text | Filter by recipient phone number | |
| from_date_time | text | Start date (ISO 8601 format) | |
| to_date_time | text | End date (ISO 8601 format) | |
| size | number | 25 | Number of messages to retrieve (max 1000) |
| Name | Type | Description |
|---|---|---|
| messages | array | List of messages |
| total_count | number | Total number of messages |
| success | boolean | Whether messages were retrieved successfully |
Retrieve call history from Bandwidth
| Field | Type | Default | Description |
|---|---|---|---|
| from | text | Filter by caller phone number | |
| to | text | Filter by recipient phone number | |
| from_date_time | text | Start date (ISO 8601 format) | |
| to_date_time | text | End date (ISO 8601 format) | |
| size | number | 25 | Number of calls to retrieve (max 1000) |
| Name | Type | Description |
|---|---|---|
| calls | array | List of calls |
| total_count | number | Total number of calls |
| success | boolean | Whether calls were retrieved successfully |
Retrieve your Bandwidth phone numbers
| Name | Type | Description |
|---|---|---|
| phone_numbers | array | List of phone numbers |
| count | number | Number of phone numbers |
| success | boolean | Whether phone numbers were retrieved successfully |
Get Bandwidth account information and balance
| Name | Type | Description |
|---|---|---|
| account | object | Account information |
| company_name | string | Account company name |
| account_type | string | Type of Bandwidth account |
| success | boolean | Whether account info was retrieved successfully |
Project management and team collaboration software for organizing work
Notes:
Create a new todo item in Basecamp
| Field | Type | Default | Description |
|---|---|---|---|
| todolist_id | text | The ID of the todo list | |
| content | text | The content of the todo item |
| Name | Type | Description |
|---|---|---|
| todo_id | string | The unique ID of the created todo |
| content | string | The content of the todo item |
Enterprise digital advertising automation platform with cross-channel campaign management, AI-powered optimization, and advanced attribution analysis
Notes:
Retrieve all campaigns with automation settings
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | Filter campaigns by status | |
| automation_type | select | Filter by automation type |
| Name | Type | Description |
|---|---|---|
| campaigns | array | List of campaigns with automation details |
| total_count | number | Total number of campaigns |
Retrieve line items with budget automation and bidding strategies
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | ID of the campaign to get line items from | |
| bidding_strategy | select | Filter by bidding strategy |
| Name | Type | Description |
|---|---|---|
| line_items | array | List of line items with automation settings |
| campaign_id | string | ID of the parent campaign |
Retrieve active automation rules and triggers
| Field | Type | Default | Description |
|---|---|---|---|
| rule_type | select | Filter by automation rule type | |
| entity_type | select | Filter by entity type the rules apply to |
| Name | Type | Description |
|---|---|---|
| automation_rules | array | List of automation rules with triggers and actions |
| active_count | number | Number of currently active automation rules |
Generate cross-channel performance reports with automation insights
| Field | Type | Default | Description |
|---|---|---|---|
| report_type | select | Type of performance report to generate | |
| date_range | select | Time period for the report | |
| entity_ids | textarea | [] | Array of campaign/line item IDs to include (e.g., ["123", "456"]) |
| include_automation_data | checkbox | 1 | Include automation rule performance and impact data |
| Name | Type | Description |
|---|---|---|
| report_data | array | Performance metrics and automation insights |
| summary | object | Aggregated performance summary |
| automation_impact | object | Impact of automation rules on performance |
Create a new automated advertising campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_name | text | Name for the new campaign | |
| campaign_type | select | Type of advertising campaign | |
| budget_amount | number | Total campaign budget in dollars | |
| start_date | text | Campaign start date (YYYY-MM-DD) | |
| end_date | text | Campaign end date (YYYY-MM-DD, optional) | |
| automation_settings | textarea | {"auto_optimize": true, "budget_pacing": "even"} | Automation rules and triggers as JSON object |
| Name | Type | Description |
|---|---|---|
| campaign_id | string | ID of the created campaign |
| campaign_name | string | Name of the created campaign |
| automation_enabled | boolean | Whether automation is active for this campaign |
Create or update automation rules for campaigns and line items
| Field | Type | Default | Description |
|---|---|---|---|
| entity_id | text | ID of campaign or line item to apply rules to | |
| entity_type | select | Type of entity to apply automation to | |
| automation_rules | textarea | {"budget_pacing": {"enabled": true, "strategy": "even"}, "bid_optimization": {"enabled": true, "target_cpa": 50}} | Automation rules configuration as JSON |
| Name | Type | Description |
|---|---|---|
| rules_applied | array | List of automation rules that were applied |
| entity_id | string | ID of the entity the rules were applied to |
| automation_status | string | Current automation status |
Retrieve available audience segments and lookalike audiences
| Field | Type | Default | Description |
|---|---|---|---|
| segment_type | select | Filter by audience segment type | |
| data_source | select | Filter by data source provider |
| Name | Type | Description |
|---|---|---|
| audience_segments | array | Available targeting segments with reach estimates |
| total_reach | number | Estimated total reach across all segments |
Analyze performance across different advertising channels
| Field | Type | Default | Description |
|---|---|---|---|
| channels | textarea | ["display", "social", "search", "video"] | Array of channels to analyze (e.g., ["display", "social", "search"]) |
| date_range | select | Time period for analysis | |
| attribution_model | select | Attribution model for cross-channel analysis |
| Name | Type | Description |
|---|---|---|
| channel_performance | array | Performance metrics for each channel |
| attribution_analysis | object | Cross-channel attribution insights |
| optimization_recommendations | array | AI-powered optimization suggestions |
Get AI-powered budget allocation recommendations across channels
| Field | Type | Default | Description |
|---|---|---|---|
| total_budget | number | Total budget amount to allocate | |
| campaign_objective | select | Primary campaign objective | |
| target_audience | textarea | {"age_range": "25-54", "interests": [], "behaviors": []} | Target audience characteristics for optimization |
| Name | Type | Description |
|---|---|---|
| budget_allocation | object | Recommended budget distribution across channels |
| expected_performance | object | Projected performance metrics for the allocation |
| optimization_score | number | AI confidence score for the recommendations |
Extract news articles, videos, and content from BBC with keyword discovery and topic monitoring
Notes:
Extract news articles and content from BBC URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | BBC article URLs to scrape (news, sport, etc.) | |
| keyword | text | Optional keyword to filter or enhance results |
| Name | Type | Description |
|---|---|---|
| articles | array | News articles with content, metadata, and publication info |
| count | number | Number of articles scraped |
Find BBC articles using keyword search
| Field | Type | Default | Description |
|---|---|---|---|
| keywords | textarea | Keywords to search for BBC articles (e.g., "elections", "technology", "sports") |
| Name | Type | Description |
|---|---|---|
| articles | array | Articles matching the search keywords |
| count | number | Number of articles found |
Email marketing with responsive templates
Notes:
Add a new contact to a Benchmark Email list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | The ID of the list to add the contact to | |
| text | Contact email address | ||
| first_name | text | Contact first name | |
| last_name | text | Contact last name | |
| phone | text | Contact phone number |
| Name | Type | Description |
|---|---|---|
| contact_id | string | ID of the created contact |
| success | boolean |
Update an existing contact in a Benchmark Email list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | The ID of the list containing the contact | |
| contact_id | text | The ID of the contact to update | |
| text | Updated email address | ||
| first_name | text | Updated first name | |
| last_name | text | Updated last name | |
| phone | text | Updated phone number |
| Name | Type | Description |
|---|---|---|
| success | boolean |
Retrieve a contact from a Benchmark Email list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | The ID of the list containing the contact | |
| contact_id | text | The ID of the contact to retrieve |
| Name | Type | Description |
|---|---|---|
| contact_id | string | |
| string | ||
| first_name | string | |
| last_name | string | |
| phone | string | |
| created_date | string | |
| success | boolean |
Delete a contact from a Benchmark Email list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | The ID of the list containing the contact | |
| contact_id | text | The ID of the contact to delete |
| Name | Type | Description |
|---|---|---|
| success | boolean |
Get all contacts from a Benchmark Email list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | The ID of the list to get contacts from | |
| page_number | number | 1 | Page number for pagination (default: 1) |
| page_size | number | 100 | Number of contacts per page (default: 100) |
| Name | Type | Description |
|---|---|---|
| contacts | array | Array of contacts |
| total_count | number | |
| success | boolean |
Get all contact lists from your Benchmark Email account
| Field | Type | Default | Description |
|---|---|---|---|
| page_number | number | 1 | Page number for pagination (default: 1) |
| page_size | number | 100 | Number of lists per page (default: 100) |
| Name | Type | Description |
|---|---|---|
| lists | array | Array of contact lists |
| total_count | number | |
| success | boolean |
Get details of a specific Benchmark Email list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | The ID of the list to retrieve |
| Name | Type | Description |
|---|---|---|
| list_id | string | |
| list_name | string | |
| description | string | |
| created_date | string | |
| contact_count | number | |
| success | boolean |
Create a new contact list in Benchmark Email
| Field | Type | Default | Description |
|---|---|---|---|
| list_name | text | Name for the new contact list | |
| description | textarea | Description for the contact list |
| Name | Type | Description |
|---|---|---|
| list_id | string | ID of the created list |
| success | boolean |
Get all email campaigns from your Benchmark Email account
| Field | Type | Default | Description |
|---|---|---|---|
| page_number | number | 1 | Page number for pagination (default: 1) |
| page_size | number | 100 | Number of campaigns per page (default: 100) |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of email campaigns |
| total_count | number | |
| success | boolean |
Get details of a specific email campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | The ID of the campaign to retrieve |
| Name | Type | Description |
|---|---|---|
| campaign_id | string | |
| campaign_name | string | |
| subject | string | |
| status | string | |
| created_date | string | |
| sent_date | string | |
| success | boolean |
Find email campaign details by searching with campaign name
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_name | text | The name of the campaign to search for |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of campaigns matching the name |
| success | boolean |
Extract electronics products with prices, specifications, and customer reviews from Best Buy
Notes:
Extract detailed product information from Best Buy URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Best Buy product URLs to scrape |
| Name | Type | Description |
|---|---|---|
| products | array | Detailed electronics products with prices, specs, and reviews |
| count | number | Number of products scraped |
Search Best Buy products using keywords
| Field | Type | Default | Description |
|---|---|---|---|
| keywords | textarea | Keywords to search for products (e.g., "iphone 14", "gaming laptop", "4k tv") |
| Name | Type | Description |
|---|---|---|
| products | array | Products matching the search keywords |
| count | number | Number of products found |
Cloud-based e-commerce platform for managing online stores, products, orders, and customer data
Notes:
Retrieve products from your BigCommerce store
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Number of products to retrieve (max 250) |
| is_visible | select | ||
| keyword | text | Search products by keyword |
| Name | Type | Description |
|---|---|---|
| products | array | Array of product objects |
| total | number | Total number of products found |
Get a specific product by ID
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | number | The ID of the product to retrieve |
| Name | Type | Description |
|---|---|---|
| product | object | Complete product details |
| id | number | |
| name | string | |
| price | string | |
| inventory_level | number |
Create a new product in your BigCommerce store
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | The name of the product | |
| type | select | physical | |
| description | textarea | Full description of the product | |
| price | text | Product price (e.g., 19.99) | |
| sale_price | text | Sale price if on sale | |
| weight | text | Product weight for shipping | |
| is_visible | checkbox | 1 | Make product visible in store |
| Name | Type | Description |
|---|---|---|
| product | object | The created product object |
| id | number | ID of the created product |
Update an existing product
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | number | ID of the product to update | |
| name | text | New product name | |
| description | textarea | New product description | |
| price | text | New price | |
| inventory_level | number | New inventory level |
| Name | Type | Description |
|---|---|---|
| product | object | The updated product object |
| id | number |
Retrieve orders from your BigCommerce store
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Number of orders to retrieve (max 250) |
| status_id | select |
| Name | Type | Description |
|---|---|---|
| orders | array | Array of order objects |
| total | number | Total number of orders found |
Get a specific order by ID
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | number | The ID of the order to retrieve |
| Name | Type | Description |
|---|---|---|
| order | object | Complete order details |
| id | number | |
| status | string | |
| total_inc_tax | string | |
| customer_email | string |
Update the status of an order
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | number | ID of the order to update | |
| status_id | select |
| Name | Type | Description |
|---|---|---|
| order | object | The updated order object |
| id | number | |
| status_id | number |
Retrieve customers from your BigCommerce store
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Number of customers to retrieve (max 250) |
| text | Filter customers by email address |
| Name | Type | Description |
|---|---|---|
| customers | array | Array of customer objects |
| total | number | Total number of customers found |
Virtual conference and webinar platform with networking capabilities
Notes:
Create a new BigMarker conference or webinar
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | The title of the conference | |
| description | textarea | Conference description | |
| start_time | text | ISO 8601 format (e.g., 2024-12-25T14:00:00Z) | |
| duration | number | 60 | Conference duration in minutes |
| channel_id | text | Channel ID to create conference in (optional) | |
| registration_required | checkbox | Require attendees to register | |
| is_private | checkbox | Make conference private |
| Name | Type | Description |
|---|---|---|
| conference_id | string | |
| conference_url | string | |
| registration_url | string | |
| success | boolean |
Retrieve details of a specific conference
| Field | Type | Default | Description |
|---|---|---|---|
| conference_id | text | The unique ID of the conference |
| Name | Type | Description |
|---|---|---|
| title | string | |
| description | string | |
| start_time | string | |
| duration | number | |
| conference_url | string | |
| registration_url | string | |
| status | string | |
| success | boolean |
Register an attendee for a conference
| Field | Type | Default | Description |
|---|---|---|---|
| conference_id | text | The unique ID of the conference | |
| text | Attendee email address | ||
| first_name | text | Attendee first name | |
| last_name | text | Attendee last name | |
| company | text | Attendee company name | |
| phone | text | Attendee phone number |
| Name | Type | Description |
|---|---|---|
| registration_id | string | |
| conference_url | string | |
| success | boolean |
Retrieve list of conference registrants
| Field | Type | Default | Description |
|---|---|---|---|
| conference_id | text | The unique ID of the conference |
| Name | Type | Description |
|---|---|---|
| registrants | array | |
| total_count | number | |
| success | boolean |
Retrieve list of conference attendees (past conferences)
| Field | Type | Default | Description |
|---|---|---|---|
| conference_id | text | The unique ID of the conference |
| Name | Type | Description |
|---|---|---|
| attendees | array | |
| total_count | number | |
| success | boolean |
Retrieve list of conferences
| Field | Type | Default | Description |
|---|---|---|---|
| channel_id | text | Filter by specific channel (optional) | |
| status | select | all | |
| limit | number | 50 | Maximum number of conferences to return |
| Name | Type | Description |
|---|---|---|
| conferences | array | |
| total_count | number | |
| success | boolean |
Update an existing conference
| Field | Type | Default | Description |
|---|---|---|---|
| conference_id | text | The unique ID of the conference | |
| title | text | Updated conference title | |
| description | textarea | Updated conference description | |
| start_time | text | ISO 8601 format (e.g., 2024-12-25T14:00:00Z) |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| conference_id | string |
Leading cryptocurrency exchange with advanced trading features
Notes:
Get account information and balances
| Name | Type | Description |
|---|---|---|
| balances | array | Array of asset balances |
| account_type | string | |
| can_trade | boolean | |
| account_data | object |
Get current price for a trading symbol
| Field | Type | Default | Description |
|---|---|---|---|
| symbol | text | BTCUSDT | Trading pair symbol (e.g., BTCUSDT, ETHBTC) |
| Name | Type | Description |
|---|---|---|
| symbol | string | |
| price | number | |
| price_data | object |
Place a buy order
| Field | Type | Default | Description |
|---|---|---|---|
| symbol | text | Trading pair symbol (e.g., BTCUSDT) | |
| quantity | number | Amount to buy | |
| price | number | Limit price (leave empty for market order) | |
| order_type | select | MARKET | Type of order to place |
| Name | Type | Description |
|---|---|---|
| order_id | string | |
| status | string | |
| executed_qty | number | |
| cumulative_quote_qty | number | |
| order_data | object |
Place a sell order
| Field | Type | Default | Description |
|---|---|---|---|
| symbol | text | Trading pair symbol (e.g., BTCUSDT) | |
| quantity | number | Amount to sell | |
| price | number | Limit price (leave empty for market order) | |
| order_type | select | MARKET | Type of order to place |
| Name | Type | Description |
|---|---|---|
| order_id | string | |
| status | string | |
| executed_qty | number | |
| cumulative_quote_qty | number | |
| order_data | object |
Check the status of an order
| Field | Type | Default | Description |
|---|---|---|---|
| symbol | text | Trading pair symbol | |
| order_id | text | Binance order ID |
| Name | Type | Description |
|---|---|---|
| order_id | string | |
| status | string | |
| side | string | |
| orig_qty | number | |
| executed_qty | number | |
| order_data | object |
Cancel an open order
| Field | Type | Default | Description |
|---|---|---|---|
| symbol | text | Trading pair symbol | |
| order_id | text | Binance order ID to cancel |
| Name | Type | Description |
|---|---|---|
| order_id | string | |
| status | string | |
| cancel_data | object |
Get 24hr ticker price change statistics
| Field | Type | Default | Description |
|---|---|---|---|
| symbol | text | Trading pair symbol (leave empty for all symbols) |
| Name | Type | Description |
|---|---|---|
| ticker_data | object | Price change statistics for 24hr period |
Reputation management and customer experience platform
Notes:
Get reviews from all connected platforms
| Field | Type | Default | Description |
|---|---|---|---|
| page | number | 1 | Page number to retrieve |
| limit | number | 20 | Number of reviews to return (max 100) |
| start_date | text | Start date (YYYY-MM-DD format) | |
| end_date | text | End date (YYYY-MM-DD format) | |
| min_rating | number | Minimum star rating (1-5) | |
| platform | select | Filter by specific platform |
| Name | Type | Description |
|---|---|---|
| reviews | array | Array of reviews |
| total_count | number | Total number of reviews |
| average_rating | number | Average star rating |
Send review invitation to a customer
| Field | Type | Default | Description |
|---|---|---|---|
| customer_email | text | Customer email address | |
| customer_name | text | Customer full name | |
| phone | text | Customer phone number | |
| template_id | text | Email template ID to use | |
| custom_fields | textarea | Additional custom fields as JSON object |
| Name | Type | Description |
|---|---|---|
| invite_sent | boolean | Whether invitation was sent successfully |
| invite_id | string | Unique invitation identifier |
Get customer list from Birdeye
| Field | Type | Default | Description |
|---|---|---|---|
| page | number | 1 | Page number to retrieve |
| limit | number | 20 | Number of customers to return (max 100) |
| search | text | Search customers by name or email |
| Name | Type | Description |
|---|---|---|
| customers | array | Array of customer data |
| total_count | number | Total number of customers |
Get reputation analytics and metrics
| Field | Type | Default | Description |
|---|---|---|---|
| start_date | text | Start date (YYYY-MM-DD format) | |
| end_date | text | End date (YYYY-MM-DD format) | |
| metric | select | overview | Type of analytics to retrieve |
| Name | Type | Description |
|---|---|---|
| analytics | object | Analytics metrics and data |
| total_reviews | number | Total number of reviews in period |
| average_rating | number | Average rating in period |
Post a response to a customer review
| Field | Type | Default | Description |
|---|---|---|---|
| review_id | text | ID of the review to respond to | |
| response_text | textarea | Your response to the review |
| Name | Type | Description |
|---|---|---|
| response_posted | boolean | Whether response was posted successfully |
| response_id | string | ID of the posted response |
Advanced cryptocurrency trading platform with margin trading
Notes:
Get wallet balances
| Name | Type | Description |
|---|---|---|
| wallets | array | Array of wallet balances |
Get ticker information for a symbol
| Field | Type | Default | Description |
|---|---|---|---|
| symbol | text | tBTCUSD | Trading symbol (e.g., tBTCUSD, tETHUSD) |
| Name | Type | Description |
|---|---|---|
| bid | number | |
| bid_size | number | |
| ask | number | |
| ask_size | number | |
| daily_change | number | |
| volume | number | |
| ticker_data | array |
Submit a new order
| Field | Type | Default | Description |
|---|---|---|---|
| symbol | text | Trading symbol (e.g., tBTCUSD) | |
| amount | number | Order amount (positive for buy, negative for sell) | |
| price | number | Price (for limit orders) | |
| type | select | EXCHANGE LIMIT | Type of order |
| Name | Type | Description |
|---|---|---|
| order_id | string | |
| symbol | string | |
| amount | number | |
| amount_orig | number | |
| type | string | |
| order_data | array |
Cancel an active order
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | Bitfinex order ID to cancel |
| Name | Type | Description |
|---|---|---|
| order_id | string | |
| status | string | |
| cancel_data | array |
Get active orders
| Field | Type | Default | Description |
|---|---|---|---|
| symbol | text | Filter by symbol (leave empty for all) |
| Name | Type | Description |
|---|---|---|
| orders | array | Array of active orders |
Get trades for a specific order
| Field | Type | Default | Description |
|---|---|---|---|
| symbol | text | Trading symbol | |
| order_id | text | Order ID to get trades for |
| Name | Type | Description |
|---|---|---|
| trades | array | Array of trades for the order |
Get trade history
| Field | Type | Default | Description |
|---|---|---|---|
| symbol | text | Filter by symbol (leave empty for all) | |
| limit | number | 25 | Number of trades to return (max 10000) |
| Name | Type | Description |
|---|---|---|
| trades | array | Array of historical trades |
Extract accommodation listings, prices, availability, and reviews from Booking.com with location-based search
Notes:
Extract detailed hotel information from Booking.com URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Booking.com hotel URLs to scrape |
| Name | Type | Description |
|---|---|---|
| hotels | array | Detailed hotel information with prices, reviews, and amenities |
| count | number | Number of hotels scraped |
Search for accommodations by location with dates and guest details
| Field | Type | Default | Description |
|---|---|---|---|
| location | text | City or location to search (e.g., "New York", "Paris", "Tokyo") | |
| checkIn | text | Check-in date in YYYY-MM-DD format | |
| checkOut | text | Check-out date in YYYY-MM-DD format | |
| adults | number | 2 | Number of adult guests |
| children | number | 0 | Number of children |
| rooms | number | 1 | Number of rooms needed |
| country | text | Country code for localized results (e.g., US, FR, GB) | |
| propertyType | select | Filter by property type | |
| currency | text | Currency code for prices (e.g., USD, EUR, GBP) |
| Name | Type | Description |
|---|---|---|
| listings | array | Hotels matching search criteria with availability and pricing |
| count | number | Number of listings found |
Cloud content management platform for secure file sharing
Notes:
Upload a file to Box
| Name | Type | Required | Description |
|---|---|---|---|
| fileData | file | Yes | File content to upload |
| Field | Type | Default | Description |
|---|---|---|---|
| fileName | text | Name for the uploaded file | |
| parentFolderId | text | 0 | Box folder ID (0 for root folder) |
| description | text | File description |
| Name | Type | Description |
|---|---|---|
| fileId | string | Box file ID |
| fileName | string | Name of the uploaded file |
| size | number | Size of the file in bytes |
| downloadUrl | string | URL to download the file |
| success | boolean |
Download a file from Box
| Field | Type | Default | Description |
|---|---|---|---|
| fileId | text | Box file ID to download |
| Name | Type | Description |
|---|---|---|
| fileData | binary | Downloaded file content |
| fileName | string | Name of the downloaded file |
| size | number | Size of the file in bytes |
| mimeType | string | File MIME type |
List files and folders in Box
| Field | Type | Default | Description |
|---|---|---|---|
| folderId | text | 0 | Box folder ID (0 for root) |
| limit | number | 100 | Maximum number of items to return |
| offset | number | 0 | Number of items to skip |
| sort | select | name | How to sort the results |
| direction | select | ASC | Sort direction |
| Name | Type | Description |
|---|---|---|
| items | array | Array of files and folders |
| totalCount | number | Total number of items |
| offset | number | Current offset |
Create a new folder in Box
| Field | Type | Default | Description |
|---|---|---|---|
| folderName | text | Name of the folder to create | |
| parentFolderId | text | 0 | Parent folder ID (0 for root) |
| Name | Type | Description |
|---|---|---|
| folderId | string | Box folder ID |
| folderName | string | Name of the created folder |
| success | boolean |
Delete a file or folder from Box
| Field | Type | Default | Description |
|---|---|---|---|
| itemId | text | Box file or folder ID to delete | |
| itemType | select | Type of item to delete | |
| recursive | checkbox | Delete folder and all its contents (folders only) |
| Name | Type | Description |
|---|---|---|
| deletedId | string | ID of the deleted item |
| success | boolean |
Move a file or folder to another location
| Field | Type | Default | Description |
|---|---|---|---|
| itemId | text | Box file or folder ID to move | |
| itemType | select | Type of item to move | |
| destinationFolderId | text | Destination folder ID (0 for root) |
| Name | Type | Description |
|---|---|---|
| itemId | string | ID of the moved item |
| newParentId | string | ID of the new parent folder |
| success | boolean |
Copy a file to another location
| Field | Type | Default | Description |
|---|---|---|---|
| fileId | text | Box file ID to copy | |
| destinationFolderId | text | Destination folder ID (0 for root) | |
| newName | text | New name for the copied file (optional) |
| Name | Type | Description |
|---|---|---|
| newFileId | string | ID of the copied file |
| fileName | string | Name of the copied file |
| success | boolean |
Rename a file or folder
| Field | Type | Default | Description |
|---|---|---|---|
| itemId | text | Box file or folder ID to rename | |
| itemType | select | Type of item to rename | |
| newName | text | New name for the item |
| Name | Type | Description |
|---|---|---|
| itemId | string | ID of the renamed item |
| newName | string | New name of the item |
| success | boolean |
Get information about a file or folder
| Field | Type | Default | Description |
|---|---|---|---|
| itemId | text | Box file or folder ID | |
| itemType | select | Type of item |
| Name | Type | Description |
|---|---|---|
| id | string | Box item ID |
| name | string | Item name |
| type | string | Item type (file or folder) |
| size | number | Size in bytes (files only) |
| createdAt | string | Creation timestamp |
| modifiedAt | string | Last modification timestamp |
| ownedBy | string | Owner name |
Create a shared link for a file or folder
| Field | Type | Default | Description |
|---|---|---|---|
| itemId | text | Box file or folder ID to share | |
| itemType | select | Type of item to share | |
| access | select | open | Who can access the shared link |
| password | text | Optional password to protect the link |
| Name | Type | Description |
|---|---|---|
| sharedUrl | string | The shareable link |
| downloadUrl | string | Direct download URL |
| access | string | Access level of the link |
| success | boolean |
Search for files and folders in Box
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Text to search for | |
| type | select | all | Type of items to search for |
| fileExtensions | text | File extensions to search for (comma separated) | |
| ancestorFolderId | text | Folder ID to search within (leave empty for all) | |
| limit | number | 50 | Maximum number of results |
| Name | Type | Description |
|---|---|---|
| results | array | Array of matching items |
| totalCount | number | Number of results found |
Payment platform by PayPal for secure payment processing
Notes:
Create a new customer in Braintree
| Field | Type | Default | Description |
|---|---|---|---|
| first_name | text | Customer's first name | |
| last_name | text | Customer's last name | |
| text | Customer's email address | ||
| phone | text | Customer's phone number | |
| company | text | Customer's company name |
| Name | Type | Description |
|---|---|---|
| customer_id | string | The created customer's unique ID |
| customer_data | object | Complete customer information |
Process a payment transaction
| Field | Type | Default | Description |
|---|---|---|---|
| amount | number | Transaction amount in dollars (e.g., 10.99) | |
| payment_method_nonce | text | Payment method nonce from client-side | |
| customer_id | text | Existing customer ID (optional) | |
| order_id | text | Your internal order ID | |
| description | text | Transaction description |
| Name | Type | Description |
|---|---|---|
| transaction_id | string | The transaction's unique ID |
| status | string | Transaction status (submitted_for_settlement, authorized, etc.) |
| amount | number | Transaction amount |
| transaction_data | object | Complete transaction information |
Retrieve transaction details
| Field | Type | Default | Description |
|---|---|---|---|
| transaction_id | text | The transaction ID to retrieve |
| Name | Type | Description |
|---|---|---|
| transaction_id | string | |
| status | string | |
| amount | number | |
| created_at | string | |
| transaction_data | object |
Refund a transaction
| Field | Type | Default | Description |
|---|---|---|---|
| transaction_id | text | The transaction ID to refund | |
| amount | number | Partial refund amount (leave empty for full refund) |
| Name | Type | Description |
|---|---|---|
| refund_id | string | |
| amount | number | |
| status | string | |
| refund_data | object |
Search for transactions with filters
| Field | Type | Default | Description |
|---|---|---|---|
| customer_email | text | Filter by customer email | |
| status | select | Filter by transaction status | |
| start_date | text | Start date (YYYY-MM-DD format) | |
| end_date | text | End date (YYYY-MM-DD format) |
| Name | Type | Description |
|---|---|---|
| transactions | array | Array of matching transactions |
| total_found | number | Total number of transactions found |
Social media monitoring and influencer discovery platform with sentiment analysis
Notes:
Search for brand mentions across social media and web platforms
| Field | Type | Default | Description |
|---|---|---|---|
| project_id | text | Brand24 project ID to search within | |
| sentiment | select | ||
| source_types | select | ["twitter","facebook","instagram"] | |
| date_from | text | Start date (YYYY-MM-DD) | |
| date_to | text | End date (YYYY-MM-DD) | |
| limit | number | 100 | Maximum mentions to return |
| Name | Type | Description |
|---|---|---|
| mentions | array | Array of found mentions |
| total_mentions | number | Total number of mentions |
| sentiment_breakdown | object | Breakdown by sentiment |
Find top influencers from mentions for a specific project
| Field | Type | Default | Description |
|---|---|---|---|
| project_id | text | Brand24 project ID | |
| period_days | number | 30 | Number of days to analyze (7, 30, 90) |
| limit | number | 50 | Maximum influencers to return |
| Name | Type | Description |
|---|---|---|
| influencers | array | Array of top influencers |
| total_influencers | number | Total number of influencers found |
Social intelligence and influencer monitoring platform with advanced data analytics
Notes:
Monitor influencer activities and social intelligence
| Field | Type | Default | Description |
|---|---|---|---|
| query_id | text |
| Name | Type | Description |
|---|---|---|
| insights | array |
Local SEO and citation tracking platform for managing local search rankings, business citations, and review monitoring
Notes:
Check local search rankings for keywords in specific locations
| Field | Type | Default | Description |
|---|---|---|---|
| business_name | text | Name of the business to track | |
| postcode | text | Location postcode for local search | |
| keywords | textarea | Keywords to check rankings for (one per line) | |
| country | select | USA | Country for local search |
| Name | Type | Description |
|---|---|---|
| rankings | array | Array of local search ranking data |
| averagePosition | number | Average ranking position across all keywords |
| topThreeKeywords | array | Keywords ranking in top 3 positions |
| reportId | string | BrightLocal report ID for future reference |
Track and monitor business citations across directories
| Field | Type | Default | Description |
|---|---|---|---|
| business_name | text | Exact business name to search for | |
| address | text | Full business address | |
| phone | text | Business phone number | |
| website | text | Business website URL | |
| directories | select | top20 | Which directories to check |
| Name | Type | Description |
|---|---|---|
| citations | array | Array of business citations found |
| totalCitations | number | Total number of citations found |
| accurateCitations | number | Number of accurate citations |
| inaccurateCitations | number | Number of inaccurate citations |
| citationScore | number | Overall citation accuracy score (0-100) |
Submit business information to local directories
| Field | Type | Default | Description |
|---|---|---|---|
| business_name | text | Business name for submission | |
| business_description | textarea | Business description (150-300 words recommended) | |
| address | text | Complete business address | |
| phone | text | Primary business phone number | |
| website | text | Business website URL | |
| category | text | Primary business category | |
| directories | textarea | Specific directories to submit to (one per line). Leave empty for auto-selection. |
| Name | Type | Description |
|---|---|---|
| submissionResults | array | Results of directory submissions |
| successfulSubmissions | number | Number of successful submissions |
| failedSubmissions | number | Number of failed submissions |
| submissionId | string | BrightLocal submission batch ID |
Monitor and track business reviews across platforms
| Field | Type | Default | Description |
|---|---|---|---|
| business_name | text | Business name to monitor reviews for | |
| location | text | City, State/Country for business location | |
| platforms | select | all | Which platforms to monitor |
| timeframe | select | 30 | How far back to look for reviews |
| Name | Type | Description |
|---|---|---|
| reviews | array | Array of business reviews found |
| averageRating | number | Average rating across all platforms |
| totalReviews | number | Total number of reviews found |
| recentReviews | array | Most recent reviews (last 7 days) |
| platformBreakdown | object | Review counts and ratings by platform |
Comprehensive local SEO audit for a business
| Field | Type | Default | Description |
|---|---|---|---|
| business_name | text | Business name for the audit | |
| website_url | text | Business website URL | |
| address | text | Full business address | |
| phone | text | Business phone number | |
| primary_category | text | Main business category/industry | |
| target_keywords | textarea | Target keywords for local SEO (one per line) |
| Name | Type | Description |
|---|---|---|
| auditScore | number | Overall local SEO score (0-100) |
| citationScore | number | Citation consistency score |
| reviewScore | number | Online review score |
| onPageScore | number | On-page local SEO score |
| recommendations | array | Array of improvement recommendations |
| issues | array | Array of issues that need attention |
| strengths | array | Array of local SEO strengths |
Local business communication and reputation
Notes:
Send SMS or email message to a customer
| Field | Type | Default | Description |
|---|---|---|---|
| contact_id | text | Existing contact ID (optional if providing phone/email) | |
| phone_number | text | Customer phone number (with country code) | |
| text | Customer email address | ||
| message | textarea | Message content to send | |
| message_type | select | sms | Type of message to send |
| customer_name | text | Customer name for personalization |
| Name | Type | Description |
|---|---|---|
| message_sent | boolean | Whether message was sent successfully |
| message_id | string | Unique message identifier |
| contact_id | string | Contact identifier (created if new) |
Send review request to a customer
| Field | Type | Default | Description |
|---|---|---|---|
| contact_id | text | Existing contact ID (optional if providing phone/email) | |
| phone_number | text | Customer phone number (with country code) | |
| text | Customer email address | ||
| customer_name | text | Customer full name | |
| template_id | text | Review request template ID | |
| custom_message | textarea | Custom message to include with review request | |
| delay_hours | number | 0 | Hours to delay sending the request |
| Name | Type | Description |
|---|---|---|
| request_sent | boolean | Whether request was sent successfully |
| request_id | string | Unique request identifier |
| contact_id | string | Contact identifier |
Get customer conversations and messages
| Field | Type | Default | Description |
|---|---|---|---|
| contact_id | text | Filter by specific contact | |
| status | select | Filter by conversation status | |
| page | number | 1 | Page number to retrieve |
| per_page | number | 20 | Number of conversations to return (max 100) |
| Name | Type | Description |
|---|---|---|
| conversations | array | Array of conversation data |
| total_count | number | Total number of conversations |
Get customer contact list
| Field | Type | Default | Description |
|---|---|---|---|
| search | text | Search contacts by name, phone, or email | |
| page | number | 1 | Page number to retrieve |
| per_page | number | 20 | Number of contacts to return (max 100) |
| tags | text | Comma-separated list of tags to filter by |
| Name | Type | Description |
|---|---|---|
| contacts | array | Array of contact data |
| total_count | number | Total number of contacts |
Create a new customer contact
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Customer full name | |
| phone_number | text | Customer phone number (with country code) | |
| text | Customer email address | ||
| address | textarea | Customer address | |
| tags | text | Comma-separated list of tags | |
| notes | textarea | Additional notes about the contact |
| Name | Type | Description |
|---|---|---|
| contact_created | boolean | Whether contact was created successfully |
| contact_id | string | Unique contact identifier |
| contact_data | object | Complete contact information |
Get reviews managed by Broadly
| Field | Type | Default | Description |
|---|---|---|---|
| page | number | 1 | Page number to retrieve |
| per_page | number | 20 | Number of reviews to return (max 100) |
| rating_filter | select | Filter by rating | |
| platform | select | Filter by review platform |
| Name | Type | Description |
|---|---|---|
| reviews | array | Array of review data |
| total_count | number | Total number of reviews |
| average_rating | number | Average star rating |
Automate web browsers with AI-powered interactions. Navigate pages, fill forms, extract data, and more.
Notes:
Create a new browser session with advanced configuration options
| Field | Type | Default | Description |
|---|---|---|---|
| initial_url | text | URL to navigate to when session starts | |
| recording_active | checkbox | 1 | Record browser session activity |
| adblock_active | checkbox | Block advertisements during browsing | |
| popup_blocker_active | checkbox | Block popup windows | |
| captcha_solver_active | checkbox | Automatically solve CAPTCHAs | |
| headless_active | checkbox | Run browser without UI (faster but not visible) | |
| fullscreen_active | checkbox | Start browser in fullscreen mode | |
| disable_web_security_active | checkbox | Disable CORS and other security features (use with caution) | |
| extra_stealth_active | checkbox | Additional stealth features to avoid detection | |
| viewport_width | number | 1920 | Browser viewport width in pixels (default: 1920 for Full HD) |
| viewport_height | number | 1080 | Browser viewport height in pixels (default: 1080 for Full HD) |
| profile_name | text | Named profile for persisting browser state | |
| profile_persist | checkbox | Save profile data between sessions | |
| max_duration | number | 10 | Maximum session duration in minutes |
| idle_timeout | number | 2 | Minutes of inactivity before session ends |
| Name | Type | Description |
|---|---|---|
| sessionId | string | The browser session ID (can be reused in next node) |
| success | boolean | Whether session creation succeeded |
| recording_url | string | URL to view the browser session recording (available after workflow completes) |
Extract the rendered content of a webpage in Markdown or HTML format
| Field | Type | Default | Description |
|---|---|---|---|
| sessionId | text | Reuse an existing browser session from a previous node | |
| url | text | The URL of the webpage to fetch content from | |
| format | select | markdown | Format for the extracted content |
| wait | number | 0 | Milliseconds to wait for dynamic content to load |
| Name | Type | Description |
|---|---|---|
| sessionId | string | The browser session ID (can be reused in next node) |
| content | string | The extracted content in the specified format |
Capture a fully-rendered screenshot of a webpage
| Field | Type | Default | Description |
|---|---|---|---|
| url | text | The URL of the webpage to screenshot | |
| width | number | 1280 | Width in pixels |
| height | number | 720 | Height in pixels |
| captureFullHeight | checkbox | Capture the entire page height | |
| wait | number | 0 | Milliseconds to wait after page load |
| imageQuality | number | 80 | Quality from 1-100 |
| Name | Type | Description |
|---|---|---|
| screenshot_data | binary | The screenshot as PNG binary data |
| screenshot_url | string | Public URL to the screenshot (auto-generated) |
Execute a natural language browser task with AI automation
| Field | Type | Default | Description |
|---|---|---|---|
| sessionId | text | Reuse an existing browser session from a previous node | |
| url | text | URL to start from (optional - can navigate from current page) | |
| prompt | textarea | Describe what you want the browser to do (e.g., "Find and click the login button, then fill in the form") | |
| agent | select | browser-use | The AI agent to use for task completion |
| provider | select | The AI provider to use | |
| highlightElements | checkbox | Highlight elements during task execution |
| Name | Type | Description |
|---|---|---|
| sessionId | string | The browser session ID (can be reused in next node) |
| result | string | The result returned by the AI agent |
| recording_url | string | URL to view the browser session recording (available after workflow completes) |
Paste large amounts of text at the current cursor position (bypasses AI token limits)
| Field | Type | Default | Description |
|---|---|---|---|
| sessionId | text | Browser session ID from a previous node | |
| text | textarea | Text content to paste (supports unlimited length) |
| Name | Type | Description |
|---|---|---|
| sessionId | string | The browser session ID (can be reused in next node) |
| success | boolean | Whether the paste operation succeeded |
| recording_url | string | URL to view the browser session recording (available after workflow completes) |
Navigate the browser to a specific URL
| Field | Type | Default | Description |
|---|---|---|---|
| sessionId | text | Browser session ID from a previous node | |
| url | text | The URL to navigate to | |
| wait | number | 0 | Milliseconds to wait after navigation |
| Name | Type | Description |
|---|---|---|
| sessionId | string | The browser session ID (can be reused in next node) |
| success | boolean | Whether the navigation succeeded |
| recording_url | string | URL to view the browser session recording (available after workflow completes) |
Single click at specific X,Y coordinates on the page
| Field | Type | Default | Description |
|---|---|---|---|
| sessionId | text | Browser session ID from a previous node | |
| x | number | Horizontal position in pixels | |
| y | number | Vertical position in pixels |
| Name | Type | Description |
|---|---|---|
| sessionId | string | The browser session ID (can be reused in next node) |
| success | boolean | Whether the click succeeded |
| recording_url | string | URL to view the browser session recording (available after workflow completes) |
Double click at specific X,Y coordinates on the page
| Field | Type | Default | Description |
|---|---|---|---|
| sessionId | text | Browser session ID from a previous node | |
| x | number | Horizontal position in pixels | |
| y | number | Vertical position in pixels |
| Name | Type | Description |
|---|---|---|
| sessionId | string | The browser session ID (can be reused in next node) |
| success | boolean | Whether the double click succeeded |
| recording_url | string | URL to view the browser session recording (available after workflow completes) |
Press mouse button down at specific X,Y coordinates
| Field | Type | Default | Description |
|---|---|---|---|
| sessionId | text | Browser session ID from a previous node | |
| x | number | Horizontal position in pixels | |
| y | number | Vertical position in pixels |
| Name | Type | Description |
|---|---|---|
| sessionId | string | The browser session ID (can be reused in next node) |
| success | boolean | Whether the mouse down succeeded |
| recording_url | string | URL to view the browser session recording (available after workflow completes) |
Release mouse button at specific X,Y coordinates
| Field | Type | Default | Description |
|---|---|---|---|
| sessionId | text | Browser session ID from a previous node | |
| x | number | Horizontal position in pixels | |
| y | number | Vertical position in pixels |
| Name | Type | Description |
|---|---|---|
| sessionId | string | The browser session ID (can be reused in next node) |
| success | boolean | Whether the mouse up succeeded |
| recording_url | string | URL to view the browser session recording (available after workflow completes) |
Move mouse cursor to specific X,Y coordinates
| Field | Type | Default | Description |
|---|---|---|---|
| sessionId | text | Browser session ID from a previous node | |
| x | number | Horizontal position in pixels | |
| y | number | Vertical position in pixels |
| Name | Type | Description |
|---|---|---|
| sessionId | string | The browser session ID (can be reused in next node) |
| success | boolean | Whether the mouse move succeeded |
| recording_url | string | URL to view the browser session recording (available after workflow completes) |
Drag from start coordinates to end coordinates
| Field | Type | Default | Description |
|---|---|---|---|
| sessionId | text | Browser session ID from a previous node | |
| startX | number | Starting horizontal position in pixels | |
| startY | number | Starting vertical position in pixels | |
| endX | number | Ending horizontal position in pixels | |
| endY | number | Ending vertical position in pixels | |
| button | select | left | Mouse button to use for drag |
| Name | Type | Description |
|---|---|---|
| sessionId | string | The browser session ID (can be reused in next node) |
| success | boolean | Whether the drag and drop succeeded |
| recording_url | string | URL to view the browser session recording (available after workflow completes) |
Scroll the page at specific coordinates
| Field | Type | Default | Description |
|---|---|---|---|
| sessionId | text | Browser session ID from a previous node | |
| x | number | Horizontal position in pixels | |
| y | number | Vertical position in pixels | |
| deltaY | number | Amount to scroll (positive = down, negative = up) |
| Name | Type | Description |
|---|---|---|
| sessionId | string | The browser session ID (can be reused in next node) |
| success | boolean | Whether the scroll succeeded |
| recording_url | string | URL to view the browser session recording (available after workflow completes) |
Type text character-by-character (simulates keyboard typing)
| Field | Type | Default | Description |
|---|---|---|---|
| sessionId | text | Browser session ID from a previous node | |
| text | textarea | Text to type character-by-character | |
| delay | number | 0 | Delay between keystrokes in milliseconds |
| Name | Type | Description |
|---|---|---|
| sessionId | string | The browser session ID (can be reused in next node) |
| success | boolean | Whether the typing succeeded |
| recording_url | string | URL to view the browser session recording (available after workflow completes) |
Press keyboard shortcut keys (e.g., Ctrl+C, Ctrl+V)
| Field | Type | Default | Description |
|---|---|---|---|
| sessionId | text | Browser session ID from a previous node | |
| keys | text | Comma-separated keys (e.g., "Control,c" or "Control,Shift,V") |
| Name | Type | Description |
|---|---|---|
| sessionId | string | The browser session ID (can be reused in next node) |
| success | boolean | Whether the keyboard shortcut succeeded |
| recording_url | string | URL to view the browser session recording (available after workflow completes) |
Retrieve the current clipboard content
| Field | Type | Default | Description |
|---|---|---|---|
| sessionId | text | Browser session ID from a previous node |
| Name | Type | Description |
|---|---|---|
| sessionId | string | The browser session ID (can be reused in next node) |
| clipboardContent | string | The text content from the clipboard |
| success | boolean | Whether getting clipboard succeeded |
| recording_url | string | URL to view the browser session recording (available after workflow completes) |
Set text to the clipboard
| Field | Type | Default | Description |
|---|---|---|---|
| sessionId | text | Browser session ID from a previous node | |
| text | textarea | Text to copy to clipboard |
| Name | Type | Description |
|---|---|---|
| sessionId | string | The browser session ID (can be reused in next node) |
| success | boolean | Whether setting clipboard succeeded |
| recording_url | string | URL to view the browser session recording (available after workflow completes) |
Copy currently selected text to clipboard
| Field | Type | Default | Description |
|---|---|---|---|
| sessionId | text | Browser session ID from a previous node |
| Name | Type | Description |
|---|---|---|
| sessionId | string | The browser session ID (can be reused in next node) |
| success | boolean | Whether copying selected text succeeded |
| recording_url | string | URL to view the browser session recording (available after workflow completes) |
Terminate an active browser session and finalize billing
| Field | Type | Default | Description |
|---|---|---|---|
| sessionId | text | Browser session ID to terminate |
| Name | Type | Description |
|---|---|---|
| sessionId | string | The terminated session ID |
| success | boolean | Whether session termination succeeded |
| status | string | Final session status |
| recording_url | string | URL to view the browser session recording |
Social media management platform with post scheduling, analytics, and multi-platform publishing
Notes:
Retrieve connected social media profiles from Buffer
| Field | Type | Default | Description |
|---|---|---|---|
| service | select |
| Name | Type | Description |
|---|---|---|
| profiles | array | Array of connected social media profiles |
| total | number |
Get detailed information about a specific social profile
| Field | Type | Default | Description |
|---|---|---|---|
| profileId | text | Buffer profile ID |
| Name | Type | Description |
|---|---|---|
| profile | object | |
| service | string | |
| username | string |
Create and schedule a post to social media profiles
| Field | Type | Default | Description |
|---|---|---|---|
| profileIds | text | Comma-separated Buffer profile IDs to post to | |
| text | textarea | The content of your social media post | |
| media | text | Comma-separated URLs of images/videos to attach | |
| scheduledAt | text | Schedule time (ISO 8601 format) or leave empty to post now | |
| now | select | false |
| Name | Type | Description |
|---|---|---|
| updates | array | Array of created post updates |
| success | boolean | |
| message | string |
Retrieve posts from a social media profile
| Field | Type | Default | Description |
|---|---|---|---|
| profileId | text | Buffer profile ID to get posts from | |
| status | select | pending | |
| limit | number | 20 | Number of posts to retrieve (max 100) |
| Name | Type | Description |
|---|---|---|
| posts | array | |
| total | number |
Get detailed information about a specific post
| Field | Type | Default | Description |
|---|---|---|---|
| postId | text | Buffer post/update ID |
| Name | Type | Description |
|---|---|---|
| post | object | |
| status | string | |
| scheduledAt | string |
Update a scheduled post (only pending posts can be updated)
| Field | Type | Default | Description |
|---|---|---|---|
| postId | text | Buffer post/update ID to update | |
| text | textarea | Updated post content | |
| scheduledAt | text | Updated schedule time (ISO 8601 format) | |
| media | text | Updated comma-separated media URLs |
| Name | Type | Description |
|---|---|---|
| post | object | |
| success | boolean |
Delete a scheduled post (only pending posts can be deleted)
| Field | Type | Default | Description |
|---|---|---|---|
| postId | text | Buffer post/update ID to delete |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string |
Get analytics and engagement data for a post
| Field | Type | Default | Description |
|---|---|---|---|
| postId | text | Buffer post/update ID to get analytics for |
| Name | Type | Description |
|---|---|---|
| analytics | object | Engagement metrics for the post |
| clicks | number | |
| reach | number | |
| engagement | number |
Get analytics for a social media profile
| Field | Type | Default | Description |
|---|---|---|---|
| profileId | text | Buffer profile ID to get analytics for | |
| startDate | text | Start date for analytics (YYYY-MM-DD format) | |
| endDate | text | End date for analytics (YYYY-MM-DD format) |
| Name | Type | Description |
|---|---|---|
| analytics | object | |
| followers | number | |
| posts | number |
Get posting schedules for a profile
| Field | Type | Default | Description |
|---|---|---|---|
| profileId | text | Buffer profile ID to get schedules for |
| Name | Type | Description |
|---|---|---|
| schedules | array | |
| timezone | string |
Update posting schedules for a profile
| Field | Type | Default | Description |
|---|---|---|---|
| profileId | text | Buffer profile ID to update schedules for | |
| schedules | textarea | [{"days":["mon","tue","wed","thu","fri"],"times":["09:00","12:00","17:00"]}] | Schedule configuration as JSON array |
| Name | Type | Description |
|---|---|---|
| schedules | array | |
| success | boolean |
Get information about the authenticated Buffer user
| Name | Type | Description |
|---|---|---|
| user | object | |
| id | string | |
| name | string | |
| plan | string |
Web-based bug tracking system for defect tracking and project management
Notes:
Create a new bug in Bugzilla
| Field | Type | Default | Description |
|---|---|---|---|
| product | text | The product name | |
| component | text | The component name | |
| summary | text | The summary of the bug | |
| description | textarea | Description of the bug | |
| version | text | unspecified | The version |
| Name | Type | Description |
|---|---|---|
| bug_id | string | The unique ID of the created bug |
Content research and influencer identification platform with trending content analysis
Notes:
Search for trending and popular content across social media platforms
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Keywords or topics to search for | |
| content_type | select | all | |
| days_back | number | 30 | Number of days to search back (1-365) |
| min_shares | number | 100 | Minimum total social shares |
| language | select | en | |
| limit | number | 50 | Maximum results to return (1-100) |
| Name | Type | Description |
|---|---|---|
| content | array | Array of trending content pieces |
| total_results | number | Total number of content pieces found |
Discover influencers by topic, domain, or content category
| Field | Type | Default | Description |
|---|---|---|---|
| topic | text | Topic or keyword to find influencers for | |
| platform | select | ||
| follower_min | number | 1000 | |
| follower_max | number | Leave empty for no upper limit | |
| location | text | Geographic location filter | |
| engagement_score_min | number | 50 | Minimum engagement score (0-100) |
| limit | number | 50 | Maximum influencers to return (1-100) |
| Name | Type | Description |
|---|---|---|
| influencers | array | Array of discovered influencers |
| total_found | number | Total number of influencers found |
Analyze content performance and social sharing metrics for a specific URL
| Field | Type | Default | Description |
|---|---|---|---|
| url | text | URL of the content to analyze |
| Name | Type | Description |
|---|---|---|
| analysis | object | Complete content performance analysis |
| total_shares | number | Total social media shares |
| facebook_shares | number | Number of Facebook shares |
| twitter_shares | number | Number of Twitter shares |
| linkedin_shares | number | Number of LinkedIn shares |
| pinterest_shares | number | Number of Pinterest shares |
Discover currently trending topics and hashtags across social media
| Field | Type | Default | Description |
|---|---|---|---|
| category | select | all | |
| location | select | global | |
| timeframe | select | 24h | |
| limit | number | 25 | Maximum trending topics to return (1-50) |
| Name | Type | Description |
|---|---|---|
| trending_topics | array | Array of trending topics and hashtags |
| total_topics | number | Total number of trending topics found |
Schedule and manage appointments with Cal.com - the open-source alternative to Calendly
Notes:
Get available time slots for booking appointments
| Field | Type | Default | Description |
|---|---|---|---|
| startTime | text | Start of date range (ISO 8601 format, e.g., 2024-01-15T00:00:00Z) | |
| endTime | text | End of date range (ISO 8601 format, e.g., 2024-01-22T23:59:59Z) | |
| eventTypeId | text | Event type ID (uses default if not specified) | |
| username | text | Cal.com username to check availability for | |
| timeZone | text | UTC | Time zone for availability (e.g., America/New_York) |
| Name | Type | Description |
|---|---|---|
| slots | array | Array of available time slots |
| count | number | Number of available slots |
| success | boolean |
Book an appointment on Cal.com
| Field | Type | Default | Description |
|---|---|---|---|
| eventTypeId | text | Event type ID to book | |
| start | text | Booking start time (ISO 8601 format) | |
| name | text | Name of the person booking | |
| text | Email of the person booking | ||
| timeZone | text | UTC | Attendee time zone |
| notes | textarea | Additional notes for the booking | |
| metadata | textarea | Additional metadata as JSON object |
| Name | Type | Description |
|---|---|---|
| booking | object | Full booking object |
| uid | string | Unique identifier for the booking |
| startTime | string | Confirmed booking start time |
| endTime | string | Confirmed booking end time |
| meetingUrl | string | Video meeting URL if applicable |
| success | boolean |
Find bookings by email or other criteria
| Field | Type | Default | Description |
|---|---|---|---|
| attendeeEmail | text | Filter bookings by attendee email | |
| status | select | ||
| limit | number | 10 | Maximum number of bookings to return |
| Name | Type | Description |
|---|---|---|
| bookings | array | Array of booking objects |
| count | number | Number of bookings found |
| success | boolean |
Cancel an existing booking
| Field | Type | Default | Description |
|---|---|---|---|
| uid | text | Unique identifier of the booking to cancel | |
| cancellationReason | textarea | Reason for cancellation |
| Name | Type | Description |
|---|---|---|
| cancelled | boolean | Whether the booking was cancelled |
| uid | string | UID of the cancelled booking |
| success | boolean |
Reschedule an existing booking to a new time
| Field | Type | Default | Description |
|---|---|---|---|
| uid | text | Unique identifier of the booking to reschedule | |
| newStart | text | New booking start time (ISO 8601 format) | |
| rescheduleReason | textarea | Reason for rescheduling |
| Name | Type | Description |
|---|---|---|
| booking | object | Full updated booking object |
| uid | string | UID of the rescheduled booking |
| newStartTime | string | Confirmed new start time |
| newEndTime | string | Confirmed new end time |
| success | boolean |
Get all available event types
| Name | Type | Description |
|---|---|---|
| eventTypes | array | Array of event type objects |
| count | number | Number of event types |
| success | boolean |
Meeting scheduling automation, event management, and calendar integration
Notes:
Retrieve available meeting types from your Calendly account
| Field | Type | Default | Description |
|---|---|---|---|
| userUri | text | Specific user URI to get event types for (leave empty for current user) | |
| active | select | true | |
| limit | number | 20 | Number of event types to retrieve (max 100) |
| Name | Type | Description |
|---|---|---|
| eventTypes | array | Array of available event types |
| total | number |
Get detailed information about a specific event type
| Field | Type | Default | Description |
|---|---|---|---|
| eventTypeUuid | text | The UUID of the event type to retrieve |
| Name | Type | Description |
|---|---|---|
| eventType | object | |
| name | string | |
| duration | number | |
| schedulingUrl | string |
Retrieve scheduled events (meetings) from your calendar
| Field | Type | Default | Description |
|---|---|---|---|
| userUri | text | Specific user URI to get events for (leave empty for current user) | |
| status | select | active | |
| minStartTime | text | ISO 8601 datetime (e.g., 2024-01-01T00:00:00Z) | |
| maxStartTime | text | ISO 8601 datetime (e.g., 2024-12-31T23:59:59Z) | |
| sort | select | start_time:asc | |
| limit | number | 20 | Number of events to retrieve (max 100) |
| Name | Type | Description |
|---|---|---|
| events | array | |
| total | number |
Get detailed information about a specific scheduled event
| Field | Type | Default | Description |
|---|---|---|---|
| eventUuid | text | The UUID of the scheduled event to retrieve |
| Name | Type | Description |
|---|---|---|
| event | object | |
| name | string | |
| startTime | string | |
| endTime | string | |
| status | string |
Cancel a scheduled event
| Field | Type | Default | Description |
|---|---|---|---|
| eventUuid | text | The UUID of the scheduled event to cancel | |
| reason | textarea | Optional reason for cancellation (sent to invitees) |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string |
Get invitees for a specific scheduled event
| Field | Type | Default | Description |
|---|---|---|---|
| eventUuid | text | The UUID of the scheduled event | |
| status | select |
| Name | Type | Description |
|---|---|---|
| invitees | array | |
| total | number |
Get detailed information about a specific invitee
| Field | Type | Default | Description |
|---|---|---|---|
| inviteeUuid | text | The UUID of the invitee to retrieve |
| Name | Type | Description |
|---|---|---|
| invitee | object | |
| name | string | |
| string | ||
| status | string |
Get information about the current authenticated user
| Name | Type | Description |
|---|---|---|
| user | object | |
| name | string | |
| string | ||
| uri | string | |
| schedulingUrl | string |
Get information about the user's organization
| Field | Type | Default | Description |
|---|---|---|---|
| organizationUri | text | Specific organization URI (leave empty for current user's org) |
| Name | Type | Description |
|---|---|---|
| organization | object | |
| uri | string |
Get availability for a user within a time range
| Field | Type | Default | Description |
|---|---|---|---|
| userUri | text | The URI of the user to check availability for | |
| startTime | text | ISO 8601 datetime (e.g., 2024-01-01T00:00:00Z) | |
| endTime | text | ISO 8601 datetime (e.g., 2024-01-01T23:59:59Z) |
| Name | Type | Description |
|---|---|---|
| availability | array | |
| busy | array |
Create a single-use booking link for an event type. Links expire after one booking or 90 days.
| Field | Type | Default | Description |
|---|---|---|---|
| eventTypeUri | text | The URI of the event type to create a booking link for (e.g., https://api.calendly.com/event_types/XXXX) | |
| maxEventCount | number | 1 | Maximum number of bookings allowed (1 for single-use links) |
| Name | Type | Description |
|---|---|---|
| bookingUrl | string | The single-use booking link URL |
| ownerUri | string | The event type URI that owns this link |
| ownerType | string | Type of owner (EventType) |
| maxEventCount | number | Maximum bookings allowed on this link |
Voice broadcasting and SMS automation platform for marketing campaigns
Email marketing automation, workflow management, and subscriber analytics platform
Notes:
Retrieve subscribers from a Campaign Monitor list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | The Campaign Monitor list ID to retrieve subscribers from | |
| date_from | text | Only subscribers added after this date | |
| page | number | 1 | Page number for pagination (1000 results per page) |
| Name | Type | Description |
|---|---|---|
| subscribers | array | Array of subscriber objects |
| total_pages | number | Total number of pages available |
Add a new subscriber to a Campaign Monitor list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | The Campaign Monitor list ID to add subscriber to | |
| text | Subscriber email address | ||
| name | text | Subscriber name | |
| custom_fields | textarea | {} | Custom fields as JSON object (e.g. {"City": "New York", "Age": "25"}) |
| resubscribe | checkbox | Resubscribe the person if they already exist |
| Name | Type | Description |
|---|---|---|
| string | Email address of the added subscriber | |
| added | boolean | Whether the subscriber was successfully added |
Update an existing subscriber in a Campaign Monitor list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | The Campaign Monitor list ID | |
| text | Current email address of the subscriber | ||
| new_email | text | New email address (if changing email) | |
| name | text | Subscriber name | |
| custom_fields | textarea | {} | Custom fields as JSON object |
| Name | Type | Description |
|---|---|---|
| string | Email address of the updated subscriber | |
| updated | boolean | Whether the subscriber was successfully updated |
Unsubscribe a subscriber from a Campaign Monitor list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | The Campaign Monitor list ID | |
| text | Email address to unsubscribe |
| Name | Type | Description |
|---|---|---|
| string | Email address that was unsubscribed | |
| unsubscribed | boolean | Whether the subscriber was successfully unsubscribed |
Retrieve all lists from your Campaign Monitor account
| Field | Type | Default | Description |
|---|---|---|---|
| client_id | text | The Campaign Monitor client ID to get lists for |
| Name | Type | Description |
|---|---|---|
| lists | array | Array of list objects |
Create a new subscriber list in Campaign Monitor
| Field | Type | Default | Description |
|---|---|---|---|
| client_id | text | The Campaign Monitor client ID | |
| title | text | The title of the new list | |
| unsubscribe_page | text | URL for the unsubscribe confirmation page | |
| confirmation_success_page | text | URL for the subscription confirmation success page |
| Name | Type | Description |
|---|---|---|
| list_id | string | ID of the created list |
| title | string | Title of the created list |
Retrieve campaigns from your Campaign Monitor account
| Field | Type | Default | Description |
|---|---|---|---|
| client_id | text | The Campaign Monitor client ID |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of campaign objects |
Design automation and visual content creation platform with powerful templates, brand kits, and export capabilities
Notes:
Retrieve information about the authenticated user
| Name | Type | Description |
|---|---|---|
| user | object | Complete user profile data |
| id | string | Unique identifier for the user |
| displayName | string | User display name |
| string | User email address | |
| team | object | User team details |
Retrieve designs from your Canva account
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Search term to filter designs | |
| design_type | select | Filter by design type | |
| folder_id | text | Filter designs from specific folder | |
| limit | number | 50 | Maximum number of designs to retrieve |
| Name | Type | Description |
|---|---|---|
| designs | array | Array of design objects |
| totalDesigns | number | Number of designs returned |
| hasMore | boolean | Whether there are more designs available |
Retrieve details of a specific design
| Field | Type | Default | Description |
|---|---|---|---|
| design_id | text | Canva design ID or URL |
| Name | Type | Description |
|---|---|---|
| design | object | Complete design information |
| id | string | Unique identifier for the design |
| title | string | Title of the design |
| description | string | Design description |
| designType | string | Type/category of the design |
| createdAt | string | When the design was created |
| updatedAt | string | When the design was last updated |
| thumbnail | object | Design thumbnail information |
Create a new design from a template or blank canvas
| Field | Type | Default | Description |
|---|---|---|---|
| design_type | select | Type of design to create | |
| title | text | Title for the new design | |
| template_id | text | Template ID to create design from (leave empty for blank) | |
| folder_id | text | Folder to create the design in |
| Name | Type | Description |
|---|---|---|
| designId | string | ID of the created design |
| design | object | Complete created design data |
| title | string | Title of the created design |
| editUrl | string | URL to edit the design in Canva |
Create a copy of an existing design
| Field | Type | Default | Description |
|---|---|---|---|
| design_id | text | ID of the design to duplicate | |
| title | text | Title for the duplicated design (optional) | |
| folder_id | text | Folder to place the duplicated design |
| Name | Type | Description |
|---|---|---|
| designId | string | ID of the duplicated design |
| design | object | Complete duplicated design data |
| title | string | Title of the duplicated design |
Export a design to various formats (PNG, JPG, PDF, etc.)
| Field | Type | Default | Description |
|---|---|---|---|
| design_id | text | ID of the design to export | |
| format | select | png | Format to export the design as |
| quality | select | standard | Export quality |
| pages | text | Specific pages to export (e.g., "1,3,5" or "1-3") |
| Name | Type | Description |
|---|---|---|
| exportUrl | string | Download URL for the exported file |
| format | string | Format of the exported file |
| fileSize | number | Size of the exported file in bytes |
| success | boolean | Whether the export was successful |
Retrieve folders from your Canva account
| Field | Type | Default | Description |
|---|---|---|---|
| parent_folder_id | text | Get subfolders of a specific folder | |
| limit | number | 50 | Maximum number of folders to retrieve |
| Name | Type | Description |
|---|---|---|
| folders | array | Array of folder objects |
| totalFolders | number | Number of folders returned |
Create a new folder in Canva
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name for the new folder | |
| parent_folder_id | text | Parent folder to create the new folder in |
| Name | Type | Description |
|---|---|---|
| folderId | string | ID of the created folder |
| folder | object | Complete created folder data |
| name | string | Name of the created folder |
Retrieve brand kit information (colors, fonts, logos)
| Field | Type | Default | Description |
|---|---|---|---|
| brand_kit_id | text | Specific brand kit ID (leave empty for default) |
| Name | Type | Description |
|---|---|---|
| brandKit | object | Complete brand kit information |
| colors | array | Array of brand colors |
| fonts | array | Array of brand fonts |
| logos | array | Array of brand logos and assets |
Upload an image or media asset to Canva
| Field | Type | Default | Description |
|---|---|---|---|
| file_url | text | URL of the file to upload | |
| name | text | Name for the uploaded asset | |
| folder_id | text | Folder to upload the asset to | |
| tags | text | Comma-separated tags for the asset |
| Name | Type | Description |
|---|---|---|
| assetId | string | ID of the uploaded asset |
| asset | object | Complete uploaded asset data |
| name | string | Name of the uploaded asset |
| url | string | URL of the uploaded asset |
Retrieve uploaded assets from your Canva account
| Field | Type | Default | Description |
|---|---|---|---|
| asset_type | select | Filter by asset type | |
| folder_id | text | Filter assets from specific folder | |
| tags | text | Filter by tags (comma-separated) | |
| limit | number | 50 | Maximum number of assets to retrieve |
| Name | Type | Description |
|---|---|---|
| assets | array | Array of asset objects |
| totalAssets | number | Number of assets returned |
Simple CRM for small businesses with contact management, opportunity tracking, and task automation
Notes:
Retrieve people (contacts) from Capsule CRM
| Field | Type | Default | Description |
|---|---|---|---|
| perPage | number | 50 | Number of people to retrieve per page (1-100) |
| q | text | Search term to filter people | |
| tag | text | Filter people by tag |
| Name | Type | Description |
|---|---|---|
| people | array | |
| total_count | number |
Create a new person (contact) in Capsule CRM
| Field | Type | Default | Description |
|---|---|---|---|
| firstName | text | First name of the person | |
| lastName | text | Last name of the person | |
| jobTitle | text | Job title of the person | |
| emailAddress | Email address of the person | ||
| phoneNumber | text | Phone number of the person | |
| about | textarea | Notes about the person |
| Name | Type | Description |
|---|---|---|
| person_id | number | |
| firstName | string | |
| lastName | string | |
| emailAddress | string | |
| created_at | string |
Update an existing person in Capsule CRM
| Field | Type | Default | Description |
|---|---|---|---|
| person_id | number | ID of the person to update | |
| firstName | text | First name of the person | |
| lastName | text | Last name of the person | |
| jobTitle | text | Job title of the person | |
| emailAddress | Email address of the person | ||
| phoneNumber | text | Phone number of the person | |
| about | textarea | Notes about the person |
| Name | Type | Description |
|---|---|---|
| person_id | number | |
| firstName | string | |
| lastName | string | |
| emailAddress | string | |
| updated_at | string |
Retrieve organisations from Capsule CRM
| Field | Type | Default | Description |
|---|---|---|---|
| perPage | number | 50 | Number of organisations to retrieve per page (1-100) |
| q | text | Search term to filter organisations | |
| tag | text | Filter organisations by tag |
| Name | Type | Description |
|---|---|---|
| organisations | array | |
| total_count | number |
Create a new organisation in Capsule CRM
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the organisation | |
| website | url | Website URL of the organisation | |
| emailAddress | Email address of the organisation | ||
| phoneNumber | text | Phone number of the organisation | |
| about | textarea | Notes about the organisation |
| Name | Type | Description |
|---|---|---|
| organisation_id | number | |
| name | string | |
| website | string | |
| emailAddress | string | |
| created_at | string |
Retrieve opportunities from Capsule CRM
| Field | Type | Default | Description |
|---|---|---|---|
| perPage | number | 50 | Number of opportunities to retrieve per page (1-100) |
| milestone | text | Filter by milestone name | |
| party_id | number | Filter by person or organisation ID |
| Name | Type | Description |
|---|---|---|
| opportunities | array | |
| total_count | number |
Create a new opportunity in Capsule CRM
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the opportunity | |
| party_id | number | ID of the person or organisation | |
| milestone | text | Milestone name for the opportunity | |
| value | number | Monetary value of the opportunity | |
| currency | text | USD | Currency code (e.g., USD, EUR, GBP) |
| expectedCloseDate | date | Expected close date (YYYY-MM-DD) | |
| description | textarea | Description of the opportunity |
| Name | Type | Description |
|---|---|---|
| opportunity_id | number | |
| name | string | |
| value | number | |
| currency | string | |
| milestone | string | |
| created_at | string |
Retrieve tasks from Capsule CRM
| Field | Type | Default | Description |
|---|---|---|---|
| perPage | number | 50 | Number of tasks to retrieve per page (1-100) |
| status | select | Filter tasks by status | |
| party_id | number | Filter by person or organisation ID |
| Name | Type | Description |
|---|---|---|
| tasks | array | |
| total_count | number |
Create a new task in Capsule CRM
| Field | Type | Default | Description |
|---|---|---|---|
| description | text | Description of the task | |
| dueDate | date | Due date for the task (YYYY-MM-DD) | |
| party_id | number | ID of the person or organisation this task relates to | |
| opportunity_id | number | ID of the opportunity this task relates to | |
| assign_to | number | User ID to assign the task to |
| Name | Type | Description |
|---|---|---|
| task_id | number | |
| description | string | |
| dueDate | string | |
| status | string | |
| created_at | string |
Retrieve entries (notes) from Capsule CRM
| Field | Type | Default | Description |
|---|---|---|---|
| perPage | number | 50 | Number of entries to retrieve per page (1-100) |
| party_id | number | Filter by person or organisation ID | |
| opportunity_id | number | Filter by opportunity ID |
| Name | Type | Description |
|---|---|---|
| entries | array | |
| total_count | number |
Create a new entry (note) in Capsule CRM
| Field | Type | Default | Description |
|---|---|---|---|
| content | textarea | Content of the entry/note | |
| type | select | note | Type of entry |
| party_id | number | ID of the person or organisation this entry relates to | |
| opportunity_id | number | ID of the opportunity this entry relates to |
| Name | Type | Description |
|---|---|---|
| entry_id | number | |
| content | string | |
| type | string | |
| created_at | string |
Search across people and organisations in Capsule CRM
| Field | Type | Default | Description |
|---|---|---|---|
| q | text | Search term to find people and organisations | |
| perPage | number | 50 | Maximum number of results per page |
| Name | Type | Description |
|---|---|---|
| parties | array | |
| total_count | number |
Real-time website analytics with visitor tracking, content performance, and engagement metrics
Notes:
Get real-time visitor analytics for a specific domain
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | The domain to get analytics for (e.g., example.com) | |
| limit | number | 20 | Maximum number of results to return |
| Name | Type | Description |
|---|---|---|
| totalVisitors | number | |
| pages | array | |
| referrers | array | |
| geoData | array |
Get historical analytics data for a specific time period
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | The domain to get analytics for | |
| startDate | text | Start date in YYYY-MM-DD format | |
| endDate | text | End date in YYYY-MM-DD format | |
| metrics | textarea | ["people", "visits", "pages"] | Array of metrics to retrieve |
| Name | Type | Description |
|---|---|---|
| dateRange | object | |
| metrics | object | |
| dailyStats | array |
Get the most popular pages on your site
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | The domain to analyze | |
| timeFrame | select | hour | Time period for analysis |
| limit | number | 10 | Maximum number of pages to return |
| Name | Type | Description |
|---|---|---|
| pages | array | |
| totalPages | number |
Analyze where your traffic is coming from
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | The domain to analyze | |
| sourceType | select | all | Type of traffic sources to analyze |
| Name | Type | Description |
|---|---|---|
| sources | array | |
| totalSources | number | |
| breakdown | object |
Get detailed engagement metrics for your content
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | The domain to analyze | |
| pageUrl | text | Optional: analyze a specific page (leave empty for site-wide) |
| Name | Type | Description |
|---|---|---|
| averageTimeOnSite | number | |
| bounceRate | number | |
| pageViews | number | |
| engagementScore | number |
Check for traffic spikes, drops, or other alerts
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | The domain to monitor | |
| alertTypes | textarea | ["traffic_spike", "traffic_drop", "error_rate"] | Array of alert types to check |
| Name | Type | Description |
|---|---|---|
| alerts | array | |
| alertCount | number | |
| status | string |
Extract ChatGPT responses and citations with web search capabilities and prompt-based queries
Notes:
Query ChatGPT with prompts and extract responses with citations
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | The prompt to send to ChatGPT (max 4,096 characters). Each prompt is a separate query. | |
| webSearch | select | Enable GPT web search feature for current information | |
| additionalPrompt | textarea | Optional additional context or instructions for the prompt | |
| country | text | Optional country code for localized responses |
| Name | Type | Description |
|---|---|---|
| response | object | ChatGPT response with content and citations |
| count | number | Number of responses (typically 1) |
Local brand management and reputation
Notes:
Get reviews from monitored locations
| Field | Type | Default | Description |
|---|---|---|---|
| location_id | text | Specific location ID to filter by | |
| page | number | 1 | Page number to retrieve |
| limit | number | 20 | Number of reviews to return (max 100) |
| rating_filter | select | Filter by rating | |
| platform | select | Filter by review platform | |
| date_from | text | Start date (YYYY-MM-DD format) | |
| date_to | text | End date (YYYY-MM-DD format) |
| Name | Type | Description |
|---|---|---|
| reviews | array | Array of review data |
| total_count | number | Total number of reviews |
| average_rating | number | Average star rating |
Get list of monitored business locations
| Field | Type | Default | Description |
|---|---|---|---|
| active_only | checkbox | 1 | Only return active locations |
| search | text | Search locations by name or address |
| Name | Type | Description |
|---|---|---|
| locations | array | Array of business locations |
| total_count | number | Total number of locations |
Get business listings and their status
| Field | Type | Default | Description |
|---|---|---|---|
| location_id | text | Specific location ID to filter by | |
| platform | select | Filter by specific platform | |
| status | select | Filter by listing status |
| Name | Type | Description |
|---|---|---|
| listings | array | Array of business listings |
| total_count | number | Total number of listings |
Get local brand analytics and insights
| Field | Type | Default | Description |
|---|---|---|---|
| location_id | text | Specific location ID to analyze | |
| date_from | text | Start date (YYYY-MM-DD format) | |
| date_to | text | End date (YYYY-MM-DD format) | |
| metric | select | overview | Type of analytics to retrieve |
| Name | Type | Description |
|---|---|---|
| analytics | object | Detailed analytics information |
| total_reviews | number | Total number of reviews in period |
| average_rating | number | Average rating in period |
| visibility_score | number | Local search visibility score |
Get competitor analysis data
| Field | Type | Default | Description |
|---|---|---|---|
| location_id | text | Location ID to analyze competitors for | |
| radius | number | 5 | Search radius for competitors |
| limit | number | 10 | Number of competitors to return (max 50) |
| Name | Type | Description |
|---|---|---|
| competitors | array | Array of competitor data |
| total_count | number | Total number of competitors found |
Get social media posts from monitored accounts
| Field | Type | Default | Description |
|---|---|---|---|
| location_id | text | Specific location ID to filter by | |
| platform | select | Filter by social platform | |
| page | number | 1 | Page number to retrieve |
| limit | number | 20 | Number of posts to return (max 50) |
| Name | Type | Description |
|---|---|---|
| posts | array | Array of social media posts |
| total_count | number | Total number of posts |
Continuous integration and deployment platform for DevOps automation
Notes:
Retrieve a list of projects you have access to
| Name | Type | Description |
|---|---|---|
| projects | array | List of CircleCI projects |
| count | number | Number of projects returned |
Get detailed information about a specific project
| Field | Type | Default | Description |
|---|---|---|---|
| project_slug | text | Project slug in format: vcs-type/org-name/repo-name |
| Name | Type | Description |
|---|---|---|
| project_name | string | Name of the project |
| organization_name | string | Organization name |
| vcs_type | string | Version control system (github, bitbucket) |
| default_branch | string | Default branch name |
Retrieve recent pipelines for a project
| Field | Type | Default | Description |
|---|---|---|---|
| project_slug | text | Project slug in format: vcs-type/org-name/repo-name | |
| branch | text | Filter by specific branch (optional) |
| Name | Type | Description |
|---|---|---|
| pipelines | array | List of recent pipelines |
| count | number | Number of pipelines returned |
Get detailed information about a specific pipeline
| Field | Type | Default | Description |
|---|---|---|---|
| pipeline_id | text | Unique identifier of the pipeline |
| Name | Type | Description |
|---|---|---|
| pipeline_number | number | Sequential pipeline number |
| state | string | Current state of the pipeline |
| created_at | string | When the pipeline was created |
| trigger_type | string | How the pipeline was triggered |
| vcs_branch | string | VCS branch that triggered the pipeline |
Trigger a new pipeline for a project
| Field | Type | Default | Description |
|---|---|---|---|
| project_slug | text | Project slug in format: vcs-type/org-name/repo-name | |
| branch | text | Branch to trigger pipeline on (defaults to main/master) | |
| tag | text | Git tag to trigger pipeline on (optional) | |
| parameters | textarea | {} | Parameters to pass to the pipeline as JSON |
| Name | Type | Description |
|---|---|---|
| pipeline_id | string | Unique identifier of the triggered pipeline |
| pipeline_number | number | Sequential pipeline number |
| state | string | Initial state of the pipeline |
| success | boolean | Whether the pipeline was triggered successfully |
Retrieve workflows for a specific pipeline
| Field | Type | Default | Description |
|---|---|---|---|
| pipeline_id | text | Unique identifier of the pipeline |
| Name | Type | Description |
|---|---|---|
| workflows | array | List of workflows in the pipeline |
| count | number | Number of workflows returned |
Retrieve jobs for a specific workflow
| Field | Type | Default | Description |
|---|---|---|---|
| workflow_id | text | Unique identifier of the workflow |
| Name | Type | Description |
|---|---|---|
| jobs | array | List of jobs in the workflow |
| count | number | Number of jobs returned |
Cancel a running workflow
| Field | Type | Default | Description |
|---|---|---|---|
| workflow_id | text | Unique identifier of the workflow to cancel |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the cancellation was successful |
| message | string | Details about the operation |
Rerun a workflow from failed jobs
| Field | Type | Default | Description |
|---|---|---|---|
| workflow_id | text | Unique identifier of the workflow to rerun | |
| from_failed | checkbox | 1 | Only rerun failed jobs (recommended) |
| Name | Type | Description |
|---|---|---|
| workflow_id | string | ID of the new workflow created by rerun |
| success | boolean | Whether the rerun was successful |
| message | string | Details about the operation |
Commission Junction affiliate network management
Notes:
Retrieve available advertisers and programs
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | Filter advertisers by relationship status | |
| keywords | text | Search advertisers by keywords | |
| category | text | Filter by advertiser category | |
| page_size | number | 20 | Number of advertisers per page (max 100) |
| Name | Type | Description |
|---|---|---|
| advertisers | array | Array of advertiser data |
| total_advertisers | number | Total number of advertisers |
Retrieve commission transactions and earnings
| Field | Type | Default | Description |
|---|---|---|---|
| start_date | text | Start date for commissions (YYYY-MM-DD format) | |
| end_date | text | End date for commissions (YYYY-MM-DD format) | |
| advertiser_id | text | Filter by specific advertiser ID | |
| status | select | Filter by commission status |
| Name | Type | Description |
|---|---|---|
| commissions | array | Array of commission data |
| total_commissions | number | Total number of commission records |
| total_earnings | number | Total commission earnings |
Generate affiliate tracking links
| Field | Type | Default | Description |
|---|---|---|---|
| advertiser_id | text | Advertiser ID to create links for | |
| destination_url | text | Specific URL to link to | |
| link_type | select | text | Type of link to generate |
| Name | Type | Description |
|---|---|---|
| affiliate_link | string | Generated affiliate tracking link |
| click_url | string | Direct click tracking URL |
| tracking_id | string | Unique tracking identifier |
Retrieve banners and promotional materials
| Field | Type | Default | Description |
|---|---|---|---|
| advertiser_id | text | Advertiser ID to get creatives for | |
| creative_type | select | Type of creative material | |
| size | text | Banner size filter (e.g., 728x90) | |
| language | select | en | Creative language |
| Name | Type | Description |
|---|---|---|
| creatives | array | Array of creative materials |
| total_creatives | number | Total number of creatives |
Retrieve advertiser product catalogs
| Field | Type | Default | Description |
|---|---|---|---|
| advertiser_id | text | Advertiser ID to get products for | |
| keywords | text | Search products by keywords | |
| category | text | Filter by product category | |
| min_price | number | Minimum product price | |
| max_price | number | Maximum product price | |
| page_size | number | 50 | Number of products to return (max 1000) |
| Name | Type | Description |
|---|---|---|
| products | array | Array of product data |
| total_products | number | Total number of products |
Generate affiliate performance analytics
| Field | Type | Default | Description |
|---|---|---|---|
| start_date | text | Report start date (YYYY-MM-DD format) | |
| end_date | text | Report end date (YYYY-MM-DD format) | |
| advertiser_id | text | Filter by specific advertiser ID | |
| group_by | select | day | How to group the report data |
| Name | Type | Description |
|---|---|---|
| performance_data | array | Performance metrics data |
| summary | object | Summary statistics |
| total_clicks | number | Total clicks in report period |
| total_sales | number | Total sales in report period |
| total_commission | number | Total commission earned |
| conversion_rate | number | Overall conversion rate percentage |
Company and contact data enrichment platform with comprehensive business intelligence, technographics, and real-time data updates
Notes:
Enrich person data using email address with comprehensive profile information
| Field | Type | Default | Description |
|---|---|---|---|
| text | Email address to enrich with person data | ||
| webhook_url | text | Optional webhook URL for async processing | |
| subscribe | checkbox | Subscribe to data updates for this person |
| Name | Type | Description |
|---|---|---|
| person | object | Comprehensive person profile information |
| company | object | Company information associated with the person |
| confidence | number | Data confidence score from 0-100 |
| social_profiles | array | Social media profiles and professional links |
Enrich company data using domain with business intelligence
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | Company domain to enrich (e.g., clearbit.com) | |
| webhook_url | text | Optional webhook URL for async processing | |
| checkbox | 1 | Include Facebook business page data | |
| checkbox | 1 | Include LinkedIn company page data |
| Name | Type | Description |
|---|---|---|
| company | object | Comprehensive company business intelligence |
| metrics | object | Financial and performance metrics |
| tech_stack | array | Technologies used by the company |
| social_data | object | Social media presence and engagement |
Search for people at companies using advanced filters
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | Company domain to search within | |
| company_names | textarea | [] | Array of company names to search (e.g., ["Google", "Microsoft"]) |
| titles | textarea | [] | Array of job titles to filter by (e.g., ["CEO", "CTO", "VP Marketing"]) |
| roles | textarea | [] | Array of functional roles (e.g., ["engineering", "sales", "marketing"]) |
| seniorities | textarea | [] | Array of seniority levels (e.g., ["executive", "director", "manager"]) |
| locations | textarea | [] | Array of locations (e.g., ["San Francisco", "New York", "Remote"]) |
| email_required | checkbox | 1 | Only return prospects with email addresses |
| limit | number | 20 | Maximum number of prospects to return (default: 20, max: 100) |
| Name | Type | Description |
|---|---|---|
| prospects | array | Array of prospects matching the search criteria |
| total_results | number | Total number of prospects found |
| search_query | object | The search parameters that were used |
Search for companies using advanced business criteria
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | General search query for company name or description | |
| industries | textarea | [] | Array of industry categories (e.g., ["Technology", "Healthcare", "Finance"]) |
| employees_min | number | Minimum number of employees | |
| employees_max | number | Maximum number of employees | |
| revenue_min | number | Minimum annual revenue in USD | |
| revenue_max | number | Maximum annual revenue in USD | |
| locations | textarea | [] | Array of geographic locations |
| tech | textarea | [] | Array of technologies used (e.g., ["Salesforce", "HubSpot"]) |
| limit | number | 20 | Maximum number of companies to return (default: 20, max: 100) |
| Name | Type | Description |
|---|---|---|
| companies | array | Array of companies matching the search criteria |
| total_results | number | Total number of companies found |
Add a domain to your Clearbit watchlist for monitoring
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | Company domain to add to watchlist | |
| webhook_url | text | Webhook URL to receive updates |
| Name | Type | Description |
|---|---|---|
| domain | string | Domain added to watchlist |
| status | string | Watchlist addition status |
| webhook_configured | boolean | Whether webhook was successfully configured |
Identify companies visiting your website using Reveal
| Field | Type | Default | Description |
|---|---|---|---|
| date_range | select | Time period for visitor data | |
| min_visits | number | 1 | Minimum number of visits to include company |
| include_contact_info | checkbox | 1 | Include key contact information for visiting companies |
| Name | Type | Description |
|---|---|---|
| visitors | array | Companies that visited your website |
| total_visitors | number | Total number of identified companies |
| date_range | string | Date range of the visitor data |
Enrich multiple emails or domains in a single request
| Field | Type | Default | Description |
|---|---|---|---|
| type | select | Type of bulk enrichment to perform | |
| data | textarea | Array of emails (for person) or domains (for company) to enrich | |
| webhook_url | text | Webhook URL to receive enrichment results |
| Name | Type | Description |
|---|---|---|
| enrichment_id | string | ID to track the bulk enrichment job |
| status | string | Current status of the enrichment job |
| total_records | number | Total number of records submitted for enrichment |
| webhook_configured | boolean | Whether webhook was successfully configured |
Digital product affiliate marketplace platform
Notes:
Search and retrieve ClickBank marketplace products
| Field | Type | Default | Description |
|---|---|---|---|
| category | select | Filter products by category | |
| keywords | text | Search products by keywords | |
| min_gravity | number | Minimum gravity score (popularity) | |
| max_gravity | number | Maximum gravity score (popularity) | |
| min_commission | number | Minimum commission percentage | |
| sort_by | select | gravity | Sort products by criteria |
| results_per_page | number | 20 | Number of products to return (max 100) |
| Name | Type | Description |
|---|---|---|
| products | array | Array of product data |
| total_products | number | Total number of products found |
Retrieve affiliate order history and commissions
| Field | Type | Default | Description |
|---|---|---|---|
| start_date | text | Start date for orders (YYYY-MM-DD format) | |
| end_date | text | End date for orders (YYYY-MM-DD format) | |
| product_id | text | Filter by specific product ID | |
| transaction_type | select | Filter by transaction type |
| Name | Type | Description |
|---|---|---|
| orders | array | Array of order data |
| total_orders | number | Total number of orders |
| total_commission | number | Total commission earned |
Create affiliate tracking links for products
| Field | Type | Default | Description |
|---|---|---|---|
| vendor | text | Product vendor ID | |
| product_id | text | Specific product ID (optional) | |
| tracking_id | text | Custom tracking identifier (TID) |
| Name | Type | Description |
|---|---|---|
| hop_link | string | Generated affiliate tracking link |
| hop_link_short | string | Shortened version of the HopLink |
| tracking_info | object | Link tracking information |
Retrieve affiliate performance statistics
| Field | Type | Default | Description |
|---|---|---|---|
| start_date | text | Start date for statistics (YYYY-MM-DD format) | |
| end_date | text | End date for statistics (YYYY-MM-DD format) | |
| product_id | text | Filter by specific product ID | |
| group_by | select | day | How to group the statistics |
| Name | Type | Description |
|---|---|---|
| statistics | array | Performance statistics data |
| summary | object | Summary statistics |
| total_hops | number | Total number of link clicks |
| total_sales | number | Total number of sales |
| conversion_rate | number | Hop to sale conversion rate |
| total_commission | number | Total commission earned |
Retrieve payment history and details
| Field | Type | Default | Description |
|---|---|---|---|
| start_date | text | Start date for payments (YYYY-MM-DD format) | |
| end_date | text | End date for payments (YYYY-MM-DD format) | |
| payment_method | select | Filter by payment method |
| Name | Type | Description |
|---|---|---|
| payments | array | Array of payment data |
| total_payments | number | Total number of payments |
| total_amount | number | Total payment amount |
Retrieve affiliate account information and settings
| Name | Type | Description |
|---|---|---|
| account_info | object | Account information and settings |
| nickname | string | Account nickname |
| account_status | string | Current account status |
| current_balance | number | Current account balance |
Online meeting and webinar platform with recording and analytics features
Notes:
Create a new ClickMeeting conference or webinar
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | The name of the conference/webinar | |
| room_type | select | meeting | |
| permanent_room | checkbox | Create a permanent room (no fixed date/time) | |
| access_type | select | 1 | |
| lobby_enabled | checkbox | Enable lobby/waiting room | |
| starts | text | Start time in UTC (YYYY-MM-DD HH:MM:SS). Leave empty for permanent room. | |
| duration | number | 60 | Conference duration in minutes |
| Name | Type | Description |
|---|---|---|
| room_id | string | |
| room_url | string | |
| phone_pin | string | |
| success | boolean |
Retrieve details of a specific conference
| Field | Type | Default | Description |
|---|---|---|---|
| room_id | text | The unique ID of the conference room |
| Name | Type | Description |
|---|---|---|
| name | string | |
| room_type | string | |
| starts | string | |
| duration | number | |
| room_url | string | |
| phone_pin | string | |
| status | string | |
| success | boolean |
Register an attendee for a conference
| Field | Type | Default | Description |
|---|---|---|---|
| room_id | text | The unique ID of the conference room | |
| text | Attendee email address | ||
| firstname | text | Attendee first name | |
| lastname | text | Attendee last name | |
| company | text | Attendee company name | |
| phone | text | Attendee phone number |
| Name | Type | Description |
|---|---|---|
| registration_id | string | |
| access_url | string | |
| success | boolean |
Retrieve list of registrations for a conference
| Field | Type | Default | Description |
|---|---|---|---|
| room_id | text | The unique ID of the conference room | |
| status | select | active |
| Name | Type | Description |
|---|---|---|
| registrations | array | |
| total_count | number | |
| success | boolean |
Retrieve list of attendees for a completed session
| Field | Type | Default | Description |
|---|---|---|---|
| room_id | text | The unique ID of the conference room | |
| session_id | text | The unique ID of the session |
| Name | Type | Description |
|---|---|---|
| attendees | array | |
| total_count | number | |
| success | boolean |
Retrieve list of conferences
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | active |
| Name | Type | Description |
|---|---|---|
| conferences | array | |
| total_count | number | |
| success | boolean |
Retrieve list of sessions for a conference
| Field | Type | Default | Description |
|---|---|---|---|
| room_id | text | The unique ID of the conference room |
| Name | Type | Description |
|---|---|---|
| sessions | array | |
| total_count | number | |
| success | boolean |
Multi-channel communication platform supporting SMS, email, voice, and postal automation
Notes:
Send SMS messages via ClickSend
| Field | Type | Default | Description |
|---|---|---|---|
| message | textarea | SMS message content | |
| to | text | Recipient phone number with country code (e.g., +1234567890) | |
| from | text | Custom sender ID (optional) | |
| schedule | text | Schedule message (Unix timestamp, optional) |
| Name | Type | Description |
|---|---|---|
| message_id | string | Unique identifier for the sent message |
| status | string | Message sending status |
| cost | number | Cost of sending the message |
| success | boolean | Whether the SMS was sent successfully |
Send emails via ClickSend
| Field | Type | Default | Description |
|---|---|---|---|
| to_email | text | Recipient email address | |
| to_name | text | Recipient name | |
| from_email | text | Sender email address | |
| from_name | text | Sender name | |
| subject | text | Email subject line | |
| body | textarea | Email message content (HTML supported) |
| Name | Type | Description |
|---|---|---|
| message_id | string | Unique identifier for the sent email |
| status | string | Email sending status |
| success | boolean | Whether the email was sent successfully |
Send voice messages via ClickSend
| Field | Type | Default | Description |
|---|---|---|---|
| to | text | Recipient phone number with country code | |
| message | textarea | Text to be converted to speech | |
| voice | select | female | Voice type for text-to-speech |
| lang | select | en-us | Language for text-to-speech |
| Name | Type | Description |
|---|---|---|
| message_id | string | Unique identifier for the voice message |
| status | string | Voice message status |
| success | boolean | Whether the voice message was sent successfully |
Check your ClickSend account balance
| Name | Type | Description |
|---|---|---|
| balance | number | Current account balance |
| currency | string | Account currency |
| success | boolean | Whether the balance check was successful |
All-in-one productivity platform combining project management, docs, and team collaboration
Notes:
Create a new task in ClickUp
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | The ID of the list to create the task in | |
| name | text | The name of the task to create | |
| description | textarea | Detailed description of the task | |
| assignees | text | Comma-separated list of user IDs to assign | |
| priority | select | Priority level of the task | |
| status | text | Status name for the task | |
| due_date | text | Due date in UNIX timestamp (milliseconds) |
| Name | Type | Description |
|---|---|---|
| task_id | string | The unique ID of the created task |
| task_url | string | The URL to view the task in ClickUp |
| task_name | string | The name of the created task |
Update an existing task in ClickUp
| Field | Type | Default | Description |
|---|---|---|---|
| task_id | text | The ID of the task to update | |
| name | text | New name for the task | |
| description | textarea | Updated description of the task | |
| status | text | New status for the task | |
| priority | select | New priority level of the task |
| Name | Type | Description |
|---|---|---|
| task_id | string | The unique ID of the updated task |
| success | boolean | Whether the update was successful |
Retrieve details of a specific task
| Field | Type | Default | Description |
|---|---|---|---|
| task_id | text | The ID of the task to retrieve |
| Name | Type | Description |
|---|---|---|
| task_id | string | |
| name | string | |
| description | string | |
| status | object | |
| priority | object | |
| assignees | array | |
| url | string | |
| date_created | string | |
| date_updated | string | |
| due_date | string |
List tasks from a ClickUp list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | ID of list to get tasks from | |
| archived | select | false | Whether to include archived tasks |
| page | number | 0 | Page number for pagination |
| Name | Type | Description |
|---|---|---|
| tasks | array | Array of task objects |
| count | number | Number of tasks returned |
Add a comment to a task
| Field | Type | Default | Description |
|---|---|---|---|
| task_id | text | The ID of the task to comment on | |
| comment_text | textarea | The content of the comment |
| Name | Type | Description |
|---|---|---|
| comment_id | string | The unique ID of the created comment |
| comment_text | string | The content of the comment |
| date_created | string | When the comment was created |
Free time tracking software - Track work hours across projects and teams
Notes:
Get information about the current user
| Name | Type | Description |
|---|---|---|
| user_id | string | |
| name | string | |
| string | ||
| default_workspace | string |
Start a new time tracking entry
| Field | Type | Default | Description |
|---|---|---|---|
| description | text | What are you working on? | |
| project_id | text | Optional project ID to assign this entry to | |
| task_id | text | Optional task ID within the project | |
| tags | text | Optional tags for this entry |
| Name | Type | Description |
|---|---|---|
| entry_id | string | |
| description | string | |
| started_at | string |
Stop the currently running time entry
| Field | Type | Default | Description |
|---|---|---|---|
| end_time | text | Custom end time (default: now) |
| Name | Type | Description |
|---|---|---|
| entry_id | string | |
| description | string | |
| duration | string | |
| stopped_at | string |
Get time entries for a specific date range
| Field | Type | Default | Description |
|---|---|---|---|
| start_date | text | today | Start date for the range |
| end_date | text | today | End date for the range |
| project_id | text | Filter by specific project |
| Name | Type | Description |
|---|---|---|
| entries | array | |
| total_duration | string | |
| entry_count | number |
Get all projects from your workspace
| Field | Type | Default | Description |
|---|---|---|---|
| archived | checkbox | Include archived projects |
| Name | Type | Description |
|---|---|---|
| projects | array | |
| project_count | number |
Create a new project in your workspace
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the new project | |
| color | text | #2196F3 | Project color in hex format |
| is_public | checkbox | 1 | Make this project public to workspace members |
| Name | Type | Description |
|---|---|---|
| project_id | string | |
| name | string | |
| color | string |
Get tasks from a specific project
| Field | Type | Default | Description |
|---|---|---|---|
| project_id | text | Project ID to get tasks from | |
| is_active | checkbox | 1 | Show only active tasks |
| Name | Type | Description |
|---|---|---|
| tasks | array | |
| task_count | number |
Get time tracking summary report
| Field | Type | Default | Description |
|---|---|---|---|
| start_date | text | today | Start date for the report |
| end_date | text | today | End date for the report |
| group_by | select | PROJECT | How to group the report data |
| Name | Type | Description |
|---|---|---|
| total_time | number | |
| groups | array |
Inside sales CRM with built-in calling, email tracking, and sales automation
Notes:
Retrieve leads from Close CRM
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Maximum number of leads to retrieve (1-100) |
| query | text | Search term to filter leads | |
| status_id | text | Filter by lead status ID |
| Name | Type | Description |
|---|---|---|
| leads | array | |
| total_count | number | |
| has_more | boolean |
Create a new lead in Close CRM
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the lead (company/organization) | |
| url | url | Website URL of the lead | |
| description | textarea | Description or notes about the lead | |
| status_id | text | Lead status ID (leave empty for default) |
| Name | Type | Description |
|---|---|---|
| lead_id | string | |
| name | string | |
| url | string | |
| created_at | string |
Update an existing lead in Close CRM
| Field | Type | Default | Description |
|---|---|---|---|
| lead_id | text | ID of the lead to update | |
| name | text | Name of the lead | |
| url | url | Website URL of the lead | |
| description | textarea | Description or notes about the lead | |
| status_id | text | Lead status ID |
| Name | Type | Description |
|---|---|---|
| lead_id | string | |
| name | string | |
| url | string | |
| updated_at | string |
Retrieve contacts from Close CRM
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Maximum number of contacts to retrieve (1-100) |
| lead_id | text | Filter contacts by lead ID | |
| query | text | Search term to filter contacts |
| Name | Type | Description |
|---|---|---|
| contacts | array | |
| total_count | number | |
| has_more | boolean |
Create a new contact in Close CRM
| Field | Type | Default | Description |
|---|---|---|---|
| lead_id | text | ID of the lead this contact belongs to | |
| name | text | Full name of the contact | |
| title | text | Job title of the contact | |
| Email address of the contact | |||
| phone | text | Phone number of the contact |
| Name | Type | Description |
|---|---|---|
| contact_id | string | |
| name | string | |
| string | ||
| phone | string | |
| created_at | string |
Retrieve opportunities from Close CRM
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Maximum number of opportunities to retrieve (1-100) |
| lead_id | text | Filter opportunities by lead ID | |
| status_id | text | Filter by opportunity status ID |
| Name | Type | Description |
|---|---|---|
| opportunities | array | |
| total_count | number | |
| has_more | boolean |
Create a new opportunity in Close CRM
| Field | Type | Default | Description |
|---|---|---|---|
| lead_id | text | ID of the lead this opportunity belongs to | |
| status_id | text | Opportunity status ID | |
| value | number | Monetary value of the opportunity | |
| value_currency | text | USD | Currency code (e.g., USD, EUR) |
| expected_date | date | Expected close date (YYYY-MM-DD) | |
| note | textarea | Notes about the opportunity |
| Name | Type | Description |
|---|---|---|
| opportunity_id | string | |
| value | number | |
| value_currency | string | |
| expected_date | string | |
| created_at | string |
Retrieve tasks from Close CRM
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Maximum number of tasks to retrieve (1-100) |
| lead_id | text | Filter tasks by lead ID | |
| assigned_to | text | Filter tasks by assigned user ID |
| Name | Type | Description |
|---|---|---|
| tasks | array | |
| total_count | number | |
| has_more | boolean |
Create a new task in Close CRM
| Field | Type | Default | Description |
|---|---|---|---|
| text | text | Description of the task | |
| lead_id | text | ID of the lead this task is related to | |
| assigned_to | text | User ID to assign the task to | |
| due_date | datetime-local | Due date and time for the task | |
| is_complete | checkbox | Mark the task as complete when created |
| Name | Type | Description |
|---|---|---|
| task_id | string | |
| text | string | |
| due_date | string | |
| is_complete | boolean | |
| created_at | string |
Send an email through Close CRM
| Field | Type | Default | Description |
|---|---|---|---|
| lead_id | text | ID of the lead this email is related to | |
| to | text | Recipient email address | |
| subject | text | Email subject line | |
| body_text | textarea | Email body content (plain text or HTML) | |
| sender | text | Sender email address (leave empty to use default) |
| Name | Type | Description |
|---|---|---|
| email_id | string | |
| status | string | |
| subject | string | |
| created_at | string |
Log a phone call in Close CRM
| Field | Type | Default | Description |
|---|---|---|---|
| lead_id | text | ID of the lead this call is related to | |
| direction | select | Direction of the call | |
| status | select | Status of the call | |
| phone | text | Phone number called/received from | |
| note | textarea | Notes about the call | |
| duration | number | Call duration in seconds |
| Name | Type | Description |
|---|---|---|
| call_id | string | |
| direction | string | |
| status | string | |
| duration | number | |
| created_at | string |
Search across all records in Close CRM
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Search term to find across all records | |
| type | select | Limit search to specific record type | |
| limit | number | 20 | Maximum number of results to return |
| Name | Type | Description |
|---|---|---|
| results | array | |
| total_count | number |
Extract CNN news articles with time-based filtering, search discovery, and comprehensive metadata
Notes:
Extract news articles and content from CNN URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | CNN article URLs to scrape |
| Name | Type | Description |
|---|---|---|
| articles | array | News articles with content, metadata, and publication info |
| count | number | Number of articles scraped |
Find CNN articles by publication date and time range
| Field | Type | Default | Description |
|---|---|---|---|
| startDate | text | Start date in YYYY-MM-DD format | |
| endDate | text | End date in YYYY-MM-DD format | |
| startTime | text | Start time in HH:MM format (24-hour, e.g., "15:00") | |
| endTime | text | End time in HH:MM format (24-hour, e.g., "17:00") |
| Name | Type | Description |
|---|---|---|
| articles | array | Articles published within the specified date and time range |
| count | number | Number of articles found |
Extract articles from CNN search result URLs
| Field | Type | Default | Description |
|---|---|---|---|
| searchUrls | textarea | CNN search result URLs |
| Name | Type | Description |
|---|---|---|
| articles | array | Articles from search results |
| count | number | Number of articles found |
Document database hybrid that combines the flexibility of documents with the power of databases for content management
Notes:
Retrieve all Coda documents you have access to
| Field | Type | Default | Description |
|---|---|---|---|
| is_owner | select | all | Filter documents by ownership |
| limit | number | 50 | Maximum number of documents to retrieve |
| Name | Type | Description |
|---|---|---|
| docs | array | Array of Coda documents |
| totalDocs | number | Number of documents returned |
Retrieve details of a specific Coda document
| Field | Type | Default | Description |
|---|---|---|---|
| doc_id | text | Coda document ID or URL |
| Name | Type | Description |
|---|---|---|
| doc | object | Complete document information |
| name | string | Name of the document |
| type | string | Type of the document |
| href | string | URL to the document |
| browserLink | string | Direct browser link to the document |
| createdAt | string | When the document was created |
| updatedAt | string | When the document was last updated |
Retrieve tables from a Coda document
| Field | Type | Default | Description |
|---|---|---|---|
| doc_id | text | Coda document ID | |
| limit | number | 50 | Maximum number of tables to retrieve |
| Name | Type | Description |
|---|---|---|
| tables | array | Array of tables in the document |
| totalTables | number | Number of tables returned |
Retrieve columns from a specific table
| Field | Type | Default | Description |
|---|---|---|---|
| doc_id | text | Coda document ID | |
| table_id | text | Table ID or name |
| Name | Type | Description |
|---|---|---|
| columns | array | Array of table columns |
| totalColumns | number | Number of columns in the table |
Retrieve rows from a Coda table
| Field | Type | Default | Description |
|---|---|---|---|
| doc_id | text | Coda document ID | |
| table_id | text | Table ID or name | |
| query | text | Query to filter rows (e.g., column="value") | |
| limit | number | 100 | Maximum number of rows to retrieve |
| sort_by | text | Column to sort by | |
| sort_direction | select | ascending | Sort direction |
| Name | Type | Description |
|---|---|---|
| rows | array | Array of table rows with data |
| totalRows | number | Number of rows returned |
| nextPageToken | string | Token for pagination |
Insert a new row into a Coda table
| Field | Type | Default | Description |
|---|---|---|---|
| doc_id | text | Coda document ID | |
| table_id | text | Table ID or name | |
| row_data | code_editor | Row data as JSON object with column names as keys | |
| key_columns | text | Comma-separated list of columns to use as key (for upsert) |
| Name | Type | Description |
|---|---|---|
| rowId | string | ID of the inserted row |
| row | object | Complete inserted row data |
| success | boolean | Whether the insertion was successful |
Update an existing row in a Coda table
| Field | Type | Default | Description |
|---|---|---|---|
| doc_id | text | Coda document ID | |
| table_id | text | Table ID or name | |
| row_id | text | ID of the row to update | |
| row_data | code_editor | Updated row data as JSON object |
| Name | Type | Description |
|---|---|---|
| rowId | string | ID of the updated row |
| row | object | Complete updated row data |
| success | boolean | Whether the update was successful |
Delete a row from a Coda table
| Field | Type | Default | Description |
|---|---|---|---|
| doc_id | text | Coda document ID | |
| table_id | text | Table ID or name | |
| row_id | text | ID of the row to delete |
| Name | Type | Description |
|---|---|---|
| deletedRowId | string | ID of the deleted row |
| success | boolean | Whether the deletion was successful |
Retrieve pages from a Coda document
| Field | Type | Default | Description |
|---|---|---|---|
| doc_id | text | Coda document ID | |
| limit | number | 50 | Maximum number of pages to retrieve |
| Name | Type | Description |
|---|---|---|
| pages | array | Array of document pages |
| totalPages | number | Number of pages returned |
Retrieve formulas from a Coda document
| Field | Type | Default | Description |
|---|---|---|---|
| doc_id | text | Coda document ID | |
| limit | number | 50 | Maximum number of formulas to retrieve |
| Name | Type | Description |
|---|---|---|
| formulas | array | Array of document formulas |
| totalFormulas | number | Number of formulas returned |
Execute a specific formula in a Coda document
| Field | Type | Default | Description |
|---|---|---|---|
| doc_id | text | Coda document ID | |
| formula_id | text | ID of the formula to execute |
| Name | Type | Description |
|---|---|---|
| result | object | Result of the formula execution |
| value | string | Computed value of the formula |
| success | boolean | Whether the execution was successful |
Retrieve controls (buttons, sliders, etc.) from a document
| Field | Type | Default | Description |
|---|---|---|---|
| doc_id | text | Coda document ID | |
| limit | number | 50 | Maximum number of controls to retrieve |
| Name | Type | Description |
|---|---|---|
| controls | array | Array of document controls |
| totalControls | number | Number of controls returned |
Cryptocurrency exchange platform for buying, selling, and storing crypto
Notes:
Get account balances for all currencies
| Name | Type | Description |
|---|---|---|
| accounts | array | Array of account balances by currency |
Get current price for a cryptocurrency
| Field | Type | Default | Description |
|---|---|---|---|
| currency_pair | text | BTC-USD | Trading pair (e.g., BTC-USD, ETH-EUR) |
| Name | Type | Description |
|---|---|---|
| price | number | |
| currency_pair | string | |
| timestamp | string | |
| price_data | object |
Place a buy order for cryptocurrency
| Field | Type | Default | Description |
|---|---|---|---|
| currency_pair | text | Trading pair (e.g., BTC-USD) | |
| amount | number | Amount of cryptocurrency to buy | |
| price | number | Limit price (leave empty for market order) |
| Name | Type | Description |
|---|---|---|
| order_id | string | |
| status | string | |
| filled_size | number | |
| executed_value | number | |
| order_data | object |
Place a sell order for cryptocurrency
| Field | Type | Default | Description |
|---|---|---|---|
| currency_pair | text | Trading pair (e.g., BTC-USD) | |
| amount | number | Amount of cryptocurrency to sell | |
| price | number | Limit price (leave empty for market order) |
| Name | Type | Description |
|---|---|---|
| order_id | string | |
| status | string | |
| filled_size | number | |
| executed_value | number | |
| order_data | object |
Check the status of an order
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | Coinbase order ID |
| Name | Type | Description |
|---|---|---|
| order_id | string | |
| status | string | |
| side | string | |
| size | number | |
| filled_size | number | |
| order_data | object |
Cancel an open order
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | Coinbase order ID to cancel |
| Name | Type | Description |
|---|---|---|
| order_id | string | |
| status | string |
Platform-compliant LinkedIn automation. Follow profiles, send connection requests, messages, and engage with posts safely.
Notes:
Follow or unfollow a LinkedIn profile using ConnectSafely
| Field | Type | Default | Description |
|---|---|---|---|
| profile_id | text | LinkedIn profile URL (e.g., https://linkedin.com/in/username) or profile ID | |
| action | select | follow | Follow or unfollow the profile |
| account_id | text | ConnectSafely Account ID. Leave empty to use default from integration settings. |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| action | string | |
| profile_id | string | |
| account_id | string | |
| message | string | |
| response | object |
Send a LinkedIn connection request with optional personalized message
| Field | Type | Default | Description |
|---|---|---|---|
| profile_id | text | LinkedIn profile URL or profile ID to connect with | |
| message | textarea | Personalized message to include with the connection request (max 300 characters) | |
| account_id | text | ConnectSafely Account ID. Leave empty to use default. |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| profile_id | string | |
| account_id | string | |
| message_sent | boolean | |
| api_message | string | |
| response | object |
Send a direct message to a LinkedIn profile
| Field | Type | Default | Description |
|---|---|---|---|
| profile_id | text | LinkedIn profile URL or ID to message | |
| message_text | textarea | The message content to send | |
| subject | text | Subject line for InMail messages | |
| account_id | text | ConnectSafely Account ID. Leave empty to use default. |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| profile_id | string | |
| account_id | string | |
| message_sent | boolean | |
| api_message | string | |
| response | object |
Check the connection status with a LinkedIn profile
| Field | Type | Default | Description |
|---|---|---|---|
| profile_id | text | LinkedIn profile URL or ID to check | |
| account_id | text | ConnectSafely Account ID. Leave empty to use default. |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| profile_id | string | |
| account_id | string | |
| is_connected | boolean | |
| is_following | boolean | |
| connection_degree | string | |
| relationship_status | string | |
| response | object |
Retrieve detailed information about a LinkedIn profile
| Field | Type | Default | Description |
|---|---|---|---|
| profile_id | text | LinkedIn profile URL or profile ID | |
| include_contact | checkbox | Include contact information if available | |
| include_geo | checkbox | Include geolocation data |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| profile_id | string | |
| name | string | |
| first_name | string | |
| last_name | string | |
| headline | string | |
| location | string | |
| industry | string | |
| summary | string | |
| profile_url | string | |
| profile_picture | string | |
| company | string | |
| job_title | string | |
| connections_count | number | |
| experience | array | |
| education | array | |
| skills | array | |
| contact | object | |
| geo | object | |
| raw_response | object |
Add a reaction to a LinkedIn post
| Field | Type | Default | Description |
|---|---|---|---|
| post_id | text | LinkedIn post URL or post ID | |
| reaction_type | select | like | Type of reaction to add |
| account_id | text | ConnectSafely Account ID. Leave empty to use default. |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| post_id | string | |
| account_id | string | |
| reaction_type | string | |
| api_message | string | |
| response | object |
Post a comment on a LinkedIn post
| Field | Type | Default | Description |
|---|---|---|---|
| post_id | text | LinkedIn post URL or post ID | |
| comment_text | textarea | The comment text to post | |
| account_id | text | ConnectSafely Account ID. Leave empty to use default. |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| post_id | string | |
| account_id | string | |
| comment_posted | boolean | |
| comment_id | string | |
| api_message | string | |
| response | object |
Email marketing, contact management, and event marketing platform for small businesses
Notes:
Retrieve contacts from your Constant Contact account
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of contacts to retrieve (1-500) |
| status | select | all | Filter contacts by status |
| Name | Type | Description |
|---|---|---|
| contacts | array | Array of contact objects |
| total_count | number | Total number of contacts matching criteria |
Create a new contact in Constant Contact
| Field | Type | Default | Description |
|---|---|---|---|
| text | Contact email address | ||
| first_name | text | Contact first name | |
| last_name | text | Contact last name | |
| lists | textarea | [] | Array of list IDs to add contact to (e.g. ["list_id_1", "list_id_2"]) |
| Name | Type | Description |
|---|---|---|
| contact_id | string | ID of the created contact |
| string | Email address of the created contact |
Update an existing contact in Constant Contact
| Field | Type | Default | Description |
|---|---|---|---|
| contact_id | text | ID of the contact to update | |
| text | New email address | ||
| first_name | text | Contact first name | |
| last_name | text | Contact last name |
| Name | Type | Description |
|---|---|---|
| contact_id | string | ID of the updated contact |
| updated | boolean | Whether the contact was successfully updated |
Retrieve all contact lists from your account
| Field | Type | Default | Description |
|---|---|---|---|
| include_count | checkbox | 1 | Include the number of contacts in each list |
| Name | Type | Description |
|---|---|---|
| lists | array | Array of contact list objects |
Create a new contact list
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name for the new contact list | |
| description | textarea | Optional description for the list |
| Name | Type | Description |
|---|---|---|
| list_id | string | ID of the created list |
| name | string | Name of the created list |
Retrieve email campaigns from your account
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | all | Filter campaigns by status |
| limit | number | 50 | Maximum number of campaigns to retrieve |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of email campaign objects |
Email finder and contact search platform optimized for recruitment and sales with LinkedIn integration and high accuracy rates
Notes:
Find contact information using LinkedIn profile URL
| Field | Type | Default | Description |
|---|---|---|---|
| linkedin_url | text | LinkedIn profile URL to search for contact information | |
| include_personal_email | checkbox | 1 | Attempt to find personal email address |
| include_work_email | checkbox | 1 | Attempt to find work email address |
| Name | Type | Description |
|---|---|---|
| contact | object | Complete contact profile with found information |
| emails | array | Found email addresses with confidence scores |
| phone_numbers | array | Found phone numbers with types |
| social_profiles | array | Social media and professional profiles |
| confidence_score | number | Overall confidence score for the match (0-100) |
Find contact information using name and company details
| Field | Type | Default | Description |
|---|---|---|---|
| first_name | text | Person's first name | |
| last_name | text | Person's last name | |
| company_name | text | Company name where person works | |
| company_domain | text | Company domain (e.g., google.com) | |
| job_title | text | Person's job title for better matching | |
| location | text | Geographic location (city, state, country) |
| Name | Type | Description |
|---|---|---|
| contacts | array | Array of contacts matching the search criteria |
| total_results | number | Total number of contacts found |
| search_query | object | The search parameters that were used |
Verify email address validity and deliverability
| Field | Type | Default | Description |
|---|---|---|---|
| text | Email address to verify |
| Name | Type | Description |
|---|---|---|
| string | The email address that was verified | |
| is_valid | boolean | Whether the email address is valid |
| is_deliverable | boolean | Whether the email is deliverable |
| verification_status | string | Email verification status: valid, invalid, risky, unknown |
| confidence | number | Verification confidence score (0-100) |
| risk_level | string | Email risk assessment: low, medium, high |
Search for multiple contacts in a single batch request
| Field | Type | Default | Description |
|---|---|---|---|
| search_queries | textarea | [{"first_name": "John", "last_name": "Doe", "company_name": "Acme Corp"}, {"linkedin_url": "https://linkedin.com/in/jane-smith"}] | Array of contact search objects with name and company information |
| include_emails | checkbox | 1 | Attempt to find email addresses for contacts |
| include_phone_numbers | checkbox | Attempt to find phone numbers for contacts |
| Name | Type | Description |
|---|---|---|
| results | array | Array of contact search results |
| total_searches | number | Number of searches performed |
| successful_matches | number | Number of successful contact matches |
| credits_used | number | Number of API credits consumed |
Find contacts at a specific company with filtering options
| Field | Type | Default | Description |
|---|---|---|---|
| company_name | text | Company name to search within | |
| company_domain | text | Company domain to search within | |
| job_titles | textarea | [] | Array of job titles to filter by (e.g., ["CEO", "CTO", "VP Sales"]) |
| departments | textarea | [] | Array of departments to filter by (e.g., ["Sales", "Marketing", "Engineering"]) |
| seniority_levels | textarea | [] | Array of seniority levels (e.g., ["C-Level", "VP", "Director", "Manager"]) |
| limit | number | 25 | Maximum number of contacts to return (default: 25, max: 100) |
| Name | Type | Description |
|---|---|---|
| contacts | array | Array of contacts found at the company |
| company_info | object | Company details and metadata |
| total_results | number | Total number of contacts found |
| search_filters | object | The filters that were applied |
Get current account information and credit usage statistics
| Name | Type | Description |
|---|---|---|
| account_email | string | Account email address |
| plan_name | string | Current subscription plan |
| credits_remaining | number | Number of API credits remaining |
| credits_used | number | Number of credits used this period |
| monthly_limit | number | Monthly credit limit |
| reset_date | string | Date when credits reset |
Headless CMS platform for managing structured content, media assets, and content delivery across multiple channels
Notes:
Retrieve content entries from Contentful
| Field | Type | Default | Description |
|---|---|---|---|
| content_type | text | Filter by specific content type ID | |
| limit | number | 100 | Maximum number of entries to retrieve (max 1000) |
| skip | number | 0 | Number of entries to skip for pagination |
| order | select | -sys.createdAt | Sort order for entries |
| query | text | Full-text search query |
| Name | Type | Description |
|---|---|---|
| entries | array | Array of content entries |
| total | number | Total number of entries matching criteria |
| limit | number | Limit used in the request |
| skip | number | Skip used in the request |
Retrieve a specific entry by ID
| Field | Type | Default | Description |
|---|---|---|---|
| entry_id | text | ID of the entry to retrieve | |
| include_linked | select | 1 | Number of levels of linked entries to include |
| Name | Type | Description |
|---|---|---|
| entry | object | The requested entry with all fields |
| fields | object | Entry fields data |
| contentType | string | Content type ID of the entry |
| createdAt | string | Entry creation timestamp |
| updatedAt | string | Entry last update timestamp |
Create a new content entry in Contentful
| Field | Type | Default | Description |
|---|---|---|---|
| content_type | text | ID of the content type for the new entry | |
| fields | code_editor | Entry fields data as JSON object | |
| publish | select | false | Whether to publish the entry immediately |
| Name | Type | Description |
|---|---|---|
| entryId | string | ID of the created entry |
| entry | object | The complete created entry |
| published | boolean | Whether the entry was published |
| version | number | Entry version number |
Update an existing content entry
| Field | Type | Default | Description |
|---|---|---|---|
| entry_id | text | ID of the entry to update | |
| fields | code_editor | Updated fields data as JSON object | |
| publish | select | false | Whether to publish the changes immediately |
| Name | Type | Description |
|---|---|---|
| entryId | string | ID of the updated entry |
| entry | object | The complete updated entry |
| published | boolean | Whether the entry was published |
| version | number | New entry version number |
Retrieve media assets from Contentful
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 100 | Maximum number of assets to retrieve |
| skip | number | 0 | Number of assets to skip for pagination |
| mimetype_group | select | Filter by media type |
| Name | Type | Description |
|---|---|---|
| assets | array | Array of media assets |
| total | number | Total number of assets |
Upload a new media asset to Contentful
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | Title for the asset | |
| description | textarea | Description of the asset | |
| file_url | text | URL of the file to upload | |
| filename | text | Name for the uploaded file | |
| content_type | text | MIME type of the file (e.g., image/jpeg, video/mp4) | |
| publish | select | false | Whether to publish the asset immediately |
| Name | Type | Description |
|---|---|---|
| assetId | string | ID of the uploaded asset |
| assetUrl | string | Public URL of the uploaded asset |
| published | boolean | Whether the asset was published |
Retrieve all content types from the space
| Name | Type | Description |
|---|---|---|
| contentTypes | array | Array of content types with field definitions |
| total | number | Total number of content types |
Creator-focused email marketing automation platform with landing pages and sequences
Notes:
Add or update a subscriber in ConvertKit
| Field | Type | Default | Description |
|---|---|---|---|
| text | Subscriber email address | ||
| firstName | text | Subscriber first name | |
| formId | text | ConvertKit form ID to subscribe to (optional) | |
| tags | text | Comma-separated list of tags to add | |
| customFields | textarea | {} | Additional subscriber fields as JSON object |
| Name | Type | Description |
|---|---|---|
| subscriberId | number | The ConvertKit subscriber ID |
| status | string | Subscription status |
Add a subscriber to a ConvertKit email sequence
| Field | Type | Default | Description |
|---|---|---|---|
| sequenceId | text | The ID of the email sequence | |
| text | Subscriber email address | ||
| firstName | text | Subscriber first name |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the subscriber was added successfully |
| message | string | Success or error message |
Add a tag to a subscriber
| Field | Type | Default | Description |
|---|---|---|---|
| tagId | text | The ID of the tag to add | |
| text | Subscriber email address |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the tag was added successfully |
| message | string | Success or error message |
Remove a tag from a subscriber
| Field | Type | Default | Description |
|---|---|---|---|
| tagId | text | The ID of the tag to remove | |
| text | Subscriber email address |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the tag was removed successfully |
| message | string | Success or error message |
Retrieve subscriber information by email or ID
| Field | Type | Default | Description |
|---|---|---|---|
| lookupField | select | Field to use for subscriber lookup | |
| lookupValue | text | The email address or subscriber ID to search for |
| Name | Type | Description |
|---|---|---|
| subscriber | object | Complete subscriber information from ConvertKit |
| found | boolean | Whether the subscriber was found |
Retrieve all ConvertKit forms
| Name | Type | Description |
|---|---|---|
| forms | array | Array of ConvertKit forms |
| count | number | Number of forms returned |
Retrieve all ConvertKit sequences
| Name | Type | Description |
|---|---|---|
| sequences | array | Array of ConvertKit sequences |
| count | number | Number of sequences returned |
Retrieve all ConvertKit tags
| Name | Type | Description |
|---|---|---|
| tags | array | Array of ConvertKit tags |
| count | number | Number of tags returned |
Extract Microsoft Copilot responses and citations with prompt-based queries and country localization
Notes:
Query Microsoft Copilot with prompts and extract responses
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | The prompt to send to Copilot (max 8,000 characters). Each prompt is a separate query. | |
| index | number | 1 | Index number for tracking this query |
| country | text | Optional country code for localized responses |
| Name | Type | Description |
|---|---|---|
| response | object | Copilot response with content and citations |
| count | number | Number of responses (typically 1) |
CRM built for Google Workspace with integrated project management and sales automation
Notes:
Retrieve leads from Copper CRM
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Maximum number of leads to retrieve (1-200) |
| status | select | Filter by lead status |
| Name | Type | Description |
|---|---|---|
| leads | array | |
| total_count | number |
Create a new lead in Copper CRM
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the lead | |
| Email address of the lead | |||
| company_name | text | Company name of the lead | |
| phone | text | Phone number of the lead |
| Name | Type | Description |
|---|---|---|
| lead_id | number | |
| name | string | |
| string | ||
| created_at | string |
Update an existing lead in Copper CRM
| Field | Type | Default | Description |
|---|---|---|---|
| lead_id | number | ID of the lead to update | |
| name | text | Name of the lead | |
| Email address of the lead | |||
| company_name | text | Company name of the lead | |
| phone | text | Phone number of the lead |
| Name | Type | Description |
|---|---|---|
| lead_id | number | |
| name | string | |
| string | ||
| updated_at | string |
Retrieve companies from Copper CRM
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Maximum number of companies to retrieve (1-200) |
| name_filter | text | Filter companies by name (partial match) |
| Name | Type | Description |
|---|---|---|
| companies | array | |
| total_count | number |
Create a new company in Copper CRM
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the company | |
| website | url | Company website URL | |
| phone | text | Company phone number | |
| address | textarea | Company address |
| Name | Type | Description |
|---|---|---|
| company_id | number | |
| name | string | |
| website | string | |
| created_at | string |
Retrieve people (contacts) from Copper CRM
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Maximum number of people to retrieve (1-200) |
| company_id | number | Filter by company ID |
| Name | Type | Description |
|---|---|---|
| people | array | |
| total_count | number |
Create a new person (contact) in Copper CRM
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Full name of the person | |
| Email address of the person | |||
| phone | text | Phone number of the person | |
| company_id | number | Associate with a company | |
| title | text | Job title of the person |
| Name | Type | Description |
|---|---|---|
| person_id | number | |
| name | string | |
| string | ||
| created_at | string |
Retrieve opportunities (deals) from Copper CRM
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Maximum number of opportunities to retrieve (1-200) |
| status | select | Filter by opportunity status |
| Name | Type | Description |
|---|---|---|
| opportunities | array | |
| total_count | number |
Create a new opportunity (deal) in Copper CRM
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the opportunity | |
| monetary_value | number | Monetary value of the opportunity | |
| company_id | number | Associate with a company | |
| primary_contact_id | number | Primary contact person ID | |
| close_date | date | Expected close date (YYYY-MM-DD) |
| Name | Type | Description |
|---|---|---|
| opportunity_id | number | |
| name | string | |
| monetary_value | number | |
| created_at | string |
Retrieve tasks from Copper CRM
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Maximum number of tasks to retrieve (1-200) |
| status | select | Filter by task status |
| Name | Type | Description |
|---|---|---|
| tasks | array | |
| total_count | number |
Create a new task in Copper CRM
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the task | |
| details | textarea | Task details and description | |
| due_date | date | Due date for the task (YYYY-MM-DD) | |
| assignee_id | number | User ID to assign the task to | |
| related_resource_id | number | ID of related person, company, or opportunity | |
| related_resource_type | select | Type of related resource |
| Name | Type | Description |
|---|---|---|
| task_id | number | |
| name | string | |
| due_date | string | |
| created_at | string |
Search across all record types in Copper CRM
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Search term to find across all records | |
| record_type | select | Limit search to specific record type | |
| limit | number | 20 | Maximum number of results to return |
| Name | Type | Description |
|---|---|---|
| results | array | |
| total_count | number |
Website optimization and click tracking with heatmaps, scroll maps, and A/B testing analytics
Notes:
Retrieve list of snapshots (heatmap tests) for your sites
| Field | Type | Default | Description |
|---|---|---|---|
| siteId | text | Filter snapshots for specific site | |
| status | select | all |
| Name | Type | Description |
|---|---|---|
| snapshots | array | |
| snapshotCount | number | |
| activeSnapshots | number | |
| totalVisitors | number |
Retrieve heatmap click data for a specific snapshot
| Field | Type | Default | Description |
|---|---|---|---|
| snapshotId | text | ID of the snapshot to get heatmap data for | |
| heatmapType | select | click | |
| device | select | all |
| Name | Type | Description |
|---|---|---|
| heatmapData | object | |
| clickPoints | array | |
| totalClicks | number | |
| topElements | array | |
| visitorCount | number |
Retrieve scroll behavior data for a snapshot
| Field | Type | Default | Description |
|---|---|---|---|
| snapshotId | text | ID of the snapshot to get scroll data for | |
| device | select | all |
| Name | Type | Description |
|---|---|---|
| scrollData | object | |
| averageScrollDepth | number | |
| foldReach | number | |
| scrollDistribution | array | |
| dropoffPoints | array |
Get individual click data (confetti view) for detailed analysis
| Field | Type | Default | Description |
|---|---|---|---|
| snapshotId | text | ID of the snapshot to get confetti data for | |
| elementSelector | text | CSS selector to filter clicks on specific elements | |
| limit | number | 100 | Maximum number of click records to return |
| Name | Type | Description |
|---|---|---|
| confettiData | array | |
| clickCount | number | |
| uniqueElements | array | |
| clickDistribution | object |
Get overlay click reports showing click percentages
| Field | Type | Default | Description |
|---|---|---|---|
| snapshotId | text | ID of the snapshot to get overlay data for | |
| reportType | select | overlay |
| Name | Type | Description |
|---|---|---|
| overlayData | object | |
| elementStats | array | |
| clickPercentages | object | |
| performanceInsights | array |
Retrieve A/B test results and performance comparisons
| Field | Type | Default | Description |
|---|---|---|---|
| testId | text | Specific A/B test ID to retrieve | |
| status | select | all |
| Name | Type | Description |
|---|---|---|
| tests | array | |
| testCount | number | |
| runningTests | number | |
| results | array |
Retrieve list of sites in your Crazy Egg account
| Name | Type | Description |
|---|---|---|
| sites | array | |
| siteCount | number | |
| activeSites | number | |
| totalSnapshots | number |
Create a new heatmap snapshot for tracking
| Field | Type | Default | Description |
|---|---|---|---|
| siteId | text | ID of the site to create snapshot for | |
| name | text | Name for the new snapshot | |
| url | text | URL of the page to track | |
| visitorGoal | number | 100 | Target number of visitors for the snapshot |
| device | select | all |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| snapshotId | string | |
| snapshotUrl | string | |
| trackingCode | string |
Influencer marketing platform connecting brands with content creators and managing campaigns
Notes:
Search for creators using various criteria and filters
| Field | Type | Default | Description |
|---|---|---|---|
| keywords | text | Keywords to search in creator profiles and content | |
| platforms | select | Primary social media platform | |
| minFollowers | number | Minimum follower count | |
| maxFollowers | number | Maximum follower count | |
| location | text | Geographic location or country | |
| categories | text | Content categories (comma-separated) | |
| minEngagementRate | number | Minimum engagement rate percentage | |
| tier | select | Creator tier based on follower count | |
| limit | number | 50 | Maximum number of creators to return |
| Name | Type | Description |
|---|---|---|
| creators | array | Array of creator profiles matching the search criteria |
| count | number | Number of creators found |
Create a new creator marketing campaign
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the campaign | |
| description | textarea | Detailed description of the campaign | |
| type | select | Type of creator campaign | |
| budget | number | Campaign budget in USD | |
| startDate | text | Campaign start date (YYYY-MM-DD format) | |
| endDate | text | Campaign end date (YYYY-MM-DD format) | |
| requirements | textarea | Detailed requirements and deliverables for creators |
| Name | Type | Description |
|---|---|---|
| campaignId | string | The created campaign ID |
| success | boolean | Whether the campaign was created successfully |
Invite a creator to participate in a campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | The ID of the campaign | |
| creatorId | text | The ID of the creator to invite | |
| compensation | number | Compensation amount for the creator | |
| compensationType | select | fixed | Type of compensation offered |
| message | textarea | Custom message to include with the invitation |
| Name | Type | Description |
|---|---|---|
| invitationId | string | The created invitation ID |
| success | boolean | Whether the invitation was sent successfully |
Retrieve all campaigns with optional filtering
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | Filter campaigns by status | |
| type | select | Filter campaigns by type | |
| limit | number | 50 | Maximum number of campaigns to return |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of campaign data |
| count | number | Number of campaigns returned |
Get performance metrics and analytics for a campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | The ID of the campaign to get metrics for | |
| includeCreatorBreakdown | checkbox | Include individual creator performance metrics |
| Name | Type | Description |
|---|---|---|
| metrics | object | Campaign performance metrics including reach, engagement, and conversions |
| success | boolean | Whether the metrics were retrieved successfully |
Get detailed profile information for a creator
| Field | Type | Default | Description |
|---|---|---|---|
| creatorId | text | The ID of the creator | |
| includeMetrics | checkbox | 1 | Include detailed performance metrics and analytics |
| includeAudienceData | checkbox | Include audience demographics and engagement data |
| Name | Type | Description |
|---|---|---|
| profile | object | Comprehensive creator profile with metrics and audience data |
| found | boolean | Whether the creator profile was found |
Track the status and progress of creator collaborations
| Field | Type | Default | Description |
|---|---|---|---|
| collaborationId | text | The ID of the collaboration to track |
| Name | Type | Description |
|---|---|---|
| collaboration | object | Detailed collaboration information including status and progress |
| deliverables | array | List of deliverables and their completion status |
| performance | object | Performance metrics for completed deliverables |
| found | boolean | Whether the collaboration was found |
Generate a comprehensive report for a creator or campaign performance
| Field | Type | Default | Description |
|---|---|---|---|
| reportType | select | Type of report to generate | |
| subjectId | text | ID of the creator, campaign, or collaboration to report on | |
| dateRange | select | 30d | Time period for the report |
| Name | Type | Description |
|---|---|---|
| reportId | string | Generated report ID for future reference |
| reportData | object | Complete report data and analysis |
| insights | array | Key insights and recommendations from the analysis |
| success | boolean | Whether the report was generated successfully |
Customer messaging and support platform
Notes:
Send a message in a Crisp conversation
| Field | Type | Default | Description |
|---|---|---|---|
| session_id | text | ID of the conversation session | |
| content | textarea | Content of the message | |
| type | select | text | Type of message |
| from | select | operator | Who is sending the message |
| Name | Type | Description |
|---|---|---|
| fingerprint | number | Unique identifier for the message |
| content | string | The message content |
| timestamp | string | When the message was sent |
Retrieve details of a specific conversation
| Field | Type | Default | Description |
|---|---|---|---|
| session_id | text | ID of the conversation session |
| Name | Type | Description |
|---|---|---|
| session_id | string | The conversation session ID |
| nickname | string | Nickname of the user |
| string | Email of the user | |
| state | string | Current conversation state |
| is_verified | boolean | Whether the user is verified |
Get a list of conversations
| Field | Type | Default | Description |
|---|---|---|---|
| page_number | number | 1 | Page number for pagination |
| Name | Type | Description |
|---|---|---|
| conversations | array | Array of conversation objects |
Create a new people profile in Crisp
| Field | Type | Default | Description |
|---|---|---|---|
| text | Email address for the profile | ||
| person_name | text | Full name of the person | |
| nickname | text | Nickname for the person | |
| phone | text | Phone number | |
| avatar | text | URL to avatar image |
| Name | Type | Description |
|---|---|---|
| people_id | string | The ID of the created profile |
| string | Profile email | |
| person_name | string | Profile name |
Update an existing people profile
| Field | Type | Default | Description |
|---|---|---|---|
| people_id | text | ID of the profile to update | |
| person_name | text | New name for the person | |
| nickname | text | New nickname | |
| phone | text | New phone number | |
| avatar | text | New avatar URL |
| Name | Type | Description |
|---|---|---|
| people_id | string | The ID of the updated profile |
| updated_at | string | When the profile was updated |
Mark a conversation as resolved
| Field | Type | Default | Description |
|---|---|---|---|
| session_id | text | ID of the conversation to resolve |
| Name | Type | Description |
|---|---|---|
| session_id | string | The resolved conversation ID |
| state | string | The new conversation state |
Commerce media and retargeting platform. Create dynamic product campaigns, optimize for ROAS, track post-view conversions, and leverage advanced audience insights for e-commerce advertising.
Notes:
Retrieve retargeting and commerce media campaigns from Criteo
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | Filter campaigns by status | |
| campaignType | select | Filter campaigns by type |
| Name | Type | Description |
|---|---|---|
| campaigns | array | List of Criteo campaigns |
| totalCount | number | Total number of campaigns |
Retrieve ad sets from Criteo campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | Filter by specific campaign ID | |
| status | select | Filter ad sets by status |
| Name | Type | Description |
|---|---|---|
| adSets | array | List of ad sets |
| totalCount | number |
Retrieve advertising creatives and banners
| Field | Type | Default | Description |
|---|---|---|---|
| adSetId | text | Filter by specific ad set ID | |
| creativeType | select | Filter creatives by type |
| Name | Type | Description |
|---|---|---|
| creatives | array | List of advertising creatives |
| totalCount | number |
Get commerce media and retargeting performance reports
| Field | Type | Default | Description |
|---|---|---|---|
| reportType | select | Type of report to generate | |
| startDate | text | Start date (YYYY-MM-DD format) | |
| endDate | text | End date (YYYY-MM-DD format) | |
| metrics | textarea | ["impressions", "clicks", "ctr", "cost", "cpm", "cpc", "conversions", "sales", "roas", "post_view_conversions"] | Metrics to include (JSON array) |
| currency | text | USD | Currency for cost and revenue metrics |
| Name | Type | Description |
|---|---|---|
| reportData | array | Performance metrics and analytics data |
| totalSpend | number | Total advertising spend for the period |
| totalImpressions | number | |
| totalClicks | number | |
| totalSales | number | Total attributed sales revenue |
| totalConversions | number | |
| averageRoas | number | Average return on advertising spend |
Create a new commerce media or retargeting campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignName | text | Name for the new campaign | |
| campaignType | select | Type of campaign to create | |
| objective | select | Campaign objective | |
| budgetType | select | Type of budget allocation | |
| budget | number | Budget amount in account currency | |
| bidStrategy | select | Bidding strategy |
| Name | Type | Description |
|---|---|---|
| campaignId | string | ID of the created campaign |
| campaignName | string | |
| status | string |
Create a new ad set within a campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | ID of the campaign to create ad set in | |
| adSetName | text | Name for the new ad set | |
| targetAudience | select | Target audience for the ad set | |
| geo | textarea | Geographic targeting (JSON array of country/region codes) | |
| bidAmount | number | Bid amount (for manual bidding) |
| Name | Type | Description |
|---|---|---|
| adSetId | string | ID of the created ad set |
| adSetName | string | |
| status | string |
Update an existing campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | ID of the campaign to update | |
| updates | textarea | Campaign fields to update (JSON format) |
| Name | Type | Description |
|---|---|---|
| campaignId | string | |
| success | boolean |
Retrieve product catalog data for dynamic retargeting
| Field | Type | Default | Description |
|---|---|---|---|
| catalogId | text | Specific catalog ID to retrieve | |
| status | select | Filter products by status |
| Name | Type | Description |
|---|---|---|
| products | array | List of products in the catalog |
| totalCount | number | |
| catalogInfo | object | Catalog metadata and statistics |
Get insights about retargeting audiences and segments
| Field | Type | Default | Description |
|---|---|---|---|
| audienceType | select | Type of audience to analyze | |
| timeframe | select | Timeframe for audience analysis |
| Name | Type | Description |
|---|---|---|
| insights | array | Audience behavior and demographic insights |
| audienceSize | number | Total audience size |
| conversionRate | number | Average conversion rate for this audience |
Live video platform for creators with interactive Q&A and networking
Notes:
Create a new Crowdcast live event
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | The title of the live event | |
| description | textarea | Event description | |
| starts_at | text | ISO 8601 format (e.g., 2024-12-25T14:00:00Z) | |
| duration | number | 60 | Event duration in minutes |
| timezone | text | UTC | e.g., America/New_York, Europe/London |
| is_public | checkbox | Make event publicly discoverable | |
| requires_registration | checkbox | Require attendees to register |
| Name | Type | Description |
|---|---|---|
| event_id | string | |
| event_url | string | |
| registration_url | string | |
| success | boolean |
Retrieve details of a specific event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event |
| Name | Type | Description |
|---|---|---|
| title | string | |
| description | string | |
| starts_at | string | |
| duration | number | |
| event_url | string | |
| registration_url | string | |
| status | string | |
| success | boolean |
Register an attendee for an event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event | |
| text | Attendee email address | ||
| name | text | Attendee full name | |
| custom_fields | textarea | Additional custom fields as JSON object |
| Name | Type | Description |
|---|---|---|
| registration_id | string | |
| join_url | string | |
| success | boolean |
Retrieve list of registrants for an event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event | |
| limit | number | 50 | Maximum number of registrants to return |
| Name | Type | Description |
|---|---|---|
| registrants | array | |
| total_count | number | |
| success | boolean |
Retrieve list of attendees for a completed event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event |
| Name | Type | Description |
|---|---|---|
| attendees | array | |
| total_count | number | |
| success | boolean |
Retrieve list of events
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | ||
| limit | number | 50 | Maximum number of events to return |
| Name | Type | Description |
|---|---|---|
| events | array | |
| total_count | number | |
| success | boolean |
Update an existing event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event | |
| title | text | Updated event title | |
| description | textarea | Updated event description | |
| starts_at | text | ISO 8601 format (e.g., 2024-12-25T14:00:00Z) |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| event_id | string |
Extract company profiles, investments, funding data, and industry insights from Crunchbase
Notes:
Extract detailed company information from Crunchbase URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Crunchbase company URLs to scrape |
| Name | Type | Description |
|---|---|---|
| companies | array | Detailed company information with funding, investors, and metrics |
| count | number | Number of companies scraped |
Find companies using keyword search across Crunchbase
| Field | Type | Default | Description |
|---|---|---|---|
| keywords | textarea | Keywords to search for companies (e.g., "AI", "Fintech", "Healthcare") |
| Name | Type | Description |
|---|---|---|
| companies | array | Companies matching the search keywords |
| count | number | Number of companies found |
Data orchestration platform for analytics and machine learning pipelines
Notes:
Retrieve a list of repositories in your Dagster instance
| Name | Type | Description |
|---|---|---|
| repositories | array | List of Dagster repositories |
| count | number | Number of repositories returned |
Retrieve a list of jobs from a specific repository
| Field | Type | Default | Description |
|---|---|---|---|
| repository_name | text | Name of the repository | |
| repository_location | text | Location name of the repository (optional) |
| Name | Type | Description |
|---|---|---|
| jobs | array | List of jobs in the repository |
| count | number | Number of jobs returned |
Get detailed information about a specific job
| Field | Type | Default | Description |
|---|---|---|---|
| repository_name | text | Name of the repository | |
| job_name | text | Name of the job | |
| repository_location | text | Location name of the repository (optional) |
| Name | Type | Description |
|---|---|---|
| job_name | string | Name of the job |
| description | string | Job description |
| tags | array | Tags associated with the job |
| op_count | number | Number of operations in the job |
Launch a new run for a specific job
| Field | Type | Default | Description |
|---|---|---|---|
| repository_name | text | Name of the repository | |
| job_name | text | Name of the job to run | |
| repository_location | text | Location name of the repository (optional) | |
| run_config | textarea | {} | Configuration for the job run as YAML or JSON |
| tags | text | Comma-separated tags for the run |
| Name | Type | Description |
|---|---|---|
| run_id | string | Unique identifier for the launched run |
| success | boolean | Whether the run was launched successfully |
| status | string | Initial status of the run |
| message | string | Details about the operation |
Retrieve run history with optional filtering
| Field | Type | Default | Description |
|---|---|---|---|
| job_name | text | Filter by specific job name (optional) | |
| status_filter | select | ||
| limit | number | 50 | Maximum number of runs to retrieve |
| Name | Type | Description |
|---|---|---|
| runs | array | List of job runs |
| count | number | Number of runs returned |
Get detailed information about a specific run
| Field | Type | Default | Description |
|---|---|---|---|
| run_id | text | The unique ID of the run |
| Name | Type | Description |
|---|---|---|
| run_id | string | Unique identifier of the run |
| job_name | string | Name of the job that was run |
| status | string | Current status of the run |
| start_time | string | When the run started |
| end_time | string | When the run ended |
| duration | number | Total run duration in seconds |
Terminate a running job
| Field | Type | Default | Description |
|---|---|---|---|
| run_id | text | The unique ID of the run to terminate |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the termination was successful |
| message | string | Details about the operation |
Retrieve a list of assets in the Dagster instance
| Field | Type | Default | Description |
|---|---|---|---|
| repository_name | text | Filter by repository name (optional) |
| Name | Type | Description |
|---|---|---|
| assets | array | List of Dagster assets |
| count | number | Number of assets returned |
AI-native project management platform for task tracking, team collaboration, and time management. List tasks, track progress, and automate workflows.
Notes:
List tasks from a specific Dartboard
| Field | Type | Default | Description |
|---|---|---|---|
| dartboardId | text | The ID of the Dartboard to list tasks from | |
| status | select | Filter tasks by status | |
| assignee | text | Filter tasks by assignee email or name (optional) | |
| limit | number | 100 | Maximum number of tasks to return |
| Name | Type | Description |
|---|---|---|
| tasks | array | Array of task objects with status, assignee, duration, and other details |
| count | number | Number of tasks returned |
| success | boolean | Whether the operation was successful |
Customer satisfaction surveys (NPS) platform
Notes:
Create or update a person in Delighted
| Field | Type | Default | Description |
|---|---|---|---|
| text | Person's email address | ||
| name | text | Person's full name | |
| phone_number | text | Person's phone number | |
| properties | textarea | {} | Additional properties as JSON object |
| Name | Type | Description |
|---|---|---|
| person_id | string | The ID of the created/updated person |
| string | Person's email address | |
| name | string | Person's name |
| created_at | string | When the person was created |
Send an NPS survey to a person
| Field | Type | Default | Description |
|---|---|---|---|
| text | Email address to send survey to | ||
| delay | number | 0 | Delay before sending survey (0 for immediate) |
| send_email | checkbox | 1 | Whether to send the survey via email |
| send_sms | checkbox | Whether to send the survey via SMS |
| Name | Type | Description |
|---|---|---|
| survey_request_id | string | The ID of the survey request |
| person_email | string | Email address the survey was sent to |
| scheduled_at | string | When the survey is scheduled to be sent |
Retrieve a specific survey response
| Field | Type | Default | Description |
|---|---|---|---|
| response_id | text | ID of the survey response to retrieve |
| Name | Type | Description |
|---|---|---|
| response_id | string | The survey response ID |
| score | number | The NPS score (0-10) |
| comment | string | Optional comment from respondent |
| person_email | string | Email of the person who responded |
| created_at | string | When the response was submitted |
| channel | string | How the survey was delivered (email, sms, etc.) |
Get a list of survey responses
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 25 | Number of responses to retrieve (max 100) |
| since | text | Only responses after this date (YYYY-MM-DD) | |
| until | text | Only responses before this date (YYYY-MM-DD) | |
| order | select | desc | How to order the results |
| Name | Type | Description |
|---|---|---|
| responses | array | Array of survey response objects |
| total_count | number | Total number of responses |
Get NPS metrics and statistics
| Field | Type | Default | Description |
|---|---|---|---|
| since | text | Calculate metrics since this date (YYYY-MM-DD) | |
| until | text | Calculate metrics until this date (YYYY-MM-DD) |
| Name | Type | Description |
|---|---|---|
| nps_score | number | Overall Net Promoter Score |
| response_count | number | Total number of responses |
| promoters | number | Number of promoters (score 9-10) |
| passives | number | Number of passives (score 7-8) |
| detractors | number | Number of detractors (score 0-6) |
| promoter_percentage | number | Percentage of promoters |
| detractor_percentage | number | Percentage of detractors |
Delete a person from Delighted
| Field | Type | Default | Description |
|---|---|---|---|
| text | Email address of the person to delete |
| Name | Type | Description |
|---|---|---|
| deleted | boolean | Whether the person was successfully deleted |
| string | Email of the deleted person |
Webinar and online event platform designed for marketing and engagement
Notes:
Create a new Demio webinar event
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | The name of the webinar event | |
| description | textarea | Event description | |
| date_time | text | ISO 8601 format (e.g., 2024-12-25T14:00:00Z) | |
| duration | number | 60 | Event duration in minutes |
| timezone | text | UTC | e.g., America/New_York, Europe/London |
| registration_required | checkbox | Require attendees to register |
| Name | Type | Description |
|---|---|---|
| event_id | string | |
| event_url | string | |
| registration_url | string | |
| success | boolean |
Retrieve details of a specific event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event |
| Name | Type | Description |
|---|---|---|
| name | string | |
| description | string | |
| date_time | string | |
| duration | number | |
| event_url | string | |
| registration_url | string | |
| status | string | |
| success | boolean |
Register an attendee for an event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event | |
| text | Attendee email address | ||
| name | text | Attendee full name | |
| company | text | Attendee company name | |
| phone | text | Attendee phone number | |
| custom_fields | textarea | Additional custom fields as JSON object |
| Name | Type | Description |
|---|---|---|
| registration_id | string | |
| join_url | string | |
| success | boolean |
Retrieve list of registrants for an event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event | |
| page | number | 1 | Page number for pagination |
| Name | Type | Description |
|---|---|---|
| registrants | array | |
| total_count | number | |
| success | boolean |
Retrieve list of attendees for a completed event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event |
| Name | Type | Description |
|---|---|---|
| attendees | array | |
| total_count | number | |
| success | boolean |
Retrieve list of events
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | ||
| limit | number | 50 | Maximum number of events to return |
| Name | Type | Description |
|---|---|---|
| events | array | |
| total_count | number | |
| success | boolean |
Update an existing event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event | |
| name | text | Updated event name | |
| description | textarea | Updated event description | |
| date_time | text | ISO 8601 format (e.g., 2024-12-25T14:00:00Z) |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| event_id | string |
Developer community and content platform for publishing technical articles and engaging with developers
Notes:
Retrieve your published articles from Dev.to
| Field | Type | Default | Description |
|---|---|---|---|
| page | number | 1 | Page number for pagination |
| per_page | number | 30 | Number of articles per page (max 1000) |
| Name | Type | Description |
|---|---|---|
| articles | array | Array of your published articles |
| totalArticles | number | Total number of articles returned |
Retrieve public articles from Dev.to with filtering options
| Field | Type | Default | Description |
|---|---|---|---|
| tag | text | Filter articles by tag (e.g., javascript, python) | |
| username | text | Filter articles by specific user | |
| state | select | fresh | Filter by article freshness |
| top | number | Get top articles from last N days (1-365) | |
| page | number | 1 | Page number for pagination |
| per_page | number | 30 | Number of articles per page (max 1000) |
| Name | Type | Description |
|---|---|---|
| articles | array | Array of public articles matching criteria |
| totalArticles | number | Total number of articles returned |
Create and publish a new article on Dev.to
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | Title of the article | |
| body_markdown | code_editor | Article content in Markdown format | |
| published | select | false | Whether to publish immediately or save as draft |
| tags | text | Comma-separated tags (max 4 tags) | |
| series | text | Series name if this article is part of a series | |
| canonical_url | text | Canonical URL if republishing from another source | |
| description | textarea | Brief description/excerpt of the article |
| Name | Type | Description |
|---|---|---|
| articleId | number | Unique ID of the created article |
| articleUrl | string | Public URL of the article |
| slug | string | URL slug of the article |
| published | boolean | Whether the article was published |
| publishedAt | string | Publication timestamp |
Update an existing article on Dev.to
| Field | Type | Default | Description |
|---|---|---|---|
| article_id | number | ID of the article to update | |
| title | text | Updated title of the article | |
| body_markdown | code_editor | Updated article content in Markdown format | |
| published | select | Whether to publish or keep as draft | |
| tags | text | Updated comma-separated tags | |
| series | text | Updated series name |
| Name | Type | Description |
|---|---|---|
| articleId | number | ID of the updated article |
| articleUrl | string | Public URL of the updated article |
| updatedFields | array | List of fields that were updated |
| success | boolean | Whether the update was successful |
Retrieve your followers on Dev.to
| Field | Type | Default | Description |
|---|---|---|---|
| page | number | 1 | Page number for pagination |
| per_page | number | 80 | Number of followers per page (max 1000) |
| Name | Type | Description |
|---|---|---|
| followers | array | Array of your followers |
| totalFollowers | number | Total number of followers returned |
Get profile information for a specific user
| Field | Type | Default | Description |
|---|---|---|---|
| username | text | Dev.to username to get profile for |
| Name | Type | Description |
|---|---|---|
| profile | object | Complete user profile information |
| name | string | User's display name |
| username | string | User's username |
| bio | string | User's bio/description |
| profileImage | string | URL to user's profile image |
| websiteUrl | string | User's website URL |
Retrieve articles in your reading list
| Field | Type | Default | Description |
|---|---|---|---|
| page | number | 1 | Page number for pagination |
| per_page | number | 30 | Number of articles per page (max 1000) |
| Name | Type | Description |
|---|---|---|
| readingList | array | Array of articles in your reading list |
| totalArticles | number | Total number of articles in reading list |
Open-source ERP and CRM - Complete business management solution for SMEs
Notes:
Retrieve third party (customer/supplier) records from Dolibarr
| Field | Type | Default | Description |
|---|---|---|---|
| client | select | Filter by client status | |
| supplier | select | Filter by supplier status | |
| status | select | Filter by status | |
| limit | number | 100 | Maximum number of records to retrieve |
| Name | Type | Description |
|---|---|---|
| thirdparties | array | |
| thirdparty_count | number |
Create a new third party (customer/supplier) in Dolibarr
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Third party name | |
| client | select | 1 | |
| fournisseur | select | 0 | |
| text | Email address | ||
| phone | text | Phone number | |
| address | text | Street address | |
| zip | text | ZIP/Postal code | |
| town | text | City | |
| country_code | text | Country code (e.g., US, FR, DE) |
| Name | Type | Description |
|---|---|---|
| thirdparty_id | string | |
| name | string | |
| ref | string |
Retrieve product records from Dolibarr
| Field | Type | Default | Description |
|---|---|---|---|
| type | select | Filter by product type | |
| tosell | select | Filter by sale status | |
| tobuy | select | Filter by purchase status | |
| limit | number | 100 | Maximum number of records to retrieve |
| Name | Type | Description |
|---|---|---|
| products | array | |
| product_count | number |
Create a new product in Dolibarr
| Field | Type | Default | Description |
|---|---|---|---|
| label | text | Product name/label | |
| type | select | 0 | |
| ref | text | Product reference/SKU | |
| price | number | Product price | |
| price_base_type | select | HT | |
| tva_tx | number | VAT rate percentage | |
| description | textarea | Product description |
| Name | Type | Description |
|---|---|---|
| product_id | string | |
| label | string | |
| ref | string |
Retrieve sales order records from Dolibarr
| Field | Type | Default | Description |
|---|---|---|---|
| thirdparty_ids | text | Filter by third party ID | |
| statut | select | Filter by order status | |
| date_commande_from | text | Filter orders from this date | |
| date_commande_to | text | Filter orders to this date | |
| limit | number | 100 | Maximum number of records to retrieve |
| Name | Type | Description |
|---|---|---|
| orders | array | |
| order_count | number | |
| total_amount | number |
Create a new sales order in Dolibarr
| Field | Type | Default | Description |
|---|---|---|---|
| socid | text | Customer third party ID | |
| date_commande | text | Order date (defaults to today) | |
| ref_client | text | Customer order reference | |
| note_public | textarea | Public note visible to customer | |
| note_private | textarea | Private internal note |
| Name | Type | Description |
|---|---|---|
| order_id | string | |
| ref | string | |
| total_ht | number | |
| total_ttc | number |
Retrieve invoice records from Dolibarr
| Field | Type | Default | Description |
|---|---|---|---|
| thirdparty_ids | text | Filter by third party ID | |
| statut | select | Filter by invoice status | |
| type | select | Filter by invoice type | |
| limit | number | 100 | Maximum number of records to retrieve |
| Name | Type | Description |
|---|---|---|
| invoices | array | |
| invoice_count | number | |
| total_amount | number |
Create a new invoice in Dolibarr
| Field | Type | Default | Description |
|---|---|---|---|
| socid | text | Customer third party ID | |
| type | select | 0 | |
| date | text | Invoice date (defaults to today) | |
| date_lim_reglement | text | Payment due date | |
| note_public | textarea | Public note visible to customer | |
| note_private | textarea | Private internal note |
| Name | Type | Description |
|---|---|---|
| invoice_id | string | |
| ref | string | |
| total_ht | number | |
| total_ttc | number |
Conversational marketing and chatbot automation platform
Notes:
Create a new contact in Drift
| Field | Type | Default | Description |
|---|---|---|---|
| text | Contact email address | ||
| name | text | Contact full name | |
| phone | text | Contact phone number | |
| company | text | Company name | |
| custom_attributes | textarea | {} | Additional contact attributes as JSON object |
| Name | Type | Description |
|---|---|---|
| contact_id | number | The ID of the created contact |
| string | Contact email address | |
| name | string | Contact name |
| created_at | string | When the contact was created |
Send a message to a contact via Drift chat
| Field | Type | Default | Description |
|---|---|---|---|
| conversation_id | number | ID of the conversation to send message to | |
| message | textarea | Message content to send | |
| type | select | chat | Type of message |
| Name | Type | Description |
|---|---|---|
| message_id | number | The ID of the sent message |
| body | string | The message content |
| created_at | string | When the message was sent |
Retrieve details of a specific contact
| Field | Type | Default | Description |
|---|---|---|---|
| contact_id | number | ID of the contact to retrieve |
| Name | Type | Description |
|---|---|---|
| contact_id | number | The contact ID |
| string | Contact email address | |
| name | string | Contact name |
| phone | string | Contact phone number |
| company | string | Company name |
| created_at | string | When the contact was created |
| updated_at | string | When the contact was last updated |
Update an existing contact in Drift
| Field | Type | Default | Description |
|---|---|---|---|
| contact_id | number | ID of the contact to update | |
| name | text | New contact name | |
| phone | text | New phone number | |
| company | text | New company name |
| Name | Type | Description |
|---|---|---|
| contact_id | number | The ID of the updated contact |
| updated_at | string | When the contact was updated |
Get a list of conversations from Drift
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Number of conversations to retrieve (max 100) |
| next | text | Pagination token for next page |
| Name | Type | Description |
|---|---|---|
| conversations | array | Array of conversation objects |
| next_token | string | Token for retrieving next page |
Retrieve details of a specific conversation
| Field | Type | Default | Description |
|---|---|---|---|
| conversation_id | number | ID of the conversation to retrieve |
| Name | Type | Description |
|---|---|---|
| conversation_id | number | The conversation ID |
| status | string | Conversation status |
| participant_count | number | Number of participants |
| created_at | string | When the conversation was created |
| updated_at | string | When the conversation was last updated |
E-commerce email marketing automation platform with behavioral triggers and customer lifecycle campaigns
Notes:
Retrieve subscribers from your Drip account
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | active | |
| subscribed_after | text | Filter subscribers added after this date (e.g., 2023-01-01T00:00:00Z) | |
| subscribed_before | text | Filter subscribers added before this date | |
| page | number | 1 | Page number for pagination |
| Name | Type | Description |
|---|---|---|
| subscribers | array | Array of subscriber objects |
| meta | object | Pagination information |
Create a new subscriber or update existing one in Drip
| Field | Type | Default | Description |
|---|---|---|---|
| text | Subscriber email address | ||
| first_name | text | Subscriber first name | |
| last_name | text | Subscriber last name | |
| phone | text | Subscriber phone number | |
| address1 | text | Street address | |
| city | text | City | |
| state | text | State or province | |
| zip | text | ZIP or postal code | |
| country | text | Country name | |
| custom_fields | textarea | {} | Custom fields as JSON object (e.g. {"company": "Acme Corp", "job_title": "Manager"}) |
| tags | textarea | [] | Tags to apply as JSON array (e.g. ["customer", "vip"]) |
| Name | Type | Description |
|---|---|---|
| subscriber | object | The created or updated subscriber object |
| subscriber_id | string | ID of the subscriber |
Retrieve a specific subscriber by ID or email
| Field | Type | Default | Description |
|---|---|---|---|
| subscriber_id | text | Subscriber ID or email address |
| Name | Type | Description |
|---|---|---|
| subscriber | object | The subscriber object |
Unsubscribe a subscriber from your account
| Field | Type | Default | Description |
|---|---|---|---|
| subscriber_id | text | Subscriber ID or email address to unsubscribe |
| Name | Type | Description |
|---|---|---|
| subscriber | object | The unsubscribed subscriber object |
Permanently delete a subscriber from your account
| Field | Type | Default | Description |
|---|---|---|---|
| subscriber_id | text | Subscriber ID or email address to delete |
| Name | Type | Description |
|---|---|---|
| deleted | boolean | Whether the subscriber was successfully deleted |
Apply a tag to a subscriber
| Field | Type | Default | Description |
|---|---|---|---|
| text | Subscriber email address | ||
| tag | text | Tag to apply to the subscriber |
| Name | Type | Description |
|---|---|---|
| subscriber | object | The subscriber with applied tag |
Remove a tag from a subscriber
| Field | Type | Default | Description |
|---|---|---|---|
| text | Subscriber email address | ||
| tag | text | Tag to remove from the subscriber |
| Name | Type | Description |
|---|---|---|
| subscriber | object | The subscriber with removed tag |
Track a custom event for a subscriber
| Field | Type | Default | Description |
|---|---|---|---|
| text | Subscriber email address | ||
| action | text | Name of the event action to track | |
| properties | textarea | {} | Event properties as JSON object (e.g. {"product": "Widget", "price": 29.99}) |
| occurred_at | text | When the event occurred (defaults to now) |
| Name | Type | Description |
|---|---|---|
| event | object | The tracked event object |
Retrieve email campaigns from your Drip account
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | all |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of campaign objects |
Activate a draft campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | ID of the campaign to activate |
| Name | Type | Description |
|---|---|---|
| campaign | object | The activated campaign object |
Pause an active campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | ID of the campaign to pause |
| Name | Type | Description |
|---|---|---|
| campaign | object | The paused campaign object |
Retrieve automation workflows from your Drip account
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | all |
| Name | Type | Description |
|---|---|---|
| workflows | array | Array of workflow objects |
Activate a workflow
| Field | Type | Default | Description |
|---|---|---|---|
| workflow_id | text | ID of the workflow to activate |
| Name | Type | Description |
|---|---|---|
| workflow | object | The activated workflow object |
Pause a workflow
| Field | Type | Default | Description |
|---|---|---|---|
| workflow_id | text | ID of the workflow to pause |
| Name | Type | Description |
|---|---|---|
| workflow | object | The paused workflow object |
Start a subscriber in a specific workflow
| Field | Type | Default | Description |
|---|---|---|---|
| workflow_id | text | ID of the workflow | |
| text | Subscriber email address |
| Name | Type | Description |
|---|---|---|
| workflow_subscription | object | The workflow subscription object |
File hosting and synchronization service for cloud storage
Notes:
Upload a file to Dropbox
| Name | Type | Required | Description |
|---|---|---|---|
| fileData | file | Yes | File content to upload |
| Field | Type | Default | Description |
|---|---|---|---|
| filePath | text | Path where to save the file (e.g., "/documents/myfile.txt") | |
| mode | select | add | What to do if file already exists |
| autorename | checkbox | 1 | Automatically rename if file exists |
| Name | Type | Description |
|---|---|---|
| fileId | string | Dropbox file ID |
| filePath | string | Path of the uploaded file |
| fileName | string | Name of the uploaded file |
| size | number | Size of the file in bytes |
| success | boolean |
Download a file from Dropbox
| Field | Type | Default | Description |
|---|---|---|---|
| filePath | text | Path to the file to download (e.g., "/documents/myfile.txt") |
| Name | Type | Description |
|---|---|---|
| fileData | binary | Downloaded file content |
| fileName | string | Name of the downloaded file |
| size | number | Size of the file in bytes |
| mimeType | string | File MIME type |
List files and folders in Dropbox
| Field | Type | Default | Description |
|---|---|---|---|
| folderPath | text | Path to list files from (leave empty for root) | |
| recursive | checkbox | Include files from subfolders | |
| includeMediaInfo | checkbox | Include media metadata for photos and videos | |
| limit | number | 100 | Maximum number of files to return |
| Name | Type | Description |
|---|---|---|
| files | array | Array of file and folder objects |
| totalCount | number | Number of files found |
| hasMore | boolean | Whether there are more files to fetch |
Create a new folder in Dropbox
| Field | Type | Default | Description |
|---|---|---|---|
| folderPath | text | Path for the new folder (e.g., "/new-folder") | |
| autorename | checkbox | Automatically rename if folder exists |
| Name | Type | Description |
|---|---|---|
| folderId | string | Dropbox folder ID |
| folderPath | string | Path of the created folder |
| folderName | string | Name of the created folder |
| success | boolean |
Delete a file or folder from Dropbox
| Field | Type | Default | Description |
|---|---|---|---|
| path | text | Path to the file or folder to delete |
| Name | Type | Description |
|---|---|---|
| deletedPath | string | Path of the deleted item |
| success | boolean |
Move or rename a file or folder in Dropbox
| Field | Type | Default | Description |
|---|---|---|---|
| fromPath | text | Current path of the file/folder | |
| toPath | text | New path for the file/folder | |
| autorename | checkbox | Automatically rename if destination exists |
| Name | Type | Description |
|---|---|---|
| newPath | string | New path of the moved item |
| oldPath | string | Original path of the item |
| success | boolean |
Copy a file or folder in Dropbox
| Field | Type | Default | Description |
|---|---|---|---|
| fromPath | text | Path of the file/folder to copy | |
| toPath | text | Destination path for the copy | |
| autorename | checkbox | Automatically rename if destination exists |
| Name | Type | Description |
|---|---|---|
| newPath | string | Path of the copied item |
| originalPath | string | Path of the original item |
| success | boolean |
Get metadata information about a file or folder
| Field | Type | Default | Description |
|---|---|---|---|
| path | text | Path to get information about | |
| includeMediaInfo | checkbox | Include media metadata for photos and videos |
| Name | Type | Description |
|---|---|---|
| name | string | File or folder name |
| path | string | Full path to the item |
| id | string | Dropbox file/folder ID |
| size | number | Size in bytes (files only) |
| isFolder | boolean | Whether this is a folder |
| clientModified | string | Last modified date from client |
| serverModified | string | Last modified date on server |
Create a shareable link for a file or folder
| Field | Type | Default | Description |
|---|---|---|---|
| path | text | Path to create share link for | |
| settings | select | viewer | Who can access the shared link |
| password | text | Optional password to protect the link | |
| expires | text | When the link expires (ISO 8601 format) |
| Name | Type | Description |
|---|---|---|
| shareUrl | string | The shareable link |
| linkId | string | ID of the created share link |
| expires | string | When the link expires |
| success | boolean |
Search for files and folders in Dropbox
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Text to search for in file names and content | |
| path | text | Folder to search in (leave empty for all) | |
| fileExtensions | text | File extensions to include (comma separated, e.g., "pdf,docx") | |
| maxResults | number | 100 | Maximum number of results to return |
| Name | Type | Description |
|---|---|---|
| matches | array | Array of matching files and folders |
| totalCount | number | Number of matches found |
| hasMore | boolean | Whether there are more results |
File transfer service by Dropbox for large file sharing
Notes:
Create a new Dropbox Transfer
| Name | Type | Required | Description |
|---|---|---|---|
| file_content | file | Yes | The file content to transfer |
| Field | Type | Default | Description |
|---|---|---|---|
| file_name | text | Name for the file including extension | |
| message | textarea | Optional message to include with the transfer |
| Name | Type | Description |
|---|---|---|
| transfer_id | string | Unique identifier of the created transfer |
| transfer_url | string | Public URL to download the transfer |
| expires_at | string | When the transfer expires |
| file_size | number | Size of the transferred file in bytes |
Get information about a transfer
| Field | Type | Default | Description |
|---|---|---|---|
| transfer_id | text | ID of the transfer to get information about |
| Name | Type | Description |
|---|---|---|
| transfer_id | string | Unique identifier of the transfer |
| transfer_url | string | Public URL to download the transfer |
| status | string | Current status of the transfer |
| expires_at | string | When the transfer expires |
| file_count | number | Number of files in the transfer |
List recent transfers
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 100 | Maximum number of transfers to return |
| Name | Type | Description |
|---|---|---|
| transfers | array | List of recent transfers |
| total_count | number | Total number of transfers returned |
Delete a transfer
| Field | Type | Default | Description |
|---|---|---|---|
| transfer_id | text | ID of the transfer to delete |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the transfer was successfully deleted |
| message | string | Status message |
E-commerce framework built on the Drupal content management system
Notes:
Retrieve products from Drupal Commerce
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of products to retrieve |
| status | select | Filter by product status |
| Name | Type | Description |
|---|---|---|
| products | array | List of products |
| total | number | Total number of products |
Get a specific product by ID
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | The ID of the product to retrieve |
| Name | Type | Description |
|---|---|---|
| product | object | Product details |
Create a new product in Drupal Commerce
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | Title of the product | |
| body | textarea | Product description | |
| price_amount | number | Product price amount | |
| price_currency | text | USD | Currency code (e.g., USD, EUR) |
| sku | text | Product SKU | |
| status | checkbox | 1 | Whether the product is published |
| Name | Type | Description |
|---|---|---|
| product | object | Details of the created product |
| success | boolean | Whether the product was created successfully |
Update an existing product
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | ID of the product to update | |
| title | text | New product title | |
| price_amount | number | New product price amount |
| Name | Type | Description |
|---|---|---|
| product | object | Updated product details |
| success | boolean | Whether the product was updated successfully |
Retrieve orders from Drupal Commerce
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of orders to retrieve |
| state | select | Filter by order state |
| Name | Type | Description |
|---|---|---|
| orders | array | List of orders |
| total | number | Total number of orders |
Get a specific order by ID
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | The ID of the order to retrieve |
| Name | Type | Description |
|---|---|---|
| order | object | Order details |
Update the state of an order
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | ID of the order to update | |
| state | select | New order state |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the order state was updated successfully |
Online marketplace management for listing products, managing orders, and tracking sales
Notes:
Get your eBay selling summary
| Field | Type | Default | Description |
|---|---|---|---|
| summary_period | select | CurrentMonth |
| Name | Type | Description |
|---|---|---|
| selling_summary | object | eBay selling summary data |
| active_auction_count | number | |
| sold_listing_count | number | |
| total_listing_count | number |
Get details of a specific eBay item
| Field | Type | Default | Description |
|---|---|---|---|
| item_id | text | eBay item ID to retrieve | |
| include_watch_count | checkbox | Include the number of watchers |
| Name | Type | Description |
|---|---|---|
| item | object | Complete eBay item information |
| item_id | string | |
| title | string | |
| current_price | object | |
| listing_status | string |
Create a new fixed-price listing on eBay
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | Title for the eBay listing | |
| description | textarea | HTML description of the item | |
| category_id | text | eBay category ID for the item | |
| start_price | text | Starting price (e.g., 19.99) | |
| currency | select | USD | |
| quantity | number | 1 | Number of items available |
| listing_duration | select | GTC |
| Name | Type | Description |
|---|---|---|
| item_id | string | eBay item ID of created listing |
| start_time | string | When the listing started |
| end_time | string | When the listing will end |
Update an existing eBay listing
| Field | Type | Default | Description |
|---|---|---|---|
| item_id | text | eBay item ID to revise | |
| title | text | Updated title for the listing | |
| start_price | text | Updated price | |
| quantity | number | Updated quantity |
| Name | Type | Description |
|---|---|---|
| item_id | string | |
| start_time | string | |
| end_time | string |
End an active eBay listing
| Field | Type | Default | Description |
|---|---|---|---|
| item_id | text | eBay item ID to end | |
| ending_reason | select |
| Name | Type | Description |
|---|---|---|
| item_id | string | |
| end_time | string |
Retrieve eBay orders
| Field | Type | Default | Description |
|---|---|---|---|
| order_role | select | Seller | |
| order_status | select | ||
| create_time_from | text | ISO 8601 format (e.g., 2023-01-01T00:00:00.000Z) |
| Name | Type | Description |
|---|---|---|
| orders | array | Array of eBay order objects |
| total | number | Total number of orders |
Extract eBay product listings, seller information, prices, bids, and customer reviews with auction and marketplace analytics
Notes:
Extract detailed product information from eBay listing URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | eBay product/listing URLs to scrape |
| Name | Type | Description |
|---|---|---|
| products | array | Detailed eBay listings with prices, bids, seller info, and reviews |
| count | number | Number of products scraped |
Find eBay products from category pages
| Field | Type | Default | Description |
|---|---|---|---|
| categoryUrls | textarea | eBay category page URLs (e.g., https://www.ebay.com/b/Smart-Watches/178893/bn_152365) |
| Name | Type | Description |
|---|---|---|
| products | array | Products found in the specified categories |
| count | number | Number of products discovered |
Search eBay products using keywords across all categories
| Field | Type | Default | Description |
|---|---|---|---|
| keywords | textarea | Keywords to search for eBay products (e.g., "baby toys", "vintage shirts") |
| Name | Type | Description |
|---|---|---|
| products | array | Products matching the search keywords |
| count | number | Number of products found |
Extract products from specific eBay seller shops
| Field | Type | Default | Description |
|---|---|---|---|
| shopUrls | textarea | eBay seller shop URLs to scrape products from |
| Name | Type | Description |
|---|---|---|
| products | array | Products from the specified eBay shops |
| count | number | Number of products from shops |
E-commerce platform that can be added to any website
Notes:
Retrieve products from Ecwid store
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 100 | Maximum number of products to retrieve (max 100) |
| offset | number | 0 | Number of products to skip |
| enabled | select | Filter by product status |
| Name | Type | Description |
|---|---|---|
| products | array | List of products |
| total | number | Total number of products |
| count | number | Number of products returned |
Get a specific product by ID
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | The ID of the product to retrieve |
| Name | Type | Description |
|---|---|---|
| product | object | Product details |
Create a new product in Ecwid store
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the product | |
| description | textarea | Product description (HTML allowed) | |
| price | number | Product price | |
| sku | text | Product SKU | |
| quantity | number | 1 | Stock quantity |
| enabled | checkbox | 1 | Whether the product is enabled |
| Name | Type | Description |
|---|---|---|
| product_id | number | ID of the created product |
| success | boolean | Whether the product was created successfully |
Update an existing product
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | ID of the product to update | |
| name | text | New product name | |
| price | number | New product price | |
| quantity | number | New stock quantity | |
| enabled | select | Product enabled status |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the product was updated successfully |
Retrieve orders from Ecwid store
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 100 | Maximum number of orders to retrieve (max 100) |
| offset | number | 0 | Number of orders to skip |
| payment_status | select | Filter by payment status |
| Name | Type | Description |
|---|---|---|
| orders | array | List of orders |
| total | number | Total number of orders |
Get a specific order by ID
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | The ID of the order to retrieve |
| Name | Type | Description |
|---|---|---|
| order | object | Order details |
Update order details
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | ID of the order to update | |
| fulfillment_status | select | New fulfillment status | |
| tracking_number | text | Shipping tracking number |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the order was updated successfully |
Text to speech service with AI voice cloning
Notes:
Convert text to speech using ElevenLabs AI voices
| Field | Type | Default | Description |
|---|---|---|---|
| text | textarea | The text to convert to speech | |
| voice_id | text | 21m00Tcm4TlvDq8ikWAM | ElevenLabs voice ID (e.g., 21m00Tcm4TlvDq8ikWAM). Find it in your ElevenLabs dashboard under voice settings. |
| model_id | select | eleven_multilingual_v2 | AI model to use for speech synthesis |
| voice_settings | textarea | {"stability": 0.5, "similarity_boost": 0.75, "style": 0.0, "use_speaker_boost": true} | Voice settings as JSON object (stability, similarity_boost, style, use_speaker_boost) |
| output_format | select | mp3_44100_128 | Audio output format |
| Name | Type | Description |
|---|---|---|
| audio_data | binary | Generated audio file (automatically saved and publicly accessible) |
| character_count | number | Number of characters processed |
| success | boolean |
Retrieve all available voices from ElevenLabs
| Name | Type | Description |
|---|---|---|
| voices | array | List of all available voices |
| success | boolean |
Get default settings for a specific voice
| Field | Type | Default | Description |
|---|---|---|---|
| voice_id | select | Select a voice to get settings for |
| Name | Type | Description |
|---|---|---|
| settings | object | Default settings for the selected voice |
| success | boolean |
Retrieve all available AI models from ElevenLabs
| Name | Type | Description |
|---|---|---|
| models | array | List of all available AI models |
| success | boolean |
Get information about the current user and subscription
| Name | Type | Description |
|---|---|---|
| user_info | object | Current user details and subscription info |
| character_count | number | Available character count |
| character_limit | number | Total character limit |
| success | boolean |
Retrieve generation history from ElevenLabs
| Field | Type | Default | Description |
|---|---|---|---|
| page_size | number | 100 | Number of items per page (default: 100) |
| Name | Type | Description |
|---|---|---|
| history | array | List of previous generations |
| success | boolean |
Oracle marketing automation platform for enterprise B2B marketing campaigns and lead management
Notes:
Create or update a contact in Eloqua
| Field | Type | Default | Description |
|---|---|---|---|
| text | Contact email address | ||
| firstName | text | Contact first name | |
| lastName | text | Contact last name | |
| company | text | Contact company name | |
| customFields | textarea | {} | Additional contact fields as JSON object |
| Name | Type | Description |
|---|---|---|
| contactId | string | The Eloqua contact ID |
| status | string | Created or Updated |
Add a contact to an Eloqua segment
| Field | Type | Default | Description |
|---|---|---|---|
| segmentId | text | The ID of the Eloqua segment | |
| contactId | text | The Eloqua contact ID to add to the segment |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the contact was added successfully |
| message | string | Success or error message |
Retrieve contact information by email or ID
| Field | Type | Default | Description |
|---|---|---|---|
| lookupField | select | Field to use for contact lookup | |
| lookupValue | text | The email address or contact ID to search for |
| Name | Type | Description |
|---|---|---|
| contact | object | Complete contact information from Eloqua |
| found | boolean | Whether the contact was found |
Execute an Eloqua campaign for a contact
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | The ID of the campaign to execute | |
| contactId | text | The Eloqua contact ID to run the campaign for |
| Name | Type | Description |
|---|---|---|
| executionId | string | The campaign execution ID |
| success | boolean | Whether the campaign was executed successfully |
Get activity history for a contact
| Field | Type | Default | Description |
|---|---|---|---|
| contactId | text | The Eloqua contact ID to get activities for | |
| activityType | select | all | Type of activities to retrieve |
| limit | number | 100 | Maximum number of activities to return |
| Name | Type | Description |
|---|---|---|
| activities | array | Array of contact activities |
| count | number | Number of activities returned |
Retrieve all Eloqua segments
| Name | Type | Description |
|---|---|---|
| segments | array | Array of Eloqua segments |
| count | number | Number of segments returned |
Connect to any email server using IMAP for reading and SMTP for sending. Works with Gmail, Outlook, Yahoo, and custom mail servers.
Notes:
Triggers when new emails arrive in the mailbox (polling-based)
| Field | Type | Default | Description |
|---|---|---|---|
| mailbox | text | INBOX | Folder to monitor (INBOX, Sent, etc.) |
| searchCriteria | text | IMAP search criteria (leave empty for all new emails) | |
| markAsRead | checkbox | 1 | |
| pollIntervalMinutes | number | 5 | How often to check for new emails |
| lastProcessedUid | hidden | 0 |
| Name | Type | Description |
|---|---|---|
| messageId | string | |
| uid | integer | |
| from | string | |
| fromName | string | |
| to | string | |
| cc | string | |
| subject | string | |
| date | string | |
| body | string | |
| bodyHtml | string | |
| hasAttachments | boolean | |
| attachments | array |
Retrieve emails from a mailbox with optional filtering
| Name | Type | Required | Description |
|---|---|---|---|
| mailbox | string | No | |
| searchCriteria | string | No | |
| limit | integer | No | |
| markAsRead | boolean | No |
| Field | Type | Default | Description |
|---|---|---|---|
| mailbox | text | INBOX | |
| searchCriteria | text | IMAP search syntax | |
| limit | number | 10 | |
| markAsRead | checkbox |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| emails | array | |
| count | integer |
Retrieve a single email by UID
| Name | Type | Required | Description |
|---|---|---|---|
| uid | integer | Yes | |
| mailbox | string | No |
| Field | Type | Default | Description |
|---|---|---|---|
| uid | text | ||
| mailbox | text | INBOX |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| messageId | string | |
| from | string | |
| to | string | |
| subject | string | |
| body | string | |
| bodyHtml | string | |
| attachments | array |
Mark an email as read
| Name | Type | Required | Description |
|---|---|---|---|
| uid | integer | Yes | |
| mailbox | string | No |
| Field | Type | Default | Description |
|---|---|---|---|
| uid | text | ||
| mailbox | text | INBOX |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| uid | integer | |
| messageId | string |
Mark an email as unread
| Name | Type | Required | Description |
|---|---|---|---|
| uid | integer | Yes | |
| mailbox | string | No |
| Field | Type | Default | Description |
|---|---|---|---|
| uid | text | ||
| mailbox | text | INBOX |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| uid | integer | |
| messageId | string |
Move email to a different folder
| Name | Type | Required | Description |
|---|---|---|---|
| uid | integer | Yes | |
| targetFolder | string | Yes | |
| mailbox | string | No |
| Field | Type | Default | Description |
|---|---|---|---|
| uid | text | ||
| targetFolder | text | ||
| mailbox | text | INBOX |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| uid | integer | |
| movedTo | string |
Delete an email (move to trash or permanently delete)
| Name | Type | Required | Description |
|---|---|---|---|
| uid | integer | Yes | |
| mailbox | string | No | |
| permanent | boolean | No |
| Field | Type | Default | Description |
|---|---|---|---|
| uid | text | ||
| mailbox | text | INBOX | |
| permanent | checkbox | If checked, email will be permanently deleted instead of moved to trash |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| uid | integer | |
| deleted | boolean | |
| permanent | boolean |
Download an attachment from an email
| Name | Type | Required | Description |
|---|---|---|---|
| uid | integer | Yes | |
| attachmentId | string | Yes | |
| mailbox | string | No |
| Field | Type | Default | Description |
|---|---|---|---|
| uid | text | ||
| attachmentId | text | ||
| mailbox | text | INBOX |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| attachmentId | string | |
| filename | string | |
| mimeType | string | |
| size | integer | |
| content | binary |
List all mailbox folders
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| folders | array | |
| count | integer |
Send an email via SMTP
| Name | Type | Required | Description |
|---|---|---|---|
| to | string | Yes | |
| subject | string | Yes | |
| body | string | Yes | |
| cc | string | No | |
| bcc | string | No | |
| isHtml | boolean | No | |
| replyTo | string | No | |
| fromName | string | No |
| Field | Type | Default | Description |
|---|---|---|---|
| to | text | Recipient email (comma-separate for multiple) | |
| subject | text | ||
| body | textarea | ||
| isHtml | checkbox | ||
| cc | text | ||
| bcc | text | ||
| replyTo | text | ||
| fromName | text | Override the sender display name |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| to | string | |
| subject | string | |
| messageId | string |
Send an email with file attachments via SMTP
| Name | Type | Required | Description |
|---|---|---|---|
| to | string | Yes | |
| subject | string | Yes | |
| body | string | Yes | |
| attachments | array | No | |
| cc | string | No | |
| bcc | string | No | |
| isHtml | boolean | No | |
| replyTo | string | No | |
| fromName | string | No |
| Field | Type | Default | Description |
|---|---|---|---|
| to | text | Recipient email (comma-separate for multiple) | |
| subject | text | ||
| body | textarea | ||
| attachments | textarea | JSON array of attachments from previous nodes | |
| isHtml | checkbox | ||
| cc | text | ||
| bcc | text | ||
| replyTo | text | ||
| fromName | text | Override the sender display name |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| to | string | |
| subject | string | |
| attachmentCount | integer | |
| messageId | string |
Simple email marketing with automation
Notes:
Add a new contact to an EmailOctopus list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | The ID of the list to add the contact to | |
| text | Contact email address | ||
| first_name | text | Contact first name | |
| last_name | text | Contact last name | |
| tags | text | Comma-separated list of tags |
| Name | Type | Description |
|---|---|---|
| contact_id | string | ID of the created contact |
| success | boolean |
Update an existing contact in an EmailOctopus list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | The ID of the list containing the contact | |
| contact_id | text | The ID of the contact to update | |
| text | Updated email address | ||
| first_name | text | Updated first name | |
| last_name | text | Updated last name | |
| tags | text | Comma-separated list of tags |
| Name | Type | Description |
|---|---|---|
| success | boolean |
Retrieve a contact from an EmailOctopus list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | The ID of the list containing the contact | |
| contact_id | text | The ID of the contact to retrieve |
| Name | Type | Description |
|---|---|---|
| contact_id | string | |
| string | ||
| first_name | string | |
| last_name | string | |
| status | string | |
| created_at | string | |
| tags | array | |
| success | boolean |
Delete a contact from an EmailOctopus list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | The ID of the list containing the contact | |
| contact_id | text | The ID of the contact to delete |
| Name | Type | Description |
|---|---|---|
| success | boolean |
Get all contacts from an EmailOctopus list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | The ID of the list to get contacts from | |
| limit | number | 100 | Maximum number of contacts to return (default: 100) |
| page | number | 1 | Page number for pagination (default: 1) |
| Name | Type | Description |
|---|---|---|
| contacts | array | Array of contacts |
| paging | object | Pagination information |
| success | boolean |
Get all lists from your EmailOctopus account
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 100 | Maximum number of lists to return (default: 100) |
| page | number | 1 | Page number for pagination (default: 1) |
| Name | Type | Description |
|---|---|---|
| lists | array | Array of email lists |
| paging | object | Pagination information |
| success | boolean |
Get details of a specific EmailOctopus list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | The ID of the list to retrieve |
| Name | Type | Description |
|---|---|---|
| list_id | string | |
| name | string | |
| double_opt_in | boolean | |
| created_at | string | |
| counts | object | Subscribed, unsubscribed, and pending counts |
| success | boolean |
Create a new EmailOctopus list
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name for the new list | |
| double_opt_in | select | false | Whether to enable double opt-in |
| Name | Type | Description |
|---|---|---|
| list_id | string | ID of the created list |
| success | boolean |
Get all campaigns from your EmailOctopus account
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 100 | Maximum number of campaigns to return (default: 100) |
| page | number | 1 | Page number for pagination (default: 1) |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of campaigns |
| paging | object | Pagination information |
| success | boolean |
Get details of a specific EmailOctopus campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | The ID of the campaign to retrieve |
| Name | Type | Description |
|---|---|---|
| campaign_id | string | |
| name | string | |
| subject | string | |
| status | string | |
| created_at | string | |
| sent_at | string | |
| success | boolean |
Handmade and vintage marketplace for managing shops, listings, and orders
Notes:
Get information about your Etsy shop
| Name | Type | Description |
|---|---|---|
| shop | object | Complete shop information |
| shop_id | number | |
| shop_name | string | |
| listing_active_count | number | |
| digital_listing_count | number |
Retrieve listings from your Etsy shop
| Field | Type | Default | Description |
|---|---|---|---|
| state | select | active | |
| limit | number | 25 | Number of listings to retrieve (max 100) |
| sort_on | select | created |
| Name | Type | Description |
|---|---|---|
| listings | array | Array of listing objects |
| total | number | Total number of listings found |
Get details of a specific listing
| Field | Type | Default | Description |
|---|---|---|---|
| listing_id | text | Etsy listing ID to retrieve |
| Name | Type | Description |
|---|---|---|
| listing | object | Complete listing details |
| listing_id | number | |
| title | string | |
| price | object | |
| state | string | |
| quantity | number |
Create a new listing on Etsy
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | Listing title (max 140 characters) | |
| description | textarea | Listing description | |
| price | text | Price in shop currency (e.g., 19.99) | |
| quantity | number | Number of items available | |
| taxonomy_id | text | Etsy category taxonomy ID | |
| who_made | select | ||
| when_made | select | ||
| is_supply | checkbox | Is this a craft supply? |
| Name | Type | Description |
|---|---|---|
| listing | object | The created listing object |
| listing_id | number | ID of the created listing |
| url | string | Direct URL to the listing |
Update an existing listing
| Field | Type | Default | Description |
|---|---|---|---|
| listing_id | text | Etsy listing ID to update | |
| title | text | New listing title | |
| description | textarea | New listing description | |
| price | text | New price | |
| quantity | number | New quantity |
| Name | Type | Description |
|---|---|---|
| listing | object | The updated listing object |
| listing_id | number |
Retrieve receipts (orders) from your Etsy shop
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 25 | Number of receipts to retrieve (max 100) |
| min_created | text | Unix timestamp for earliest creation time | |
| max_created | text | Unix timestamp for latest creation time |
| Name | Type | Description |
|---|---|---|
| receipts | array | Array of receipt (order) objects |
| total | number | Total number of receipts found |
Get details of a specific receipt (order)
| Field | Type | Default | Description |
|---|---|---|---|
| receipt_id | text | Etsy receipt ID to retrieve |
| Name | Type | Description |
|---|---|---|
| receipt | object | Complete receipt details |
| receipt_id | number | |
| total_price | object | |
| buyer_email | string | |
| creation_timestamp | number |
Extract handcrafted items, product listings, and seller profiles from Etsy with 3 different scraping operations
Notes:
Extract detailed product information from Etsy URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Etsy product URLs to scrape |
| Name | Type | Description |
|---|---|---|
| products | array | Detailed product information with pricing, seller details, and reviews |
| count | number | Number of products scraped |
Find products using keyword search across Etsy marketplace
| Field | Type | Default | Description |
|---|---|---|---|
| keywords | textarea | Keywords to search for products (e.g., "baby gifts", "dog collar", "vintage jewelry") |
| Name | Type | Description |
|---|---|---|
| products | array | Products matching the search keywords |
| count | number | Number of products found |
Extract all products from specific Etsy shop URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Etsy shop URLs to scrape products from | |
| allVariations | select | Whether to include all product variations and detailed options |
| Name | Type | Description |
|---|---|---|
| products | array | All products from the specified shops |
| count | number | Number of products found |
Event management and ticketing automation platform for creating, promoting, and managing events
Notes:
Create a new Eventbrite event
| Field | Type | Default | Description |
|---|---|---|---|
| event_name | text | The name of the event | |
| description | textarea | HTML description of the event | |
| start_date | text | ISO 8601 formatted date-time (e.g., 2024-12-01T10:00:00) | |
| end_date | text | ISO 8601 formatted date-time (e.g., 2024-12-01T12:00:00) | |
| timezone | text | UTC | Timezone (e.g., America/New_York, Europe/London) |
| currency | text | USD | Currency code (USD, EUR, GBP, etc.) |
| online_event | checkbox | Check if this is an online event |
| Name | Type | Description |
|---|---|---|
| event_id | string | |
| event_url | string | |
| event_status | string | |
| success | boolean |
Create a ticket class for an event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The ID of the event to add tickets to | |
| ticket_name | text | Name of the ticket class | |
| ticket_type | select | free | |
| cost | number | Price in cents (100 = $1.00). Required for paid tickets | |
| quantity_total | number | Total number of tickets available (leave empty for unlimited) |
| Name | Type | Description |
|---|---|---|
| ticket_class_id | string | |
| success | boolean |
Publish a draft event to make it live
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The ID of the event to publish |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| event_url | string |
Retrieve details of a specific event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The ID of the event to retrieve |
| Name | Type | Description |
|---|---|---|
| event_name | string | |
| description | string | |
| start_date | string | |
| end_date | string | |
| event_url | string | |
| status | string | |
| success | boolean |
Retrieve attendees list for an event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The ID of the event | |
| status | select | attending |
| Name | Type | Description |
|---|---|---|
| attendees | array | |
| total_count | number | |
| success | boolean |
Retrieve events for the organization
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | live | |
| limit | number | 50 | Maximum number of events to return (1-50) |
| Name | Type | Description |
|---|---|---|
| events | array | |
| total_count | number | |
| success | boolean |
SMS marketing platform for businesses with mass texting and automation features
Notes:
Send SMS messages to phone numbers
| Field | Type | Default | Description |
|---|---|---|---|
| message | textarea | SMS message content (max 160 characters) | |
| phone_numbers | textarea | Phone numbers separated by commas (e.g., 1234567890, 0987654321) | |
| subject | text | Message subject (optional) |
| Name | Type | Description |
|---|---|---|
| delivery_id | string | Unique identifier for the delivery |
| messages_sent | number | Number of messages sent |
| credits_used | number | Number of credits consumed |
| success | boolean | Whether the SMS was sent successfully |
Send SMS to a contact group
| Field | Type | Default | Description |
|---|---|---|---|
| message | textarea | SMS message content | |
| groups | text | Group names separated by commas | |
| subject | text | Message subject (optional) |
| Name | Type | Description |
|---|---|---|
| delivery_id | string | Unique identifier for the delivery |
| groups_sent | number | Number of groups messaged |
| success | boolean | Whether the group message was sent successfully |
Add a contact to your address book
| Field | Type | Default | Description |
|---|---|---|---|
| phone_number | text | Contact phone number (10 digits) | |
| first_name | text | Contact first name | |
| last_name | text | Contact last name | |
| text | Contact email address | ||
| note | textarea | Note about the contact |
| Name | Type | Description |
|---|---|---|
| contact_id | string | ID of the added contact |
| phone_number | string | Contact phone number |
| success | boolean | Whether the contact was added successfully |
Create a new contact group
| Field | Type | Default | Description |
|---|---|---|---|
| group_name | text | Name for the new group | |
| note | textarea | Note about the group |
| Name | Type | Description |
|---|---|---|
| group_id | string | ID of the created group |
| group_name | string | Name of the created group |
| success | boolean | Whether the group was created successfully |
Retrieve incoming SMS messages
| Field | Type | Default | Description |
|---|---|---|---|
| folder_name | select | Inbox | Inbox folder to retrieve from |
| Name | Type | Description |
|---|---|---|
| messages | array | List of inbox messages |
| message_count | number | Total number of messages |
| success | boolean | Whether the inbox was retrieved successfully |
Check remaining SMS credits
| Name | Type | Description |
|---|---|---|
| credits_remaining | number | Number of SMS credits remaining |
| plan_type | string | Account plan type |
| success | boolean | Whether the credits check was successful |
Scrape Facebook ads from search results and specific pages. Fast and lightweight scraping with detailed ad information, active status filtering, and date range options.
Notes:
Execute Facebook Ads Library scraper and return dataset items directly
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Facebook Ads Library search URLs or Facebook Page URLs to scrape ads from (one per line) | |
| scrapeAdDetails | checkbox | Enable to scrape detailed ad information such as EU reach data | |
| count | number | Maximum number of records to scrape (leave empty to scrape all) | |
| activeStatus | select | all | Filter ads by their active status |
| period | select | Filter ads by date range (uses search filters) |
| Name | Type | Description |
|---|---|---|
| data | array | Array of scraped Facebook ads with comprehensive information |
| count | number | Number of ads successfully scraped |
| metadata | object | Additional information about the scraping operation |
Start async Facebook Ads Library scraping run and return run information
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Facebook Ads Library search URLs or Facebook Page URLs (one per line) | |
| scrapeAdDetails | checkbox | Enable to scrape detailed ad information | |
| count | number | Maximum number of records to scrape | |
| activeStatus | select | all | Filter ads by their active status |
| Name | Type | Description |
|---|---|---|
| runId | string | Unique identifier for the scraping run |
| status | string | Current status of the scraping run |
| datasetId | string | ID of the dataset where results will be stored |
Execute Facebook Ads Library scraper and return key-value store output
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Facebook Ads Library search URLs or Facebook Page URLs (one per line) | |
| count | number | Maximum number of records to scrape |
| Name | Type | Description |
|---|---|---|
| output | object | Key-value store output from the Facebook Ads Library scraper |
| summary | object | Summary information about the scraping operation |
Social event creation and management platform with RSVP and promotion features
Notes:
Create a new Facebook event
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | The name of the event | |
| description | textarea | Event description | |
| start_time | text | ISO 8601 format (e.g., 2024-12-25T14:00:00Z) | |
| end_time | text | ISO 8601 format (e.g., 2024-12-25T18:00:00Z) | |
| location | text | Event location or venue | |
| privacy | select | PUBLIC | |
| is_online | checkbox | Mark this as an online/virtual event | |
| online_event_url | text | URL for online event (required if marked as online) |
| Name | Type | Description |
|---|---|---|
| event_id | string | |
| event_url | string | |
| success | boolean |
Retrieve details of a specific event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event |
| Name | Type | Description |
|---|---|---|
| name | string | |
| description | string | |
| start_time | string | |
| end_time | string | |
| location | string | |
| attending_count | number | |
| interested_count | number | |
| maybe_count | number | |
| event_url | string | |
| success | boolean |
Update an existing event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event | |
| name | text | Updated name of the event | |
| description | textarea | Updated event description | |
| start_time | text | ISO 8601 format (e.g., 2024-12-25T14:00:00Z) | |
| end_time | text | ISO 8601 format (e.g., 2024-12-25T18:00:00Z) | |
| location | text | Event location or venue |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| event_id | string |
Cancel an existing event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| status | string |
Retrieve list of events from the page
| Field | Type | Default | Description |
|---|---|---|---|
| time_filter | select | upcoming | |
| limit | number | 25 | Maximum number of events to return |
| Name | Type | Description |
|---|---|---|
| events | array | |
| total_count | number | |
| success | boolean |
Retrieve list of event attendees
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event | |
| response_type | select | attending | |
| limit | number | 100 | Maximum number of attendees to return |
| Name | Type | Description |
|---|---|---|
| attendees | array | |
| total_count | number | |
| success | boolean |
Post an update to an event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event | |
| message | textarea | The update message to post |
| Name | Type | Description |
|---|---|---|
| post_id | string | |
| success | boolean |
Connect to Facebook Pages via the Graph API. Read posts, engagement metrics, publish content, and manage your Facebook presence.
Notes:
Retrieve posts from a Facebook Page with engagement metrics
| Field | Type | Default | Description |
|---|---|---|---|
| page_id | text | The Facebook Page ID (numeric) or page username | |
| limit | number | 25 | Maximum number of posts to retrieve (1-100) |
| include_engagement | select | true | Include likes, comments, and shares counts |
| Name | Type | Description |
|---|---|---|
| posts | array | Array of page posts with engagement data |
| count | number | Number of posts retrieved |
| page_id | string | |
| success | boolean |
Get details and engagement for a specific post
| Field | Type | Default | Description |
|---|---|---|---|
| post_id | text | The Facebook Post ID (format: page_id_post_id) |
| Name | Type | Description |
|---|---|---|
| id | string | |
| message | string | |
| created_time | string | |
| full_picture | string | |
| permalink_url | string | |
| likes_count | number | |
| comments_count | number | |
| shares_count | number | |
| reactions_count | number | |
| success | boolean |
Publish a new post to a Facebook Page
| Field | Type | Default | Description |
|---|---|---|---|
| page_id | text | The Facebook Page ID to post to | |
| message | textarea | The text content of your post | |
| link | text | Optional URL to attach to the post | |
| published | select | true | Whether to publish immediately or save as draft |
| Name | Type | Description |
|---|---|---|
| post_id | string | ID of the created post |
| post_url | string | Public URL of the post |
| success | boolean |
Delete a post from a Facebook Page
| Field | Type | Default | Description |
|---|---|---|---|
| post_id | text | The ID of the post to delete |
| Name | Type | Description |
|---|---|---|
| deleted | boolean | |
| success | boolean |
Get information about a Facebook Page
| Field | Type | Default | Description |
|---|---|---|---|
| page_id | text | The Facebook Page ID or username |
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| username | string | |
| category | string | |
| fan_count | number | |
| about | string | |
| website | string | |
| picture_url | string | |
| success | boolean |
Get list of Facebook Pages you manage
| Name | Type | Description |
|---|---|---|
| pages | array | Array of pages the user manages |
| count | number | |
| success | boolean |
Retrieve comments on a Facebook post
| Field | Type | Default | Description |
|---|---|---|---|
| post_id | text | The Facebook Post ID | |
| limit | number | 50 | Maximum number of comments to retrieve |
| Name | Type | Description |
|---|---|---|
| comments | array | Array of comments with author info |
| count | number | |
| success | boolean |
Live video broadcasting platform integrated with Facebook social features
Notes:
Create a new Facebook Live video stream
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | The title of the live video | |
| description | textarea | Live video description | |
| privacy | select | EVERYONE | |
| planned_start_time | text | ISO 8601 format (e.g., 2024-12-25T14:00:00Z). Leave empty for immediate streaming. | |
| save_vod | checkbox | Save the live video after streaming ends |
| Name | Type | Description |
|---|---|---|
| video_id | string | |
| stream_url | string | |
| stream_key | string | |
| permalink_url | string | |
| success | boolean |
Retrieve details of a specific live video
| Field | Type | Default | Description |
|---|---|---|---|
| video_id | text | The unique ID of the live video |
| Name | Type | Description |
|---|---|---|
| title | string | |
| description | string | |
| status | string | |
| broadcast_start_time | string | |
| broadcast_end_time | string | |
| permalink_url | string | |
| live_views | number | |
| success | boolean |
Start broadcasting a scheduled live video
| Field | Type | Default | Description |
|---|---|---|---|
| video_id | text | The unique ID of the live video |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| status | string | |
| live_url | string |
End an active live video broadcast
| Field | Type | Default | Description |
|---|---|---|---|
| video_id | text | The unique ID of the live video |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| status | string | |
| video_url | string |
Retrieve list of live videos from the page
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | ||
| limit | number | 25 | Maximum number of videos to return |
| Name | Type | Description |
|---|---|---|
| videos | array | |
| total_count | number | |
| success | boolean |
Retrieve comments from a live video
| Field | Type | Default | Description |
|---|---|---|---|
| video_id | text | The unique ID of the live video | |
| limit | number | 25 | Maximum number of comments to return |
| Name | Type | Description |
|---|---|---|
| comments | array | |
| total_count | number | |
| success | boolean |
Retrieve analytics and insights for a live video
| Field | Type | Default | Description |
|---|---|---|---|
| video_id | text | The unique ID of the live video |
| Name | Type | Description |
|---|---|---|
| total_reach | number | |
| total_impressions | number | |
| total_engagement | number | |
| peak_live_viewers | number | |
| total_live_views | number | |
| average_watch_time | number | |
| success | boolean |
Extract profiles, posts, groups, events, marketplace listings, comments, and reviews from Facebook with 13 comprehensive operations
Notes:
Extract posts from Facebook pages by profile URL
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Facebook page URLs to scrape posts from | |
| numOfPosts | number | 50 | Maximum number of posts to extract per page |
| startDate | text | Filter posts from this date onwards (optional) | |
| endDate | text | Filter posts until this date (optional) |
| Name | Type | Description |
|---|---|---|
| posts | array | Posts from Facebook pages with engagement metrics |
| count | number | Number of posts extracted |
Find Facebook pages using usernames
| Field | Type | Default | Description |
|---|---|---|---|
| usernames | textarea | Facebook usernames to find pages for | |
| startDate | text | Filter posts from this date onwards (optional) | |
| endDate | text | Filter posts until this date (optional) |
| Name | Type | Description |
|---|---|---|
| posts | array | Posts from pages found by username |
| count | number | Number of posts found |
Extract comments from Facebook post URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Facebook post URLs to scrape comments from | |
| getAllReplies | select | Whether to include replies to comments | |
| limitRecords | number | Maximum number of comments to extract per post (optional) |
| Name | Type | Description |
|---|---|---|
| comments | array | Comments from Facebook posts with replies and metadata |
| count | number | Number of comments extracted |
Extract posts from Facebook group URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Facebook group URLs to scrape posts from | |
| startDate | text | Filter posts from this date onwards (optional) | |
| endDate | text | Filter posts until this date (optional) |
| Name | Type | Description |
|---|---|---|
| posts | array | Posts from Facebook groups with member interactions |
| count | number | Number of group posts extracted |
Extract item details from Facebook Marketplace URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Facebook Marketplace item URLs to scrape |
| Name | Type | Description |
|---|---|---|
| items | array | Marketplace listings with pricing and seller details |
| count | number | Number of marketplace items extracted |
Find Facebook Marketplace items using keywords and location
| Field | Type | Default | Description |
|---|---|---|---|
| keyword | text | Product or service to search for | |
| city | text | City or location to search in | |
| dateListedRange | text | Date range filter for listings (optional) |
| Name | Type | Description |
|---|---|---|
| items | array | Marketplace items matching search criteria |
| count | number | Number of items found |
Extract items from Facebook Marketplace category URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Facebook Marketplace category or search URLs |
| Name | Type | Description |
|---|---|---|
| items | array | Items from marketplace categories or searches |
| count | number | Number of items extracted |
Extract detailed information from specific Facebook post URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Facebook post URLs to scrape |
| Name | Type | Description |
|---|---|---|
| posts | array | Detailed post information with engagement metrics |
| count | number | Number of posts extracted |
Extract Facebook Reels from profile URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Facebook profile URLs to scrape Reels from | |
| startDate | text | Filter Reels from this date onwards (optional) | |
| endDate | text | Filter Reels until this date (optional) |
| Name | Type | Description |
|---|---|---|
| reels | array | Reels with video metadata and engagement metrics |
| count | number | Number of Reels extracted |
Extract reviews from Facebook company pages
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Facebook company review page URLs | |
| numOfReviews | number | 50 | Maximum number of reviews to extract per company |
| Name | Type | Description |
|---|---|---|
| reviews | array | Customer reviews with ratings and feedback |
| count | number | Number of reviews extracted |
Extract event details from Facebook event URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Facebook event URLs to scrape |
| Name | Type | Description |
|---|---|---|
| events | array | Event information with dates, locations, and attendees |
| count | number | Number of events extracted |
Find events from Facebook event search or explore URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Facebook event search or explore URLs |
| Name | Type | Description |
|---|---|---|
| events | array | Events found from search results |
| count | number | Number of events found |
Find events at specific Facebook venue pages
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Facebook venue page URLs with events | |
| upcomingEventsOnly | select | Filter to show only future events |
| Name | Type | Description |
|---|---|---|
| events | array | Events at the specified venues |
| count | number | Number of venue events found |
Payment platform for SaaS and software companies
Notes:
Create a checkout session for products
| Field | Type | Default | Description |
|---|---|---|---|
| product_path | text | FastSpring product path/SKU | |
| quantity | number | 1 | Product quantity |
| coupon | text | Discount coupon code | |
| tags | text | Comma-separated tags for analytics |
| Name | Type | Description |
|---|---|---|
| session_id | string | Checkout session identifier |
| checkout_url | string | URL for customer to complete purchase |
| session_data | object |
Retrieve order details
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | FastSpring order ID to retrieve |
| Name | Type | Description |
|---|---|---|
| order_id | string | |
| order_state | string | |
| total | number | |
| currency | string | |
| customer_email | string | |
| order_data | object |
Retrieve subscription details
| Field | Type | Default | Description |
|---|---|---|---|
| subscription_id | text | FastSpring subscription ID |
| Name | Type | Description |
|---|---|---|
| subscription_id | string | |
| state | string | |
| product | string | |
| next_charge_date | string | |
| customer_email | string | |
| subscription_data | object |
Cancel an active subscription
| Field | Type | Default | Description |
|---|---|---|---|
| subscription_id | text | FastSpring subscription ID to cancel |
| Name | Type | Description |
|---|---|---|
| subscription_id | string | |
| state | string | |
| deactivation_date | string | |
| cancel_data | object |
Retrieve list of products
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Number of products to retrieve |
| page | number | 1 | Page number for pagination |
| Name | Type | Description |
|---|---|---|
| products | array | Array of product objects |
| total_pages | number |
Create a new customer account
| Field | Type | Default | Description |
|---|---|---|---|
| text | Customer email address | ||
| first_name | text | Customer first name | |
| last_name | text | Customer last name | |
| company | text | Customer company name |
| Name | Type | Description |
|---|---|---|
| customer_id | string | |
| string | ||
| customer_data | object |
Retrieve customer details
| Field | Type | Default | Description |
|---|---|---|---|
| customer_id | text | FastSpring customer ID |
| Name | Type | Description |
|---|---|---|
| customer_id | string | |
| string | ||
| first_name | string | |
| last_name | string | |
| customer_data | object |
Basic video editing operations: trim, concatenate, extract audio, add audio, and get video info using FFmpeg.
Notes:
Cut a portion of video from start time to end time
| Field | Type | Default | Description |
|---|---|---|---|
| videoInput | text | Video file URL or reference from previous node (e.g., [[nodes.nodeId.video_data.url]]) | |
| startTime | text | 00:00:00 | Start time in HH:MM:SS or seconds format (e.g., 00:01:30 or 90) |
| endTime | text | End time in HH:MM:SS or seconds format (e.g., 00:02:00 or 120) |
| Name | Type | Description |
|---|---|---|
| video_data | binary | The trimmed video file |
| duration | number | Duration of the trimmed video |
| success | boolean |
Join multiple videos sequentially
| Field | Type | Default | Description |
|---|---|---|---|
| videoInputs | textarea | JSON array of video URLs or node references. Example: ["[[nodes.trim1.video_data.url]]", "[[nodes.trim2.video_data.url]]"] | |
| transitionType | select | none | Transition between clips (none = direct cut) |
| Name | Type | Description |
|---|---|---|
| video_data | binary | The combined video file |
| duration | number | Total duration of the concatenated video |
| clips_count | number | Number of clips concatenated |
| success | boolean |
Extract audio track from video file
| Field | Type | Default | Description |
|---|---|---|---|
| videoInput | text | Video file URL or reference from previous node | |
| outputFormat | select | mp3 | Output audio format |
| Name | Type | Description |
|---|---|---|
| audio_data | binary | The extracted audio file |
| duration | number | Duration of the audio |
| success | boolean |
Replace or overlay audio track on video
| Field | Type | Default | Description |
|---|---|---|---|
| videoInput | text | Video file URL or reference | |
| audioInput | text | Audio file URL or reference (e.g., from ElevenLabs TTS) | |
| audioMode | select | replace | How to handle audio |
| Name | Type | Description |
|---|---|---|
| video_data | binary | The video with new audio |
| duration | number | Duration of the output video |
| success | boolean |
Get metadata from video file (duration, resolution, codec)
| Field | Type | Default | Description |
|---|---|---|---|
| videoInput | text | Video file URL or reference |
| Name | Type | Description |
|---|---|---|
| duration | number | Video duration in seconds |
| width | number | Video width |
| height | number | Video height |
| codec | string | Video codec name |
| bitrate | number | Video bitrate |
| fps | number | Frames per second |
| has_audio | boolean | Whether video has an audio track |
| file_size | number | Size of the video file |
| success | boolean |
Collaborative design and prototyping platform with powerful file management, component libraries, and team collaboration features
Notes:
Retrieve information about the authenticated user
| Name | Type | Description |
|---|---|---|
| user | object | Complete user profile data |
| id | string | Unique identifier for the user |
| string | User email address | |
| handle | string | User handle/username |
| imgUrl | string | URL to user profile image |
Retrieve projects from a specific team
| Field | Type | Default | Description |
|---|---|---|---|
| team_id | text | Figma team ID to get projects from |
| Name | Type | Description |
|---|---|---|
| projects | array | Array of team projects |
| totalProjects | number | Number of projects returned |
Retrieve files from a specific project
| Field | Type | Default | Description |
|---|---|---|---|
| project_id | text | Figma project ID to get files from |
| Name | Type | Description |
|---|---|---|
| files | array | Array of project files |
| totalFiles | number | Number of files returned |
Retrieve detailed information about a specific file
| Field | Type | Default | Description |
|---|---|---|---|
| file_key | text | Figma file key or URL | |
| version | text | Specific version ID (leave empty for latest) | |
| ids | text | Comma-separated list of specific node IDs to retrieve | |
| depth | number | 2 | Tree depth to traverse (1-5) |
| Name | Type | Description |
|---|---|---|
| file | object | Complete file information |
| name | string | Name of the file |
| thumbnailUrl | string | URL to file thumbnail |
| lastModified | string | When the file was last modified |
| version | string | Current version of the file |
| document | object | Document node tree structure |
| components | object | File components metadata |
| styles | object | File styles metadata |
Retrieve version history of a file
| Field | Type | Default | Description |
|---|---|---|---|
| file_key | text | Figma file key |
| Name | Type | Description |
|---|---|---|
| versions | array | Array of file versions |
| totalVersions | number | Number of versions returned |
Retrieve components from a specific file
| Field | Type | Default | Description |
|---|---|---|---|
| file_key | text | Figma file key |
| Name | Type | Description |
|---|---|---|
| components | object | File components with metadata |
| totalComponents | number | Number of components in the file |
Retrieve styles from a specific file
| Field | Type | Default | Description |
|---|---|---|---|
| file_key | text | Figma file key |
| Name | Type | Description |
|---|---|---|
| styles | object | File styles with metadata |
| totalStyles | number | Number of styles in the file |
Export specific nodes or frames as images
| Field | Type | Default | Description |
|---|---|---|---|
| file_key | text | Figma file key | |
| ids | text | Comma-separated list of node IDs to export | |
| format | select | png | Image format for export |
| scale | select | 1 | Export scale/resolution |
| use_absolute_bounds | select | false | Use absolute bounding box for export |
| Name | Type | Description |
|---|---|---|
| images | object | Object with node IDs as keys and image URLs as values |
| totalImages | number | Number of images exported |
| success | boolean | Whether the export was successful |
Retrieve comments from a file
| Field | Type | Default | Description |
|---|---|---|---|
| file_key | text | Figma file key |
| Name | Type | Description |
|---|---|---|
| comments | array | Array of file comments |
| totalComments | number | Number of comments returned |
Add a comment to a specific location in a file
| Field | Type | Default | Description |
|---|---|---|---|
| file_key | text | Figma file key | |
| message | textarea | The comment text | |
| client_meta | code_editor | Position and context data as JSON (x, y coordinates) |
| Name | Type | Description |
|---|---|---|
| commentId | string | ID of the created comment |
| comment | object | Complete created comment data |
| success | boolean | Whether the comment was posted successfully |
Retrieve published styles from a team
| Field | Type | Default | Description |
|---|---|---|---|
| team_id | text | Figma team ID | |
| page_size | number | 50 | Number of styles per page |
| Name | Type | Description |
|---|---|---|
| styles | array | Array of published team styles |
| totalStyles | number | Number of styles returned |
Retrieve published components from a team
| Field | Type | Default | Description |
|---|---|---|---|
| team_id | text | Figma team ID | |
| page_size | number | 50 | Number of components per page |
| Name | Type | Description |
|---|---|---|
| components | array | Array of published team components |
| totalComponents | number | Number of components returned |
Retrieve analytics data for a component library
| Field | Type | Default | Description |
|---|---|---|---|
| file_key | text | Figma library file key |
| Name | Type | Description |
|---|---|---|
| analytics | object | Analytics data for the library |
| usage | object | Component usage statistics |
| adoption | object | Library adoption metrics |
Large file transfer service for business communications
Notes:
Send a file via Filemail
| Name | Type | Required | Description |
|---|---|---|---|
| file_content | file | Yes | The file content to send |
| Field | Type | Default | Description |
|---|---|---|---|
| file_name | text | Name for the file including extension | |
| recipient_emails | textarea | Comma-separated list of recipient email addresses | |
| subject | text | Email subject line | |
| message | textarea | Message to include with the file | |
| expires_days | number | 7 | Number of days until the file expires (1-30) |
| Name | Type | Description |
|---|---|---|
| transfer_id | string | Unique identifier of the file transfer |
| download_url | string | URL where recipients can download the file |
| expires_at | string | When the file expires |
| file_size | number | Size of the sent file in bytes |
Get the status of a file transfer
| Field | Type | Default | Description |
|---|---|---|---|
| transfer_id | text | ID of the transfer to check |
| Name | Type | Description |
|---|---|---|
| transfer_id | string | Unique identifier of the transfer |
| status | string | Current status of the transfer |
| download_count | number | Number of times the file has been downloaded |
| expires_at | string | When the transfer expires |
| file_count | number | Number of files in the transfer |
List recent file transfers
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of transfers to return |
| Name | Type | Description |
|---|---|---|
| transfers | array | List of recent transfers |
| total_count | number | Total number of transfers returned |
Delete a file transfer
| Field | Type | Default | Description |
|---|---|---|---|
| transfer_id | text | ID of the transfer to delete |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the transfer was successfully deleted |
| message | string | Status message |
Email finder and lead generation platform with domain search, email verification, and prospecting automation tools
Notes:
Find email address for a person at a specific company
| Field | Type | Default | Description |
|---|---|---|---|
| first_name | text | Person's first name | |
| last_name | text | Person's last name | |
| domain | text | Company domain (e.g., google.com) | |
| company_name | text | Company name for additional context |
| Name | Type | Description |
|---|---|---|
| string | Found email address | |
| confidence | number | Confidence score for the email (0-100) |
| status | string | Status of the email search |
| sources | array | Sources where the email was found |
| verification_status | string | Email verification status if available |
Find all email addresses and contacts associated with a domain
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | Company domain to search (e.g., google.com) | |
| limit | number | 20 | Maximum number of emails to return (default: 20, max: 100) |
| offset | number | 0 | Number of results to skip for pagination |
| Name | Type | Description |
|---|---|---|
| emails | array | List of found email addresses with contact details |
| domain | string | The domain that was searched |
| company_info | object | Company details and metadata |
| total_count | number | Total number of emails found for the domain |
| returned_count | number | Number of emails returned in this response |
Verify if an email address is valid and deliverable
| Field | Type | Default | Description |
|---|---|---|---|
| text | Email address to verify |
| Name | Type | Description |
|---|---|---|
| string | The email address that was verified | |
| status | string | Verification status: valid, invalid, risky, unknown |
| confidence | number | Verification confidence score (0-100) |
| is_deliverable | boolean | Whether the email is deliverable |
| is_disposable | boolean | Whether email is from a disposable email service |
| is_role_based | boolean | Whether email is a role-based account |
| mx_record | boolean | Whether domain has valid MX records |
Enrich company information using domain or company name
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | Company domain to enrich | |
| company_name | text | Company name to enrich |
| Name | Type | Description |
|---|---|---|
| company | object | Comprehensive company information |
| industry | string | Company industry classification |
| employee_count | number | Estimated number of employees |
| revenue | string | Estimated annual revenue |
| location | object | Company headquarters location |
| social_profiles | array | Company social media profiles |
Advanced lead prospecting with filters and criteria
| Field | Type | Default | Description |
|---|---|---|---|
| company_name | text | Target company name | |
| domain | text | Target company domain | |
| job_titles | textarea | [] | Array of job titles to target (e.g., ["CEO", "CTO", "VP Sales"]) |
| departments | textarea | [] | Array of departments to target (e.g., ["Sales", "Marketing"]) |
| seniority_levels | textarea | [] | Array of seniority levels (e.g., ["C-Level", "VP", "Director"]) |
| industries | textarea | [] | Array of target industries |
| company_size | select | Filter by company size | |
| location | text | Geographic location filter | |
| limit | number | 25 | Maximum number of prospects to return (default: 25, max: 100) |
| Name | Type | Description |
|---|---|---|
| prospects | array | Array of prospects matching the search criteria |
| total_results | number | Total number of prospects found |
| search_filters | object | The filters that were applied |
Find multiple emails in a single batch request
| Field | Type | Default | Description |
|---|---|---|---|
| searches | textarea | [{"first_name": "John", "last_name": "Doe", "domain": "example.com"}, {"first_name": "Jane", "last_name": "Smith", "domain": "acme.com"}] | Array of search objects with first_name, last_name, and domain |
| Name | Type | Description |
|---|---|---|
| results | array | Array of email search results |
| total_searches | number | Number of searches performed |
| successful_searches | number | Number of successful email finds |
| credits_used | number | Number of API credits consumed |
Get current account information and usage statistics
| Name | Type | Description |
|---|---|---|
| string | Account email address | |
| plan | string | Current subscription plan |
| credits_available | number | Number of API credits remaining |
| credits_used | number | Number of credits used this period |
| monthly_limit | number | Monthly credit limit |
| reset_date | string | Date when credits reset |
Web scraping API that converts websites to LLM-ready markdown with screenshot capture
Notes:
Scrape a URL and get LLM-ready markdown content, HTML, and metadata
| Field | Type | Default | Description |
|---|---|---|---|
| url | text | The URL of the webpage to scrape | |
| onlyMainContent | checkbox | 1 | Exclude headers, navigation, and footers from the content |
| waitFor | number | 0 | Wait this many milliseconds before scraping (for JS-rendered content) |
| mobile | checkbox | Emulate a mobile device when scraping |
| Name | Type | Description |
|---|---|---|
| markdown | string | The page content converted to LLM-ready markdown |
| html | string | The raw HTML content of the page |
| title | string | The title of the webpage |
| description | string | The meta description of the webpage |
| sourceURL | string | The final URL after any redirects |
| links | array | Links found on the page |
| success | boolean |
Scrape a URL and capture a full-page screenshot along with content
| Field | Type | Default | Description |
|---|---|---|---|
| url | text | The URL of the webpage to scrape and screenshot | |
| fullPage | checkbox | 1 | Capture the entire page, not just the visible viewport |
| mobile | checkbox | Emulate a mobile device for screenshot | |
| waitFor | number | 0 | Wait this many milliseconds before capturing (for JS-rendered content) |
| Name | Type | Description |
|---|---|---|
| screenshot | binary | Full-page screenshot of the webpage |
| markdown | string | The page content converted to markdown |
| title | string | The title of the webpage |
| sourceURL | string | The final URL after any redirects |
| success | boolean |
AI meeting assistant that automatically transcribes, summarizes, and analyzes meetings. Access meeting transcripts, summaries, action items, and analytics.
Notes:
Fetch a meeting transcript by ID with summary and analytics
| Field | Type | Default | Description |
|---|---|---|---|
| transcriptId | text | The Fireflies transcript ID to fetch |
| Name | Type | Description |
|---|---|---|
| id | string | |
| title | string | |
| date | string | |
| duration | number | |
| transcript_url | string | |
| audio_url | string | |
| short_summary | string | |
| short_overview | string | |
| overview | string | |
| action_items | string | |
| keywords | string | |
| sentences | array | |
| speakers | array | |
| data | object |
Get a list of recent meeting transcripts
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 10 | Maximum number of transcripts to return (1-50) |
| Name | Type | Description |
|---|---|---|
| transcripts | array | |
| count | number |
Modern CRM for small teams with contact management, group organization, and workflow automation
Notes:
Retrieve people (contacts) from Folk CRM
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of people to retrieve (1-100) |
| search | text | Search term to filter people | |
| tags | text | Filter by tags (comma-separated) |
| Name | Type | Description |
|---|---|---|
| people | array | |
| total_count | number |
Create a new person (contact) in Folk CRM
| Field | Type | Default | Description |
|---|---|---|---|
| fullName | text | Full name of the person | |
| Email address of the person | |||
| phone | text | Phone number of the person | |
| company | text | Company name | |
| jobTitle | text | Job title of the person | |
| bio | textarea | Biography or notes about the person | |
| tags | text | Tags for the person (comma-separated) |
| Name | Type | Description |
|---|---|---|
| person_id | string | |
| fullName | string | |
| string | ||
| phone | string | |
| company | string | |
| created_at | string |
Update an existing person in Folk CRM
| Field | Type | Default | Description |
|---|---|---|---|
| person_id | text | ID of the person to update | |
| fullName | text | Full name of the person | |
| Email address of the person | |||
| phone | text | Phone number of the person | |
| company | text | Company name | |
| jobTitle | text | Job title of the person | |
| bio | textarea | Biography or notes about the person | |
| tags | text | Tags for the person (comma-separated) |
| Name | Type | Description |
|---|---|---|
| person_id | string | |
| fullName | string | |
| string | ||
| phone | string | |
| company | string | |
| updated_at | string |
Retrieve groups from Folk CRM
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of groups to retrieve (1-100) |
| search | text | Search term to filter groups |
| Name | Type | Description |
|---|---|---|
| groups | array | |
| total_count | number |
Create a new group in Folk CRM
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the group | |
| description | textarea | Description of the group | |
| color | text | Color for the group (hex code) |
| Name | Type | Description |
|---|---|---|
| group_id | string | |
| name | string | |
| description | string | |
| color | string | |
| created_at | string |
Add a person to a group in Folk CRM
| Field | Type | Default | Description |
|---|---|---|---|
| group_id | text | ID of the group | |
| person_id | text | ID of the person to add |
| Name | Type | Description |
|---|---|---|
| group_id | string | |
| person_id | string | |
| success | boolean |
Retrieve notes from Folk CRM
| Field | Type | Default | Description |
|---|---|---|---|
| person_id | text | Filter notes by person ID | |
| limit | number | 50 | Maximum number of notes to retrieve (1-100) |
| Name | Type | Description |
|---|---|---|
| notes | array | |
| total_count | number |
Create a new note in Folk CRM
| Field | Type | Default | Description |
|---|---|---|---|
| content | textarea | Content of the note | |
| person_id | text | ID of the person this note relates to | |
| private | checkbox | Make this note private |
| Name | Type | Description |
|---|---|---|
| note_id | string | |
| content | string | |
| person_id | string | |
| private | boolean | |
| created_at | string |
Retrieve tasks from Folk CRM
| Field | Type | Default | Description |
|---|---|---|---|
| person_id | text | Filter tasks by person ID | |
| completed | select | Filter by completion status | |
| limit | number | 50 | Maximum number of tasks to retrieve (1-100) |
| Name | Type | Description |
|---|---|---|
| tasks | array | |
| total_count | number |
Create a new task in Folk CRM
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | Title of the task | |
| description | textarea | Description of the task | |
| person_id | text | ID of the person this task relates to | |
| dueDate | date | Due date for the task (YYYY-MM-DD) | |
| priority | select | Priority level of the task |
| Name | Type | Description |
|---|---|---|
| task_id | string | |
| title | string | |
| description | string | |
| person_id | string | |
| dueDate | string | |
| priority | string | |
| created_at | string |
Retrieve workflows from Folk CRM
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of workflows to retrieve (1-100) |
| Name | Type | Description |
|---|---|---|
| workflows | array | |
| total_count | number |
Trigger a workflow for a person in Folk CRM
| Field | Type | Default | Description |
|---|---|---|---|
| workflow_id | text | ID of the workflow to trigger | |
| person_id | text | ID of the person to run the workflow for |
| Name | Type | Description |
|---|---|---|
| workflow_id | string | |
| person_id | string | |
| status | string | |
| triggered_at | string |
Search for people across all data in Folk CRM
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Search term to find people | |
| fields | select | Fields to search in | |
| limit | number | 50 | Maximum number of results to return |
| Name | Type | Description |
|---|---|---|
| results | array | |
| total_count | number |
Cloud-based accounting software - Manage invoices, expenses, and client billing
Notes:
Get information about the current user profile
| Name | Type | Description |
|---|---|---|
| user_id | number | |
| first_name | string | |
| last_name | string | |
| string | ||
| business_name | string |
Create a new client in FreshBooks
| Field | Type | Default | Description |
|---|---|---|---|
| company_name | text | Client company name | |
| first_name | text | Client first name | |
| last_name | text | Client last name | |
| text | Client email address | ||
| phone | text | Client phone number |
| Name | Type | Description |
|---|---|---|
| client_id | number | |
| string | ||
| company_name | string |
Get all clients from your account
| Field | Type | Default | Description |
|---|---|---|---|
| include_archived | checkbox | Include archived clients |
| Name | Type | Description |
|---|---|---|
| clients | array | |
| client_count | number |
Create a new invoice
| Field | Type | Default | Description |
|---|---|---|---|
| client_id | number | Client to invoice | |
| create_date | text | today | Invoice creation date |
| due_date | text | Invoice due date | |
| notes | textarea | Invoice notes |
| Name | Type | Description |
|---|---|---|
| invoice_id | number | |
| invoice_number | string | |
| status | string | |
| total | number |
Add a line item to an invoice
| Field | Type | Default | Description |
|---|---|---|---|
| invoice_id | number | Invoice to add item to | |
| name | text | Name of the item or service | |
| description | textarea | Item description | |
| quantity | number | 1 | Quantity of items |
| unit_cost | number | Cost per unit |
| Name | Type | Description |
|---|---|---|
| line_id | number | |
| name | string | |
| amount | number |
Get invoices from your account
| Field | Type | Default | Description |
|---|---|---|---|
| client_id | number | Filter by specific client | |
| status | select | Filter by invoice status |
| Name | Type | Description |
|---|---|---|
| invoices | array | |
| invoice_count | number | |
| total_amount | number |
Send an invoice to the client via email
| Field | Type | Default | Description |
|---|---|---|---|
| invoice_id | number | Invoice to send | |
| email_subject | text | Custom email subject | |
| email_body | textarea | Custom email message |
| Name | Type | Description |
|---|---|---|
| sent | boolean | |
| string |
Create a new expense entry
| Field | Type | Default | Description |
|---|---|---|---|
| amount | number | Expense amount | |
| category_id | number | Expense category ID | |
| client_id | number | Client to assign expense to | |
| vendor | text | Vendor name | |
| notes | textarea | Expense notes | |
| date | text | today | Expense date |
| Name | Type | Description |
|---|---|---|
| expense_id | number | |
| amount | number | |
| date | string |
Get expenses from your account
| Field | Type | Default | Description |
|---|---|---|---|
| start_date | text | Filter expenses from this date | |
| end_date | text | Filter expenses to this date | |
| client_id | number | Filter by specific client |
| Name | Type | Description |
|---|---|---|
| expenses | array | |
| expense_count | number | |
| total_amount | number |
Customer support and helpdesk automation platform
Notes:
Create a new support ticket in Freshdesk
| Field | Type | Default | Description |
|---|---|---|---|
| subject | text | Ticket subject line | |
| description | textarea | Ticket description/content | |
| text | Email address of the person requesting support | ||
| priority | select | 1 | Ticket priority level |
| status | select | 2 | Ticket status |
| type | text | Ticket type (optional) | |
| tags | text | Comma-separated tags |
| Name | Type | Description |
|---|---|---|
| ticket_id | number | The ID of the created ticket |
| display_id | number | The display ID of the created ticket |
| subject | string | The ticket subject |
| status | string | The ticket status |
| created_at | string | When the ticket was created |
Update an existing ticket in Freshdesk
| Field | Type | Default | Description |
|---|---|---|---|
| ticket_id | number | ID of the ticket to update | |
| priority | select | New priority level | |
| status | select | New ticket status | |
| note | textarea | Add a note to the ticket |
| Name | Type | Description |
|---|---|---|
| ticket_id | number | The ID of the updated ticket |
| status | string | The updated ticket status |
| updated_at | string | When the ticket was last updated |
Retrieve details of a specific ticket
| Field | Type | Default | Description |
|---|---|---|---|
| ticket_id | number | ID of the ticket to retrieve |
| Name | Type | Description |
|---|---|---|
| ticket_id | number | The ticket ID |
| display_id | number | The display ID |
| subject | string | Ticket subject |
| description | string | Ticket description |
| status | string | Current ticket status |
| priority | string | Ticket priority |
| requester_email | string | Email of the requester |
| created_at | string | When the ticket was created |
| updated_at | string | When the ticket was last updated |
Add a note/reply to an existing ticket
| Field | Type | Default | Description |
|---|---|---|---|
| ticket_id | number | ID of the ticket to add note to | |
| body | textarea | Content of the note | |
| private | checkbox | Make this note private (internal only) |
| Name | Type | Description |
|---|---|---|
| note_id | number | The ID of the created note |
| body | string | The note content |
| created_at | string | When the note was created |
Get a list of tickets with optional filtering
| Field | Type | Default | Description |
|---|---|---|---|
| filter | select | all | Filter tickets by status |
| page | number | 1 | Page number for pagination |
| per_page | number | 30 | Number of tickets per page (max 100) |
| Name | Type | Description |
|---|---|---|
| tickets | array | Array of ticket objects |
| total_count | number | Total number of tickets |
CRM with built-in email and phone functionality for complete sales automation
Notes:
Get list of leads from Freshsales
| Field | Type | Default | Description |
|---|---|---|---|
| view | select | Filter leads by view | |
| page | number | 1 | Page number for pagination |
| perPage | number | 25 | Number of leads per page (max 100) |
| Name | Type | Description |
|---|---|---|
| leads | array | |
| count | number | |
| totalCount | number | |
| success | boolean |
Create a new lead in Freshsales
| Field | Type | Default | Description |
|---|---|---|---|
| firstName | text | Lead's first name | |
| lastName | text | Lead's last name | |
| text | Lead's email address | ||
| phone | text | Lead's phone number | |
| company | text | Lead's company name | |
| jobTitle | text | Lead's job title | |
| leadSource | text | Source of the lead (e.g., Website, Advertisement) | |
| status | select | Lead status |
| Name | Type | Description |
|---|---|---|
| leadId | string | |
| lead | object | |
| success | boolean |
Update an existing lead
| Field | Type | Default | Description |
|---|---|---|---|
| leadId | text | The ID of the lead to update | |
| updateData | textarea | Lead data to update as JSON object |
| Name | Type | Description |
|---|---|---|
| lead | object | |
| updated | boolean | |
| success | boolean |
Get list of contacts from Freshsales
| Field | Type | Default | Description |
|---|---|---|---|
| page | number | 1 | Page number for pagination |
| perPage | number | 25 | Number of contacts per page (max 100) |
| Name | Type | Description |
|---|---|---|
| contacts | array | |
| count | number | |
| success | boolean |
Create a new contact in Freshsales
| Field | Type | Default | Description |
|---|---|---|---|
| firstName | text | Contact's first name | |
| lastName | text | Contact's last name | |
| text | Contact's email address | ||
| phone | text | Contact's phone number | |
| jobTitle | text | Contact's job title | |
| accountId | text | ID of the account to associate with |
| Name | Type | Description |
|---|---|---|
| contactId | string | |
| contact | object | |
| success | boolean |
Get list of accounts from Freshsales
| Field | Type | Default | Description |
|---|---|---|---|
| page | number | 1 | Page number for pagination |
| perPage | number | 25 | Number of accounts per page (max 100) |
| Name | Type | Description |
|---|---|---|
| accounts | array | |
| count | number | |
| success | boolean |
Create a new account in Freshsales
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the account/company | |
| website | text | Company website URL | |
| phone | text | Company phone number | |
| industry | text | Company industry | |
| annualRevenue | number | Company annual revenue | |
| numberOfEmployees | number | Company size in employees |
| Name | Type | Description |
|---|---|---|
| accountId | string | |
| account | object | |
| success | boolean |
Get list of deals from Freshsales
| Field | Type | Default | Description |
|---|---|---|---|
| view | select | Filter deals by view | |
| page | number | 1 | Page number for pagination |
| perPage | number | 25 | Number of deals per page (max 100) |
| Name | Type | Description |
|---|---|---|
| deals | array | |
| count | number | |
| totalValue | number | |
| success | boolean |
Create a new deal in Freshsales
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the deal | |
| amount | number | Deal value in your base currency | |
| accountId | text | ID of the associated account | |
| contactId | text | ID of the primary contact | |
| expectedCloseDate | text | Expected close date (YYYY-MM-DD format) | |
| dealPipelineId | text | ID of the deal pipeline | |
| dealStageId | text | ID of the deal stage |
| Name | Type | Description |
|---|---|---|
| dealId | string | |
| deal | object | |
| success | boolean |
Send an email through Freshsales
| Field | Type | Default | Description |
|---|---|---|---|
| to | text | Recipient email address | |
| subject | text | Email subject line | |
| body | textarea | Email content (HTML supported) | |
| cc | text | CC email addresses (comma-separated) | |
| bcc | text | BCC email addresses (comma-separated) | |
| targetableType | select | Type of record this email relates to | |
| targetableId | text | ID of the related record |
| Name | Type | Description |
|---|---|---|
| emailId | string | |
| object | ||
| sent | boolean | |
| success | boolean |
Log a phone call activity
| Field | Type | Default | Description |
|---|---|---|---|
| targetableType | select | Type of record this call relates to | |
| targetableId | text | ID of the related record | |
| callType | select | Type of call | |
| outcome | select | Outcome of the call | |
| duration | number | Call duration in seconds | |
| notes | textarea | Notes about the call |
| Name | Type | Description |
|---|---|---|
| callId | string | |
| call | object | |
| success | boolean |
Create a new task or reminder
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | Title of the task | |
| description | textarea | Task description | |
| dueDate | text | Due date (YYYY-MM-DD format) | |
| targetableType | select | Type of record this task relates to | |
| targetableId | text | ID of the related record | |
| priority | select | Task priority |
| Name | Type | Description |
|---|---|---|
| taskId | string | |
| task | object | |
| success | boolean |
Search for records across modules
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Search term or query | |
| module | select | Module to search in | |
| limit | number | 25 | Maximum number of results |
| Name | Type | Description |
|---|---|---|
| results | array | |
| count | number | |
| query | string | |
| success | boolean |
Contact information and social profile enrichment service with identity resolution and comprehensive person data
Notes:
Enrich person data with comprehensive profile and social information
| Field | Type | Default | Description |
|---|---|---|---|
| text | Email address to enrich | ||
| phone | text | Phone number to enrich (E.164 format) | |
| text | Twitter username (without @) | ||
| text | LinkedIn profile URL | ||
| full_name | text | Person's full name for additional context | |
| location | text | Person's location for additional context | |
| include_details | select | person+social | Level of detail to include in response |
| Name | Type | Description |
|---|---|---|
| person | object | Comprehensive person profile information |
| social_profiles | array | Social media profiles and professional links |
| work_info | object | Employment and professional details |
| demographics | object | Demographic and lifestyle information |
| confidence | number | Data confidence score from 0-1 |
Enrich company data with business intelligence and social presence
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | Company domain to enrich | |
| company_name | text | Company name to enrich | |
| include_details | select | company+social | Level of detail to include in response |
| Name | Type | Description |
|---|---|---|
| company | object | Comprehensive company information |
| social_profiles | array | Company social media presence |
| website_info | object | Website and digital presence data |
| confidence | number | Data confidence score from 0-1 |
Resolve and unify multiple identifiers into a single person profile
| Field | Type | Default | Description |
|---|---|---|---|
| identifiers | textarea | {"emails": [], "phones": [], "social_profiles": []} | Array of identifiers to resolve (emails, phones, social profiles) |
| include_details | select | person+social | Level of detail to include in response |
| Name | Type | Description |
|---|---|---|
| resolved_person | object | Unified person profile from multiple identifiers |
| matched_identifiers | array | Identifiers that matched the resolved person |
| confidence | number | Resolution confidence score from 0-1 |
Verify email address validity and deliverability
| Field | Type | Default | Description |
|---|---|---|---|
| text | Email address to verify |
| Name | Type | Description |
|---|---|---|
| string | The email address that was verified | |
| is_valid | boolean | Whether the email address is valid |
| is_deliverable | boolean | Whether the email address is deliverable |
| is_risky | boolean | Whether the email address is considered risky |
| is_disposable | boolean | Whether the email is from a disposable email service |
| reputation | string | Email reputation: high, medium, low |
| confidence | number | Verification confidence score from 0-1 |
Create a custom audience for targeting and segmentation
| Field | Type | Default | Description |
|---|---|---|---|
| audience_name | text | Name for the custom audience | |
| identifiers | textarea | Array of emails, phones, or other identifiers for the audience | |
| webhook_url | text | Webhook URL for processing completion notifications |
| Name | Type | Description |
|---|---|---|
| audience_id | string | Unique identifier for the created audience |
| audience_name | string | Name of the created audience |
| total_identifiers | number | Number of identifiers in the audience |
| status | string | Processing status of the audience creation |
Enrich an existing audience with additional profile data
| Field | Type | Default | Description |
|---|---|---|---|
| audience_id | text | ID of the audience to enrich | |
| include_details | select | person+social | Level of detail to include in enrichment |
| webhook_url | text | Webhook URL for completion notifications |
| Name | Type | Description |
|---|---|---|
| enrichment_id | string | Unique identifier for the enrichment job |
| audience_id | string | ID of the audience being enriched |
| status | string | Status of the enrichment process |
| estimated_completion | string | Estimated completion time for enrichment |
Create permission record for marketing compliance
| Field | Type | Default | Description |
|---|---|---|---|
| text | Email address for permission record | ||
| permission_type | select | Type of marketing permission | |
| consent_date | text | Date consent was given (YYYY-MM-DD) | |
| source | text | Source where permission was obtained |
| Name | Type | Description |
|---|---|---|
| permission_id | string | Unique identifier for the permission record |
| string | Email address for the permission | |
| permission_type | string | Type of marketing permission granted |
| status | string | Permission status: active, inactive, pending |
Verify marketing permission status for compliance
| Field | Type | Default | Description |
|---|---|---|---|
| text | Email address to verify permission for | ||
| permission_type | select | Type of marketing permission to verify |
| Name | Type | Description |
|---|---|---|
| string | Email address that was verified | |
| has_permission | boolean | Whether permission exists for the specified type |
| permission_type | string | Type of permission that was verified |
| consent_date | string | Date when consent was originally given |
| source | string | Source where permission was obtained |
Digital experience analytics and user behavior insights with session recordings and advanced search capabilities
Notes:
Retrieve user sessions with filtering and search capabilities
| Field | Type | Default | Description |
|---|---|---|---|
| startTime | text | Start time for session search | |
| endTime | text | End time for session search | |
| userEmail | text | Filter sessions by user email | |
| userId | text | Filter sessions by user ID | |
| limit | number | 50 | Maximum number of sessions to return |
| Name | Type | Description |
|---|---|---|
| sessions | array | |
| sessionCount | number | |
| totalDuration | number | |
| averageDuration | number |
Retrieve custom events tracked in FullStory
| Field | Type | Default | Description |
|---|---|---|---|
| eventName | text | Filter by specific event name | |
| startTime | text | Start time for event search | |
| endTime | text | End time for event search | |
| properties | textarea | Filter events by properties | |
| limit | number | 100 | Maximum number of events to return |
| Name | Type | Description |
|---|---|---|
| events | array | |
| eventCount | number | |
| uniqueEvents | array | |
| eventSummary | object |
Search sessions using FullStory search syntax
| Field | Type | Default | Description |
|---|---|---|---|
| searchQuery | textarea | FullStory search query (e.g., "clicked button AND page https://example.com") | |
| startTime | text | Limit search to sessions after this time | |
| endTime | text | Limit search to sessions before this time | |
| limit | number | 25 | Maximum number of sessions to return |
| Name | Type | Description |
|---|---|---|
| sessions | array | |
| sessionCount | number | |
| searchQuery | string | |
| insights | object |
Analyze user journey and behavior patterns
| Field | Type | Default | Description |
|---|---|---|---|
| userId | text | User ID to analyze journey for | |
| timeRange | select | 7d |
| Name | Type | Description |
|---|---|---|
| journeyData | object | |
| sessionCount | number | |
| pagesVisited | array | |
| conversionEvents | array | |
| behaviorPatterns | array |
Analyze conversion funnels with detailed drop-off insights
| Field | Type | Default | Description |
|---|---|---|---|
| funnelSteps | textarea | Array of funnel step definitions | |
| timeRange | select | 30d | |
| segmentBy | text | Property to segment funnel by (e.g., "device", "browser") |
| Name | Type | Description |
|---|---|---|
| funnelData | array | |
| conversionRate | number | |
| stepConversions | array | |
| dropOffAnalysis | array | |
| segments | object |
Retrieve click and scroll heatmap data for pages
| Field | Type | Default | Description |
|---|---|---|---|
| pageUrl | text | URL of the page to get heatmap data for | |
| heatmapType | select | click | |
| timeRange | select | 30d |
| Name | Type | Description |
|---|---|---|
| heatmapData | object | |
| clickPoints | array | |
| scrollDepth | object | |
| topElements | array |
Identify rage clicks and user frustration points
| Field | Type | Default | Description |
|---|---|---|---|
| pageUrl | text | Filter rage clicks for specific page | |
| timeRange | select | 7d | |
| threshold | number | 3 | Minimum clicks to classify as rage |
| Name | Type | Description |
|---|---|---|
| rageClicks | array | |
| rageClickCount | number | |
| affectedSessions | number | |
| topFrustrationPoints | array |
Retrieve JavaScript errors and console messages
| Field | Type | Default | Description |
|---|---|---|---|
| errorType | select | all | |
| pageUrl | text | Filter errors for specific page | |
| timeRange | select | 7d |
| Name | Type | Description |
|---|---|---|
| errors | array | |
| errorCount | number | |
| uniqueErrors | array | |
| errorFrequency | object | |
| affectedUsers | number |
Extract software reviews, ratings, and feedback from G2.com with sorting and filtering options
Notes:
Extract software reviews and ratings from G2.com product pages
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | G2 software product review URLs to scrape | |
| pages | number | 10 | Number of review pages to scrape per product |
| sortFilter | select | How to sort the reviews | |
| startDate | text | Filter reviews from this date onwards (ISO 8601 format, optional) |
| Name | Type | Description |
|---|---|---|
| reviews | array | Software reviews with ratings, feedback, and reviewer details |
| count | number | Number of reviews extracted |
Free project scheduling application with Gantt charts and resource management
Notes:
Create a new task in GanttProject
| Field | Type | Default | Description |
|---|---|---|---|
| project_id | text | The ID of the project | |
| name | text | The name of the task |
| Name | Type | Description |
|---|---|---|
| task_id | string | The unique ID of the created task |
Regulated cryptocurrency exchange with institutional-grade security
Extract AI-powered search results from Google Gemini with prompt-based queries and source citations
Notes:
Query Google Gemini AI and extract search results with responses
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | The prompt or question to search for in Gemini. Each prompt is a separate query with no context between searches. | |
| index | number | 1 | Index number for tracking this query (optional) |
| Name | Type | Description |
|---|---|---|
| response | object | AI-generated response with sources and citations |
| count | number | Number of responses (typically 1) |
Email marketing automation platform with landing pages, webinars, and marketing funnels
Notes:
Retrieve contacts from your GetResponse account
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Search contacts by email or name | |
| campaign_id | text | Filter contacts by campaign ID | |
| sort_order | select | desc | |
| limit | number | 100 | Number of contacts to retrieve (max 1000) |
| Name | Type | Description |
|---|---|---|
| contacts | array | Array of contact objects |
| total | number | Total number of contacts |
Create a new contact in GetResponse
| Field | Type | Default | Description |
|---|---|---|---|
| text | Contact email address | ||
| campaign_id | text | Campaign to add the contact to | |
| name | text | Contact name | |
| custom_fields | textarea | {} | Custom fields as JSON object (e.g. {"customFieldId": "value"}) |
| tags | textarea | [] | Tags as JSON array (e.g. ["tag1", "tag2"]) |
| day_of_cycle | number | Start contact on specific day of autoresponder cycle |
| Name | Type | Description |
|---|---|---|
| contact_id | string | ID of the created contact |
| string | Email address of the created contact |
Update an existing contact in GetResponse
| Field | Type | Default | Description |
|---|---|---|---|
| contact_id | text | ID of the contact to update | |
| name | text | Updated contact name | |
| custom_fields | textarea | {} | Custom fields to update as JSON object |
| tags | select | add | |
| tag_list | textarea | [] | Tags to add/remove/replace as JSON array |
| Name | Type | Description |
|---|---|---|
| contact_id | string | ID of the updated contact |
| updated | boolean | Whether the contact was successfully updated |
Delete a contact from GetResponse
| Field | Type | Default | Description |
|---|---|---|---|
| contact_id | text | ID of the contact to delete |
| Name | Type | Description |
|---|---|---|
| deleted | boolean | Whether the contact was successfully deleted |
Retrieve campaigns (lists) from your GetResponse account
| Field | Type | Default | Description |
|---|---|---|---|
| sort_order | select | desc |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of campaign objects |
Create a new campaign (list) in GetResponse
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name for the new campaign | |
| description | textarea | Campaign description | |
| from_name | text | Default sender name for campaign emails | |
| from_email | text | Default sender email address | |
| reply_to_email | text | Reply-to email address |
| Name | Type | Description |
|---|---|---|
| campaign_id | string | ID of the created campaign |
| name | string | Name of the created campaign |
Retrieve newsletters from your GetResponse account
| Field | Type | Default | Description |
|---|---|---|---|
| type | select | all | |
| campaign_id | text | Filter by campaign | |
| limit | number | 100 | Number of newsletters to retrieve |
| Name | Type | Description |
|---|---|---|
| newsletters | array | Array of newsletter objects |
Create and optionally send a newsletter
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | Campaign to send newsletter to | |
| subject | text | Email subject line | |
| from_name | text | Sender name | |
| from_email | text | Sender email address | |
| html_content | textarea | HTML content of the email | |
| plain_content | textarea | Plain text version of the email | |
| send_now | checkbox | Send newsletter immediately after creation |
| Name | Type | Description |
|---|---|---|
| newsletter_id | string | ID of the created newsletter |
| status | string | Newsletter status (draft or sent) |
Retrieve all tags from your GetResponse account
| Name | Type | Description |
|---|---|---|
| tags | array | Array of tag objects |
Retrieve webinars from your GetResponse account
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | all |
| Name | Type | Description |
|---|---|---|
| webinars | array | Array of webinar objects |
Integrate with Ghost CMS to manage posts, members, and more.
Notes:
Creates a new post in your Ghost CMS blog.
| Name | Type | Required | Description |
|---|---|---|---|
| title | string | Yes | The title for the new post. |
| html_content | textarea | Yes | The main HTML content for the post. |
| status | select | No | Set status to draft or published. |
| tags | array | No | Provide an array of tag names, e.g., ["news", "update"], or map an array parameter. |
| Field | Type | Default | Description |
|---|---|---|---|
| title | string | Static title. Overridden if "Post Title" input is mapped. | |
| html_content | textarea | Static HTML content. Overridden if "HTML Content" input is mapped. | |
| status | select | draft | Static status. Overridden if "Status" input is mapped. |
| tags_string | string | Enter tags as a comma-separated string (e.g., tech,news). Overridden if "Tags" array input is mapped. |
| Name | Type | Description |
|---|---|---|
| post_id | string | The ID of the created post. |
| post_url | string | The URL of the created post. |
| post_slug | string | The slug of the created post. |
| title | string | The title of the created post. |
| status | string | The status of the created post. |
| published_at | string | Timestamp when the post was published (if applicable). |
Retrieves a list of posts from your Ghost CMS blog.
| Name | Type | Required | Description |
|---|---|---|---|
| limit | integer | No | Number of posts to retrieve (default 15). |
| filter | string | No | Ghost Admin API filter string (e.g., tag:getting-started+status:published). See Ghost docs for syntax. |
| fields | string | No | Comma-separated list of fields to return (e.g., id,title,url). |
| order | string | No | Order of posts (e.g., published_at asc). |
| Field | Type | Default | Description |
|---|---|---|---|
| limit | integer | 15 | Static limit. Overridden if "Limit" input is mapped. |
| filter | string | Static filter string. Overridden if "Filter" input is mapped. | |
| fields | string | id,title,url,slug,html,status,published_at | Static fields list. Overridden if "Fields" input is mapped. |
| order | string | published_at desc | Static order. Overridden if "Order" input is mapped. |
| Name | Type | Description |
|---|---|---|
| posts | array | An array of post objects retrieved from Ghost. |
| meta | object | Pagination and other meta data returned by the Ghost API. |
GIF search and integration platform for adding animated content to applications
Notes:
Search for GIFs on Giphy by query
| Field | Type | Default | Description |
|---|---|---|---|
| q | text | Search term or phrase (e.g., "funny cats", "happy dance") | |
| limit | number | 25 | Number of GIFs to return (max 100) |
| offset | number | 0 | Results offset for pagination |
| rating | select | g | Filter by content rating |
| lang | select | en | Language for search results |
| Name | Type | Description |
|---|---|---|
| gifs | array | Array of GIF objects with URLs and metadata |
| pagination | object | Pagination details including total count and offset |
| totalCount | number | Total number of GIFs matching the search |
| count | number | Number of GIFs returned in this response |
Get currently trending GIFs
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 25 | Number of trending GIFs to return (max 100) |
| offset | number | 0 | Results offset for pagination |
| rating | select | g | Filter by content rating |
| Name | Type | Description |
|---|---|---|
| gifs | array | Array of trending GIF objects |
| pagination | object | Pagination details |
| count | number | Number of GIFs returned |
Get a specific GIF by its ID
| Field | Type | Default | Description |
|---|---|---|---|
| gif_id | text | Giphy GIF ID or URL |
| Name | Type | Description |
|---|---|---|
| gif | object | Complete GIF information |
| id | string | Unique GIF identifier |
| title | string | GIF title |
| url | string | URL to the GIF page on Giphy |
| images | object | Different sizes and formats of the GIF |
| user | object | Information about the GIF creator |
Get a random GIF, optionally filtered by tag
| Field | Type | Default | Description |
|---|---|---|---|
| tag | text | Filter random GIF by tag | |
| rating | select | g | Filter by content rating |
| Name | Type | Description |
|---|---|---|
| gif | object | Random GIF object |
| id | string | Unique GIF identifier |
| title | string | GIF title |
| url | string | URL to the GIF page on Giphy |
| images | object | Different sizes and formats of the GIF |
Search for stickers on Giphy by query
| Field | Type | Default | Description |
|---|---|---|---|
| q | text | Search term for stickers | |
| limit | number | 25 | Number of stickers to return (max 100) |
| offset | number | 0 | Results offset for pagination |
| rating | select | g | Filter by content rating |
| lang | select | en | Language for search results |
| Name | Type | Description |
|---|---|---|
| stickers | array | Array of sticker objects with URLs and metadata |
| pagination | object | Pagination details including total count and offset |
| totalCount | number | Total number of stickers matching the search |
| count | number | Number of stickers returned in this response |
Get currently trending stickers
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 25 | Number of trending stickers to return (max 100) |
| offset | number | 0 | Results offset for pagination |
| rating | select | g | Filter by content rating |
| Name | Type | Description |
|---|---|---|
| stickers | array | Array of trending sticker objects |
| pagination | object | Pagination details |
| count | number | Number of stickers returned |
Translate text or emoji into a relevant GIF
| Field | Type | Default | Description |
|---|---|---|---|
| s | text | Text, phrase, or emoji to translate into a GIF | |
| weirdness | select | 5 | How weird/unexpected should the result be? |
| Name | Type | Description |
|---|---|---|
| gif | object | GIF that represents the translated text |
| id | string | Unique GIF identifier |
| title | string | GIF title |
| url | string | URL to the GIF page on Giphy |
| images | object | Different sizes and formats of the GIF |
Extract repositories, user profiles, commits, issues, and pull requests from GitHub with 3 comprehensive operations
Notes:
Extract detailed repository information from GitHub URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | GitHub repository URLs to scrape (can include file paths) |
| Name | Type | Description |
|---|---|---|
| repositories | array | Detailed repository information with metadata and statistics |
| count | number | Number of repositories scraped |
Find repositories using GitHub search URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | GitHub search URLs (e.g., https://github.com/search?q=ML&type=repositories) |
| Name | Type | Description |
|---|---|---|
| repositories | array | Repositories matching the search criteria |
| count | number | Number of repositories found |
Explore and extract detailed data from specific GitHub repositories
| Field | Type | Default | Description |
|---|---|---|---|
| repoUrls | textarea | GitHub repository URLs for detailed exploration |
| Name | Type | Description |
|---|---|---|
| repositories | array | Comprehensive repository data with files, commits, and contributors |
| count | number | Number of repositories explored |
Extract company reviews, salaries, job postings, and employment insights from Glassdoor with 8 comprehensive operations
Notes:
Extract company overview information from Glassdoor URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Glassdoor company overview URLs to scrape |
| Name | Type | Description |
|---|---|---|
| companies | array | Company overview information with ratings and culture insights |
| count | number | Number of companies scraped |
Find companies using location, industry, and job title filters
| Field | Type | Default | Description |
|---|---|---|---|
| location | text | Location to search for companies (e.g., "United States", "France") | |
| industries | text | Industry filter (e.g., "Banking & Lending", "Information Technology") | |
| jobTitle | text | Job title to filter by (e.g., "Data Scientist", "Manager") |
| Name | Type | Description |
|---|---|---|
| companies | array | Companies matching the specified filters |
| count | number | Number of companies found |
Find companies using keyword search URLs
| Field | Type | Default | Description |
|---|---|---|---|
| searchUrl | text | Glassdoor company search URL (e.g., https://www.glassdoor.com/Search/results.htm?keyword=Apple) | |
| maxSearchResults | number | 10 | Maximum number of companies to collect from search results |
| Name | Type | Description |
|---|---|---|
| companies | array | Companies found through keyword search |
| count | number | Number of companies found |
Extract companies from Glassdoor browse/explore URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Glassdoor browse/explore URLs with filters |
| Name | Type | Description |
|---|---|---|
| companies | array | Companies from browse/explore pages |
| count | number | Number of companies found |
Extract job posting details from Glassdoor job URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Glassdoor job listing URLs to scrape |
| Name | Type | Description |
|---|---|---|
| jobs | array | Job postings with salary, requirements, and company details |
| count | number | Number of job listings scraped |
Find job listings using location and keyword search
| Field | Type | Default | Description |
|---|---|---|---|
| location | text | Location to search for jobs (e.g., "New York", "Paris") | |
| keyword | text | Job title or keyword (e.g., "data analyst", "product manager") | |
| country | text | Country code for location (e.g., "US", "FR") |
| Name | Type | Description |
|---|---|---|
| jobs | array | Jobs matching the search criteria |
| count | number | Number of jobs found |
Extract job listings from company job pages or search URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Glassdoor company jobs pages or search URLs |
| Name | Type | Description |
|---|---|---|
| jobs | array | Jobs found from the specified URLs |
| count | number | Number of jobs extracted |
Extract employee reviews from Glassdoor company review pages
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Glassdoor company review page URLs | |
| days | number | 30 | Number of days to go back to gather reviews from |
| Name | Type | Description |
|---|---|---|
| reviews | array | Employee reviews with ratings and feedback |
| count | number | Number of reviews extracted |
Send, receive, and manage Gmail messages with full email automation capabilities
Notes:
Retrieve a single email message by ID with full details
| Name | Type | Required | Description |
|---|---|---|---|
| messageId | string | Yes | Gmail message ID |
| format | string | No | Response format (full, metadata, minimal, raw) |
| Field | Type | Default | Description |
|---|---|---|---|
| messageId | text | Gmail message ID. Mapped input takes precedence. | |
| format | select | full | Response detail level |
| Name | Type | Description |
|---|---|---|
| id | string | |
| threadId | string | |
| from | string | |
| to | string | |
| cc | string | |
| subject | string | |
| date | string | |
| body | string | |
| bodyHtml | string | |
| snippet | string | |
| attachments | array | |
| hasAttachments | boolean | |
| labelIds | array |
Retrieve a complete email thread with all messages in the conversation
| Name | Type | Required | Description |
|---|---|---|---|
| threadId | string | Yes | Gmail thread ID |
| format | string | No | Response format (full, metadata, minimal) |
| Field | Type | Default | Description |
|---|---|---|---|
| threadId | text | Gmail thread ID. Use [[nodes.x.threadId]] from sendEmail or getMessage outputs. | |
| format | select | full | Response detail level |
| Name | Type | Description |
|---|---|---|
| threadId | string | |
| historyId | string | |
| snippet | string | |
| messageCount | integer | |
| messages | array |
List email messages with optional filters
| Name | Type | Required | Description |
|---|---|---|---|
| query | string | No | Gmail query syntax (e.g., "from:john@example.com is:unread") |
| maxResults | integer | No | Maximum number of messages (1-500, default 50) |
| labelIds | array | No | Filter by label IDs (e.g., ["INBOX", "UNREAD"]) |
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Gmail query syntax. Example: from:john@example.com is:unread | |
| maxResults | number | 50 | Maximum messages to return (1-500) |
| labelIds | textarea | Filter by labels. Example: ["INBOX", "UNREAD"] |
| Name | Type | Description |
|---|---|---|
| messages | array | |
| resultSizeEstimate | integer | |
| nextPageToken | string |
Search emails using Gmail query syntax
| Name | Type | Required | Description |
|---|---|---|---|
| searchQuery | string | Yes | Gmail search query |
| maxResults | integer | No | Maximum results (default 50) |
| Field | Type | Default | Description |
|---|---|---|---|
| searchQuery | text | Gmail search query. Example: subject:invoice after:2025/01/01 | |
| maxResults | number | 50 |
| Name | Type | Description |
|---|---|---|
| messages | array | |
| resultSizeEstimate | integer | |
| nextPageToken | string |
Send a new email message with optional attachments
| Name | Type | Required | Description |
|---|---|---|---|
| to | string | Yes | Recipient email address |
| subject | string | Yes | Email subject line |
| body | string | Yes | Email body content |
| cc | string | No | CC recipients (comma-separated) |
| bcc | string | No | BCC recipients (comma-separated) |
| attachments | array | No | Array of attachment objects |
| isHtml | boolean | No | Whether body is HTML format |
| Field | Type | Default | Description |
|---|---|---|---|
| to | text | Recipient email address | |
| subject | text | Email subject line | |
| body | textarea | Email body content | |
| cc | text | CC recipients (comma-separated) | |
| bcc | text | BCC recipients (comma-separated) | |
| isHtml | checkbox | Check if body contains HTML |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| messageId | string | |
| threadId | string |
Create an email draft without sending it
| Name | Type | Required | Description |
|---|---|---|---|
| to | string | Yes | Recipient email address |
| subject | string | Yes | Email subject line |
| body | string | Yes | Email body content |
| cc | string | No | CC recipients (comma-separated) |
| bcc | string | No | BCC recipients (comma-separated) |
| isHtml | boolean | No | Whether body is HTML format |
| Field | Type | Default | Description |
|---|---|---|---|
| to | text | Recipient email address | |
| subject | text | Email subject line | |
| body | textarea | Email body content | |
| cc | text | CC recipients (comma-separated) | |
| bcc | text | BCC recipients (comma-separated) | |
| isHtml | checkbox | Check if body contains HTML |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| draftId | string | |
| messageId | string | |
| threadId | string |
Reply to an existing email message
| Name | Type | Required | Description |
|---|---|---|---|
| messageId | string | Yes | ID of message to reply to |
| body | string | Yes | Reply message content |
| replyAll | boolean | No | Reply to all recipients |
| isHtml | boolean | No | Whether body is HTML |
| Field | Type | Default | Description |
|---|---|---|---|
| messageId | text | ID of message to reply to | |
| body | textarea | Your reply message | |
| replyAll | checkbox | Include all recipients in reply | |
| isHtml | checkbox |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| messageId | string | |
| threadId | string |
Get all Gmail labels (system and custom)
| Name | Type | Description |
|---|---|---|
| labels | array |
Create a new Gmail label
| Name | Type | Required | Description |
|---|---|---|---|
| labelName | string | Yes | Name for the new label |
| visibility | string | No | Label visibility setting |
| Field | Type | Default | Description |
|---|---|---|---|
| labelName | text | Name for the new label | |
| visibility | select | labelShow |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| labelId | string | |
| labelName | string |
Add one or more labels to an email
| Name | Type | Required | Description |
|---|---|---|---|
| messageId | string | Yes | Email message ID |
| labelIds | array | Yes | Array of label IDs to add |
| Field | Type | Default | Description |
|---|---|---|---|
| messageId | text | ||
| labelIds | textarea | Array of label IDs. Example: ["Label_1", "Label_2"] |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| messageId | string | |
| labelIds | array |
Remove one or more labels from an email
| Name | Type | Required | Description |
|---|---|---|---|
| messageId | string | Yes | |
| labelIds | array | Yes |
| Field | Type | Default | Description |
|---|---|---|---|
| messageId | text | ||
| labelIds | textarea | Array of label IDs to remove |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| messageId | string | |
| labelIds | array |
Mark an email as read
| Name | Type | Required | Description |
|---|---|---|---|
| messageId | string | Yes |
| Field | Type | Default | Description |
|---|---|---|---|
| messageId | text |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| messageId | string |
Mark an email as unread
| Name | Type | Required | Description |
|---|---|---|---|
| messageId | string | Yes |
| Field | Type | Default | Description |
|---|---|---|---|
| messageId | text |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| messageId | string |
Archive an email (remove from inbox)
| Name | Type | Required | Description |
|---|---|---|---|
| messageId | string | Yes |
| Field | Type | Default | Description |
|---|---|---|---|
| messageId | text |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| messageId | string |
Move an email to trash
| Name | Type | Required | Description |
|---|---|---|---|
| messageId | string | Yes |
| Field | Type | Default | Description |
|---|---|---|---|
| messageId | text |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| messageId | string |
Permanently delete an email
| Name | Type | Required | Description |
|---|---|---|---|
| messageId | string | Yes |
| Field | Type | Default | Description |
|---|---|---|---|
| messageId | text |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| messageId | string | |
| deleted | boolean |
Download an attachment from an email
| Name | Type | Required | Description |
|---|---|---|---|
| messageId | string | Yes | |
| attachmentId | string | Yes |
| Field | Type | Default | Description |
|---|---|---|---|
| messageId | text | ||
| attachmentId | text |
| Name | Type | Description |
|---|---|---|
| attachmentId | string | |
| size | integer | |
| content | binary |
Website traffic analysis, conversion tracking, audience insights, and comprehensive analytics reporting
Notes:
Get real-time analytics data from GA4
| Field | Type | Default | Description |
|---|---|---|---|
| metrics | select | Metric to retrieve | |
| dimensions | select | Dimension to group by |
| Name | Type | Description |
|---|---|---|
| data | array | |
| total_users | number | |
| report_date | string |
Get website traffic analytics from GA4
| Field | Type | Default | Description |
|---|---|---|---|
| startDate | date | Start date for the report (YYYY-MM-DD) | |
| endDate | date | End date for the report (YYYY-MM-DD) | |
| metrics | select | Traffic metrics to retrieve | |
| dimensions | select | How to group the data |
| Name | Type | Description |
|---|---|---|
| data | array | |
| total_sessions | number | |
| total_users | number | |
| date_range | string |
Get conversion analytics from GA4
| Field | Type | Default | Description |
|---|---|---|---|
| startDate | date | Start date for the report (YYYY-MM-DD) | |
| endDate | date | End date for the report (YYYY-MM-DD) | |
| conversionEvent | text | Specific conversion event name (leave empty for all) |
| Name | Type | Description |
|---|---|---|
| conversions | array | |
| total_conversions | number | |
| conversion_rate | number | |
| conversion_value | number |
Get audience demographics and interests from GA4
| Field | Type | Default | Description |
|---|---|---|---|
| startDate | date | Start date for the report (YYYY-MM-DD) | |
| endDate | date | End date for the report (YYYY-MM-DD) | |
| audienceType | select | Type of audience data to retrieve |
| Name | Type | Description |
|---|---|---|
| audience_data | array | |
| total_users | number | |
| audience_type | string | |
| date_range | string |
Get page performance analytics from GA4
| Field | Type | Default | Description |
|---|---|---|---|
| startDate | date | Start date for the report (YYYY-MM-DD) | |
| endDate | date | End date for the report (YYYY-MM-DD) | |
| limit | number | 50 | Number of top pages to retrieve (1-1000) |
| pagePath | text | Filter by specific page path (e.g., /about) |
| Name | Type | Description |
|---|---|---|
| pages | array | |
| total_pageviews | number | |
| total_unique_pageviews | number | |
| date_range | string |
Get custom event analytics from GA4
| Field | Type | Default | Description |
|---|---|---|---|
| startDate | date | Start date for the report (YYYY-MM-DD) | |
| endDate | date | End date for the report (YYYY-MM-DD) | |
| eventName | text | Specific event name to filter (leave empty for all) | |
| limit | number | 50 | Number of top events to retrieve (1-1000) |
| Name | Type | Description |
|---|---|---|
| events | array | |
| total_events | number | |
| unique_events | number | |
| date_range | string |
Get ecommerce analytics from GA4
| Field | Type | Default | Description |
|---|---|---|---|
| startDate | date | Start date for the report (YYYY-MM-DD) | |
| endDate | date | End date for the report (YYYY-MM-DD) | |
| reportType | select | Type of ecommerce data to retrieve |
| Name | Type | Description |
|---|---|---|
| ecommerce_data | array | |
| total_revenue | number | |
| total_transactions | number | |
| average_order_value | number | |
| date_range | string |
Get custom analytics report with specific metrics and dimensions
| Field | Type | Default | Description |
|---|---|---|---|
| startDate | date | Start date for the report (YYYY-MM-DD) | |
| endDate | date | End date for the report (YYYY-MM-DD) | |
| customMetrics | text | Comma-separated metric names (e.g., sessions,users,bounceRate) | |
| customDimensions | text | Comma-separated dimension names (e.g., date,country,source) | |
| limit | number | 100 | Maximum number of rows to return (1-10000) |
| Name | Type | Description |
|---|---|---|
| report_data | array | |
| total_rows | number | |
| metrics_used | array | |
| dimensions_used | array | |
| date_range | string |
Create, read, update, and delete Google Calendar events
Read, create, and edit Google Docs documents programmatically
Notes:
Get the content of a Google Doc by document ID
| Field | Type | Default | Description |
|---|---|---|---|
| documentId | text | The Google Docs document ID (found in the URL after /d/) |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the operation was successful |
| title | string | The title of the document |
| content | string | The full text content of the document |
| documentId | string | The document identifier |
| revisionId | string | The revision ID of the document |
Get the content of a Google Doc using its full URL
| Field | Type | Default | Description |
|---|---|---|---|
| documentUrl | text | The full Google Docs URL (e.g., https://docs.google.com/document/d/ABC123/edit) |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the operation was successful |
| title | string | The title of the document |
| content | string | The full text content of the document |
| documentId | string | The document identifier |
| revisionId | string | The revision ID of the document |
Create a new Google Docs document with a title
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | The title for the new document |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the document was created successfully |
| documentId | string | The ID of the newly created document |
| title | string | The title of the created document |
| documentUrl | string | The URL to access the document |
| revisionId | string | The revision ID of the document |
Append text to the end of a Google Doc
| Field | Type | Default | Description |
|---|---|---|---|
| documentId | text | The Google Docs document ID | |
| text | textarea | The text content to append to the document |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the text was appended successfully |
| documentId | string | The document identifier |
| revisionId | string | The new revision ID after the update |
Insert text at a specific position in a Google Doc
| Field | Type | Default | Description |
|---|---|---|---|
| documentId | text | The Google Docs document ID | |
| text | textarea | The text content to insert | |
| index | number | 1 | Character index where to insert (1 = beginning of document) |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the text was inserted successfully |
| documentId | string | The document identifier |
| revisionId | string | The new revision ID after the update |
Find and replace all occurrences of text in a Google Doc
| Field | Type | Default | Description |
|---|---|---|---|
| documentId | text | The Google Docs document ID | |
| findText | text | The text to find and replace | |
| replaceText | text | The replacement text | |
| matchCase | checkbox | Whether the search should be case-sensitive |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the replace operation was successful |
| documentId | string | The document identifier |
| replacements | number | Number of replacements made |
| revisionId | string | The new revision ID after the update |
Connect to Google Drive for file storage and management
Notes:
List files in Google Drive or a specific folder
| Name | Type | Required | Description |
|---|---|---|---|
| folderId | string | No | ID of the folder to list files from (leave empty for root) |
| pageSize | integer | No | Number of files to return (max 1000, default 100) |
| Field | Type | Default | Description |
|---|---|---|---|
| folderId | string | Static folder ID. Mapped input takes precedence. | |
| pageSize | integer | 100 | Number of files to return |
| Name | Type | Description |
|---|---|---|
| files | array | |
| totalFiles | integer | |
| nextPageToken | string |
Read text file content from Google Drive
| Name | Type | Required | Description |
|---|---|---|---|
| fileId | string | Yes | Google Drive file ID |
| Field | Type | Default | Description |
|---|---|---|---|
| fileId | string | Static file ID. Mapped input takes precedence. |
| Name | Type | Description |
|---|---|---|
| content | string | |
| fileName | string | |
| fileId | string | |
| mimeType | string | |
| size | integer |
Download any file from Google Drive as binary data
| Name | Type | Required | Description |
|---|---|---|---|
| fileId | string | Yes | Google Drive file ID |
| Field | Type | Default | Description |
|---|---|---|---|
| fileId | string | Static file ID. Mapped input takes precedence. |
| Name | Type | Description |
|---|---|---|
| content | binary | |
| fileName | string | |
| fileId | string | |
| mimeType | string | |
| size | integer | |
| metadata | object |
Upload a file to Google Drive
| Name | Type | Required | Description |
|---|---|---|---|
| fileName | string | Yes | Name for the uploaded file |
| fileContent | any | Yes | File content (binary data or text) |
| folderId | string | No | Parent folder ID (leave empty for root) |
| mimeType | string | No | File MIME type (auto-detected if not provided) |
| Field | Type | Default | Description |
|---|---|---|---|
| fileName | string | Static file name. Mapped input takes precedence. | |
| fileContent | textarea | File path (e.g., /path/to/file.png) or content. Mapped input takes precedence. | |
| folderId | string | Static folder ID. Mapped input takes precedence. | |
| mimeType | string | Static MIME type. Mapped input takes precedence. |
| Name | Type | Description |
|---|---|---|
| fileId | string | |
| fileName | string | |
| mimeType | string | |
| size | integer | |
| webViewLink | string | |
| webContentLink | string | |
| createdTime | string | |
| modifiedTime | string |
Delete a file from Google Drive
| Name | Type | Required | Description |
|---|---|---|---|
| fileId | string | Yes | Google Drive file ID to delete |
| Field | Type | Default | Description |
|---|---|---|---|
| fileId | string | Static file ID. Mapped input takes precedence. |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string | |
| fileId | string |
Search for files in Google Drive
| Name | Type | Required | Description |
|---|---|---|---|
| query | string | Yes | Search query (file name or advanced query) |
| pageSize | integer | No | Number of results to return (max 1000) |
| Field | Type | Default | Description |
|---|---|---|---|
| query | string | Static search query. Mapped input takes precedence. | |
| pageSize | integer | 100 | Number of results to return |
| Name | Type | Description |
|---|---|---|
| files | array | |
| totalResults | integer | |
| nextPageToken | string | |
| query | string |
Create a new folder in Google Drive
| Name | Type | Required | Description |
|---|---|---|---|
| folderName | string | Yes | Name for the new folder |
| parentId | string | No | Parent folder ID (leave empty for root) |
| Field | Type | Default | Description |
|---|---|---|---|
| folderName | string | Static folder name. Mapped input takes precedence. | |
| parentId | string | Static parent folder ID. Mapped input takes precedence. |
| Name | Type | Description |
|---|---|---|
| folderId | string | |
| folderName | string | |
| webViewLink | string | |
| createdTime | string |
Move a file to a different folder
| Name | Type | Required | Description |
|---|---|---|---|
| fileId | string | Yes | File ID to move |
| newParentId | string | Yes | Destination folder ID |
| Field | Type | Default | Description |
|---|---|---|---|
| fileId | string | Static file ID. Mapped input takes precedence. | |
| newParentId | string | Static destination folder ID. Mapped input takes precedence. |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| fileId | string | |
| fileName | string | |
| newParents | array |
Create a copy of a file
| Name | Type | Required | Description |
|---|---|---|---|
| fileId | string | Yes | File ID to copy |
| newName | string | No | Name for the copy (optional) |
| folderId | string | No | Destination folder ID (optional) |
| Field | Type | Default | Description |
|---|---|---|---|
| fileId | string | Static file ID. Mapped input takes precedence. | |
| newName | string | Static name for copy. Mapped input takes precedence. | |
| folderId | string | Static destination folder ID. Mapped input takes precedence. |
| Name | Type | Description |
|---|---|---|
| fileId | string | |
| fileName | string | |
| mimeType | string | |
| webViewLink | string | |
| createdTime | string | |
| originalFileId | string |
List folders in Google Drive
| Name | Type | Required | Description |
|---|---|---|---|
| parentId | string | No | Parent folder ID (leave empty for root) |
| Field | Type | Default | Description |
|---|---|---|---|
| parentId | string | Static parent folder ID. Mapped input takes precedence. |
| Name | Type | Description |
|---|---|---|
| folders | array | |
| totalFolders | integer |
Share a file by creating permissions (anyone, user, group, or domain)
| Name | Type | Required | Description |
|---|---|---|---|
| fileId | string | Yes | Google Drive file ID to share |
| type | string | No | Who to share with: anyone, user, group, or domain |
| role | string | No | Permission level: reader, writer, or commenter |
| emailAddress | string | No | Email for user/group sharing |
| domain | string | No | Domain name for domain-wide sharing |
| Field | Type | Default | Description |
|---|---|---|---|
| fileId | string | Google Drive file ID to share | |
| type | select | anyone | Who should have access to this file |
| role | select | reader | What level of access to grant |
| emailAddress | string | Required when sharing with specific user or group | |
| domain | string | Required when sharing with an organization domain | |
| sendNotification | checkbox | Send email to user/group when sharing (only for user/group type) |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| permissionId | string | |
| type | string | |
| role | string | |
| fileId | string | |
| webViewLink | string | |
| webContentLink | string |
Form creation and data collection platform
Notes:
Retrieve details of a specific Google Form
| Field | Type | Default | Description |
|---|---|---|---|
| form_id | text | ID of the Google Form (from the form URL) |
| Name | Type | Description |
|---|---|---|
| form_id | string | The form ID |
| title | string | Form title |
| description | string | Form description |
| document_title | string | Document title of the form |
| revision_id | string | Current revision ID |
| responder_uri | string | Public URL for responding to the form |
| items | array | Array of form questions and items |
Retrieve responses for a specific Google Form
| Field | Type | Default | Description |
|---|---|---|---|
| form_id | text | ID of the Google Form | |
| page_size | number | 100 | Number of responses to retrieve (max 1000) |
| page_token | text | Token for pagination (from previous request) |
| Name | Type | Description |
|---|---|---|
| responses | array | Array of form response objects |
| next_page_token | string | Token for retrieving next page of responses |
Create a new Google Form
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | Title of the new form | |
| document_title | text | Document title (defaults to form title) |
| Name | Type | Description |
|---|---|---|
| form_id | string | The ID of the created form |
| title | string | Form title |
| responder_uri | string | Public URL for the form |
| revision_id | string | Initial revision ID |
Update form information and settings
| Field | Type | Default | Description |
|---|---|---|---|
| form_id | text | ID of the form to update | |
| title | text | New form title | |
| description | textarea | Form description |
| Name | Type | Description |
|---|---|---|
| form_id | string | The ID of the updated form |
| title | string | Updated form title |
| revision_id | string | New revision ID after update |
Add a text question to a Google Form
| Field | Type | Default | Description |
|---|---|---|---|
| form_id | text | ID of the form to add question to | |
| title | text | Title/text of the question | |
| description | text | Optional description for the question | |
| required | checkbox | Whether this question is required |
| Name | Type | Description |
|---|---|---|
| item_id | string | The ID of the created question item |
| title | string | The question title |
| question_id | string | The question ID within the item |
Add a multiple choice question to a Google Form
| Field | Type | Default | Description |
|---|---|---|---|
| form_id | text | ID of the form to add question to | |
| title | text | Title/text of the question | |
| options | textarea | JSON array of option strings, e.g., ["Option 1", "Option 2"] | |
| required | checkbox | Whether this question is required |
| Name | Type | Description |
|---|---|---|
| item_id | string | The ID of the created question item |
| title | string | The question title |
| question_id | string | The question ID within the item |
Google Gemini AI for text generation, document analysis, and image understanding with multimodal capabilities
Notes:
Generate text using Gemini AI models
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | The prompt or question for Gemini | |
| model | select | gemini-2.5-flash | Gemini model to use |
| system_instruction | textarea | Optional system instruction to guide the model behavior | |
| temperature | number | 0.7 | Controls randomness (0.0 = focused, 2.0 = creative) |
| max_output_tokens | number | 8192 | Maximum number of tokens to generate |
| Name | Type | Description |
|---|---|---|
| content | string | The generated text response |
| model | string | The model that generated the response |
| usage | object | Token usage statistics |
| success | boolean | Whether generation was successful |
Analyze PDF documents using Gemini vision capabilities
| Field | Type | Default | Description |
|---|---|---|---|
| document_url | text | URL to the PDF document to analyze | |
| prompt | textarea | Instructions for how to analyze the document | |
| model | select | gemini-2.5-flash | Gemini model to use for analysis |
| system_instruction | textarea | Optional system instruction to guide analysis behavior | |
| max_output_tokens | number | 8192 | Maximum number of tokens to generate |
| Name | Type | Description |
|---|---|---|
| content | string | The document analysis response |
| model | string | The model that performed the analysis |
| usage | object | Token usage statistics |
| success | boolean | Whether analysis was successful |
Analyze images using Gemini vision capabilities
| Field | Type | Default | Description |
|---|---|---|---|
| image_url | text | URL to the image to analyze | |
| prompt | textarea | Instructions for how to analyze the image | |
| model | select | gemini-2.5-flash | Gemini model to use |
| max_output_tokens | number | 4096 | Maximum number of tokens to generate |
| Name | Type | Description |
|---|---|---|
| content | string | The image analysis response |
| model | string | The model that performed the analysis |
| success | boolean | Whether analysis was successful |
Local business listing management platform for managing business profiles, posts, reviews, and insights
Notes:
Retrieve all business accounts accessible to the authenticated user
| Name | Type | Description |
|---|---|---|
| accounts | array | Array of business accounts with details |
| totalAccounts | number | Total number of business accounts |
Get all business locations for a specific account
| Field | Type | Default | Description |
|---|---|---|---|
| account_name | text | Google My Business account name (format: accounts/123456789) |
| Name | Type | Description |
|---|---|---|
| locations | array | Array of business locations with details |
| totalLocations | number | Total number of business locations |
Get insights and analytics for a business location
| Field | Type | Default | Description |
|---|---|---|---|
| location_name | text | Full location name (format: accounts/123/locations/456) | |
| metric_requests | select | all | Which insights to retrieve |
| time_range | select | last_30_days | Time period for insights |
| Name | Type | Description |
|---|---|---|
| insights | object | Business location analytics and insights |
| totalViews | number | Total profile views in the time period |
| totalActions | number | Total customer actions |
| topQueries | array | Most popular search queries |
Retrieve reviews for a business location
| Field | Type | Default | Description |
|---|---|---|---|
| location_name | text | Full location name (format: accounts/123/locations/456) | |
| page_size | number | 50 | Number of reviews to retrieve (max 200) |
| Name | Type | Description |
|---|---|---|
| reviews | array | Array of customer reviews |
| averageRating | number | Average star rating from reviews |
| totalReviews | number | Total number of reviews |
| recentReviews | array | Reviews from the last 30 days |
Create a new post for a business location
| Field | Type | Default | Description |
|---|---|---|---|
| location_name | text | Full location name (format: accounts/123/locations/456) | |
| post_type | select | STANDARD | Type of post to create |
| summary | textarea | Main content of the post (max 1500 characters) | |
| call_to_action | select | Call to action button for the post | |
| action_url | text | URL for the call to action button |
| Name | Type | Description |
|---|---|---|
| postName | string | Google My Business post identifier |
| postUrl | string | Public URL of the created post |
| publishTime | string | When the post was published |
| success | boolean | Whether the post was created successfully |
Update basic business information for a location
| Field | Type | Default | Description |
|---|---|---|---|
| location_name | text | Full location name (format: accounts/123/locations/456) | |
| business_name | text | Updated business name | |
| phone_number | text | Updated phone number | |
| website_url | text | Updated website URL | |
| business_hours | textarea | Business hours in JSON format |
| Name | Type | Description |
|---|---|---|
| updatedFields | array | List of fields that were updated |
| locationInfo | object | Complete updated location information |
| success | boolean | Whether the update was successful |
Reply to a customer review
| Field | Type | Default | Description |
|---|---|---|---|
| location_name | text | Full location name (format: accounts/123/locations/456) | |
| review_name | text | Full review identifier (format: accounts/123/locations/456/reviews/789) | |
| reply_text | textarea | Your reply to the customer review |
| Name | Type | Description |
|---|---|---|
| replyName | string | Google My Business reply identifier |
| replyTime | string | When the reply was posted |
| success | boolean | Whether the reply was posted successfully |
Extract news articles, sources, publication dates, and categories from Google News with country and language filtering
Notes:
Search Google News for articles using keywords with country and language filtering
| Field | Type | Default | Description |
|---|---|---|---|
| keyword | text | Keyword to search for articles (e.g., "Joe Biden", "Politics news", "Premier league") | |
| country | select | Country to filter news articles from | |
| language | text | Language code for articles (e.g., "en", "fr", "es") - leave empty for default |
| Name | Type | Description |
|---|---|---|
| articles | array | News articles with titles, sources, publication dates, and content |
| count | number | Number of articles found |
Extract Android app data and user reviews from Google Play Store with developer analytics and ASO insights
Notes:
Extract detailed information about Android apps from Google Play Store
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Google Play Store app URLs (e.g., https://play.google.com/store/apps/details?id=com.whatsapp) | |
| country | text | Optional country code for localized app data (e.g., US, GB, FR) |
| Name | Type | Description |
|---|---|---|
| apps | array | Comprehensive app information including ratings, downloads, developer details |
| count | number | Number of apps scraped |
Extract user reviews and ratings for Android apps from Google Play Store
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Google Play Store app URLs to extract reviews from | |
| numOfReviews | number | 50 | Maximum number of reviews to extract per app |
| country | text | Optional country code for localized reviews (e.g., US, GB, FR) |
| Name | Type | Description |
|---|---|---|
| reviews | array | User reviews with ratings, text, dates, and user information |
| count | number | Number of reviews scraped |
Advanced Google data extraction including Maps reviews, Shopping products, and AI Mode search capabilities
Notes:
Extract reviews from Google Maps businesses
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Google Maps business URLs to scrape reviews from | |
| daysLimit | number | 30 | Limit reviews to last N days |
| Name | Type | Description |
|---|---|---|
| reviews | array | Reviews with ratings and user information |
| count | number | Number of reviews scraped |
Extract complete business information from Google Maps
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Google Maps business URLs for full information extraction |
| Name | Type | Description |
|---|---|---|
| businesses | array | Complete business information including contact, hours, photos |
| count | number | Number of businesses scraped |
Find businesses by location and keyword
| Field | Type | Default | Description |
|---|---|---|---|
| keyword | text | Category, location, or zipcode (e.g., "restaurant", "jewelry store NY 10012") | |
| country | text | Country code (e.g., US, GB, FR) | |
| lat | text | Optional latitude coordinate for precise location | |
| long | text | Optional longitude coordinate for precise location | |
| zoomLevel | number | Optional map zoom level (1-21) |
| Name | Type | Description |
|---|---|---|
| businesses | array | Businesses found in the specified location |
| count | number | Number of businesses discovered |
Find Google Maps business by Customer ID
| Field | Type | Default | Description |
|---|---|---|---|
| cid | text | Google Customer ID for the business |
| Name | Type | Description |
|---|---|---|
| business | object | Business information for the specified CID |
| count | number | Number of results (typically 1) |
Find Google Maps business by Place ID
| Field | Type | Default | Description |
|---|---|---|---|
| placeId | text | Google Maps Place ID |
| Name | Type | Description |
|---|---|---|
| business | object | Business information for the specified Place ID |
| count | number | Number of results (typically 1) |
Extract product details from Google Shopping
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Google Shopping product URLs | |
| country | text | Optional country code for pricing |
| Name | Type | Description |
|---|---|---|
| products | array | Product details including prices and sellers |
| count | number | Number of products scraped |
Search Google Shopping products by keyword
| Field | Type | Default | Description |
|---|---|---|---|
| keyword | text | Product search keyword (e.g., "iphone", "playstation") | |
| country | text | Country code for localized results (e.g., US, GB, RU) |
| Name | Type | Description |
|---|---|---|
| products | array | Products matching the search keyword |
| count | number | Number of products found |
Extract US Google Shopping search results
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Google Shopping search result URLs (US only) |
| Name | Type | Description |
|---|---|---|
| products | array | Products from search results |
| count | number | Number of products found |
Query Google AI Mode for intelligent search results
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Your search query for Google AI Mode (e.g., "Top Hotels in New York") | |
| country | text | Optional country code for localized AI responses |
| Name | Type | Description |
|---|---|---|
| aiResponse | object | Google AI Mode search results and analysis |
| count | number | Number of AI responses (typically 1) |
Search the web, specific sites, or images using Google Custom Search API. Perfect for research, content discovery, competitor analysis, and finding related websites. Free for 100 API queries per day.
Notes:
Search the entire web using Google Custom Search
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | What to search for on the web | |
| num_results | number | 10 | How many results to return (1-100) |
| language | text | en | Language for results (en, es, fr, de, etc.) |
| safe_search | select | medium | Filter explicit content |
| Name | Type | Description |
|---|---|---|
| results | array | |
| total_results | string | |
| search_time | number | |
| count | number |
Search within a specific website or domain
| Field | Type | Default | Description |
|---|---|---|---|
| site_url | text | Website domain to search within (e.g., reddit.com, stackoverflow.com) | |
| query | text | What to search for on this site | |
| num_results | number | 10 | How many results to return |
| language | text | en | Language for results (en, es, fr, etc.) |
| Name | Type | Description |
|---|---|---|
| results | array | |
| site_searched | string | |
| count | number | |
| search_time | number |
Search for images on the web
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | What images to search for | |
| num_results | number | 10 | How many images to return |
| image_size | select | Filter by image size | |
| image_type | select | Filter by image type | |
| safe_search | select | medium | Filter explicit images |
| Name | Type | Description |
|---|---|---|
| images | array | |
| count | number | |
| search_time | number |
Monitor and optimize your website\'s search performance with Google Search Console data and tools. Analyze keywords, manage sitemaps, and track search rankings.
Notes:
Compare page performance between current and previous period to identify traffic drops and ranking changes. Returns pages with calculated differences in clicks, impressions, CTR, and position.
| Field | Type | Default | Description |
|---|---|---|---|
| site_url | text | The site URL (e.g., https://example.com) | |
| days_to_compare | number | 28 | Number of days for each period (default: 28 days) |
| row_limit | number | 1000 | Maximum number of pages to analyze |
| Name | Type | Description |
|---|---|---|
| pages | array | Array of pages with metrics and diffs: page, clicks, impressions, ctr, position, clicks_diff, impressions_diff, pos_diff, etc. |
| count | number | |
| current_period | string | Date range for current period |
| previous_period | string | Date range for previous period |
| days_compared | number | |
| success | boolean |
Get all verified sites in your Google Search Console account
| Name | Type | Description |
|---|---|---|
| sites | array | |
| count | number | |
| success | boolean |
Query search performance data from Google Search Console
| Field | Type | Default | Description |
|---|---|---|---|
| site_url | text | The site URL (e.g., https://example.com) | |
| start_date | date | Start date for the query (YYYY-MM-DD) | |
| end_date | date | End date for the query (YYYY-MM-DD) | |
| dimensions | select | ["query"] | Group results by these dimensions |
| row_limit | number | 1000 | Maximum number of results (max 25000) |
| Name | Type | Description |
|---|---|---|
| rows | array | |
| total_clicks | number | |
| total_impressions | number | |
| row_count | number | |
| success | boolean |
Get all search keywords driving traffic to a specific URL
| Field | Type | Default | Description |
|---|---|---|---|
| site_url | text | The site URL (e.g., https://example.com) | |
| target_url | text | The specific URL to analyze (full URL) | |
| start_date | date | Start date for the analysis (YYYY-MM-DD) | |
| end_date | date | End date for the analysis (YYYY-MM-DD) | |
| row_limit | number | 1000 | Maximum number of keywords to return |
| Name | Type | Description |
|---|---|---|
| rows | array | |
| total_clicks | number | |
| total_impressions | number | |
| row_count | number | |
| success | boolean |
Get top performing keywords for a specific URL sorted by a metric
| Field | Type | Default | Description |
|---|---|---|---|
| site_url | text | The site URL (e.g., https://example.com) | |
| target_url | text | The specific URL to analyze (full URL) | |
| start_date | date | Start date for the analysis (YYYY-MM-DD) | |
| end_date | date | End date for the analysis (YYYY-MM-DD) | |
| metric | select | clicks | Metric to sort keywords by |
| row_limit | number | 50 | Number of top keywords to return |
| Name | Type | Description |
|---|---|---|
| top_keywords | array | |
| sorted_by | string | |
| keyword_count | number | |
| success | boolean |
Get all submitted sitemaps for a site
| Field | Type | Default | Description |
|---|---|---|---|
| site_url | text | The site URL (e.g., https://example.com) |
| Name | Type | Description |
|---|---|---|
| sitemaps | array | |
| count | number | |
| success | boolean |
Submit a new sitemap to Google Search Console
| Field | Type | Default | Description |
|---|---|---|---|
| site_url | text | The site URL (e.g., https://example.com) | |
| sitemap_url | text | The full URL to your sitemap (e.g., https://example.com/sitemap.xml) |
| Name | Type | Description |
|---|---|---|
| message | string | |
| sitemap_url | string | |
| success | boolean |
Remove a sitemap from Google Search Console
| Field | Type | Default | Description |
|---|---|---|---|
| site_url | text | The site URL (e.g., https://example.com) | |
| sitemap_url | text | The full URL of the sitemap to delete |
| Name | Type | Description |
|---|---|---|
| message | string | |
| sitemap_url | string | |
| success | boolean |
Check URL indexing status and crawlability in Google
| Field | Type | Default | Description |
|---|---|---|---|
| site_url | text | The site URL (e.g., https://example.com) | |
| inspection_url | text | The specific URL to inspect (full URL) |
| Name | Type | Description |
|---|---|---|
| inspection_result | object | |
| coverage_state | string | |
| indexing_state | string | |
| last_crawl_time | string | |
| crawl_allowed | boolean | |
| page_fetch_state | string | |
| success | boolean |
Read / Write data from / to Google Sheets
Notes:
Retrieve data from a Google Sheet using its URL
| Name | Type | Required | Description |
|---|---|---|---|
| sheet_url | string | Yes | Full URL to a Google Sheet (e.g., https://docs.google.com/spreadsheets/d/...) |
| range | string | No | Optional cell range (e.g., A1:D10 or Sheet1!A1:D10) |
| Field | Type | Default | Description |
|---|---|---|---|
| sheet_url | string | Paste the full URL to your Google Sheet | |
| range | string | Specify a range to retrieve (e.g., A1:D10 or Sheet1!A1:D10) |
| Name | Type | Description |
|---|---|---|
| rows | array | |
| start_row | integer | |
| spreadsheet_id | string | |
| sheet_name | string |
Updates a specific cell in a Google Sheet.
| Name | Type | Required | Description |
|---|---|---|---|
| sheet_url | string | Yes | Full URL to the Google Sheet (e.g., https://docs.google.com/spreadsheets/d/...) |
| rowNumber | integer | Yes | The 1-based row number to update (e.g., 5). |
| columnLetter | string | Yes | The column letter to update (e.g., "C"). |
| value | any | Yes | The new value for the cell. |
| sheetName | string | No | Specify sheet name if URL doesn't identify it (e.g., "Sheet1"). Overrides GID in URL. |
| Field | Type | Default | Description |
|---|---|---|---|
| sheet_url | string | Static Google Sheet URL. Mapped input takes precedence. | |
| rowNumber | integer | Static 1-based row number. Mapped input takes precedence. | |
| columnLetter | string | Static column letter (e.g., "C"). Mapped input takes precedence. | |
| value | string | Static value for the cell. Mapped input takes precedence. | |
| sheetName | string | Static sheet name if URL doesn't identify it. Mapped input takes precedence. |
| Name | Type | Description |
|---|---|---|
| spreadsheet_id | string | |
| sheet_name | string | |
| updated_range | string | |
| updated_cells_count | integer |
Add a new row to the end of a Google Sheet
| Name | Type | Required | Description |
|---|---|---|---|
| sheet_url | string | Yes | Full URL to the Google Sheet |
| rowData | array | Yes | Array of values for the new row (e.g., ["Name", "Email", "Phone"]) |
| Field | Type | Default | Description |
|---|---|---|---|
| sheet_url | string | Static Google Sheet URL. Mapped input takes precedence. | |
| rowData | textarea | Static row data as JSON array. Example: ["Name", "Email", "Phone"] |
| Name | Type | Description |
|---|---|---|
| spreadsheet_id | string | |
| sheet_name | string | |
| updated_range | string | |
| updates | object |
Update an entire row in a Google Sheet
| Name | Type | Required | Description |
|---|---|---|---|
| spreadsheet_id | string | Yes | The ID of the Google Spreadsheet |
| sheet_name | string | Yes | Name of the sheet (e.g., "Sheet1") |
| row_number | integer | Yes | 1-based row number to update |
| rowData | array | Yes | Array of values for the row |
| Field | Type | Default | Description |
|---|---|---|---|
| spreadsheet_id | string | Static Spreadsheet ID. Mapped input takes precedence. | |
| sheet_name | string | Static sheet name. Mapped input takes precedence. | |
| row_number | integer | Static row number. Mapped input takes precedence. | |
| rowData | textarea | Static row data as JSON array. Example: ["Name", "Email", "Phone"] |
| Name | Type | Description |
|---|---|---|
| spreadsheet_id | string | |
| updated_range | string | |
| updated_rows | integer | |
| updated_columns | integer | |
| updated_cells | integer |
Delete a row from a Google Sheet
| Name | Type | Required | Description |
|---|---|---|---|
| spreadsheet_id | string | Yes | The ID of the Google Spreadsheet |
| sheet_name | string | Yes | Name of the sheet |
| row_number | integer | Yes | 1-based row number to delete |
| Field | Type | Default | Description |
|---|---|---|---|
| spreadsheet_id | string | Static Spreadsheet ID. Mapped input takes precedence. | |
| sheet_name | string | Static sheet name. Mapped input takes precedence. | |
| row_number | integer | Static row number. Mapped input takes precedence. |
| Name | Type | Description |
|---|---|---|
| status | string | |
| replies | array |
Search for a value (including URLs) in a Google Sheet
| Name | Type | Required | Description |
|---|---|---|---|
| sheet_url | string | Yes | Full URL to the Google Sheet |
| search_value | string | Yes | Value to search for (text, number, URL, etc.) |
| search_range | string | No | Optional range to search within (e.g., "A1:D100") |
| exact_match | boolean | No | Whether to perform exact match (default: true) |
| Field | Type | Default | Description |
|---|---|---|---|
| sheet_url | string | Static Google Sheet URL. Mapped input takes precedence. | |
| search_value | string | Static search value. Mapped input takes precedence. | |
| search_range | string | Static search range. Mapped input takes precedence. | |
| exact_match | boolean | 1 | Whether to perform exact match |
| Name | Type | Description |
|---|---|---|
| found | boolean | |
| matches | array | |
| total_matches | integer | |
| spreadsheet_id | string | |
| sheet_name | string |
Get a list of all sheets in a spreadsheet
| Name | Type | Required | Description |
|---|---|---|---|
| spreadsheet_id | string | Yes | The ID of the Google Spreadsheet |
| Field | Type | Default | Description |
|---|---|---|---|
| spreadsheet_id | string | Static Spreadsheet ID. Mapped input takes precedence. |
| Name | Type | Description |
|---|---|---|
| sheets | array |
Clear values from a range of cells
| Name | Type | Required | Description |
|---|---|---|---|
| spreadsheet_id | string | Yes | The ID of the Google Spreadsheet |
| sheet_name | string | Yes | Name of the sheet |
| range | string | Yes | Range to clear (e.g., "A1:C10") |
| Field | Type | Default | Description |
|---|---|---|---|
| spreadsheet_id | string | Static Spreadsheet ID. Mapped input takes precedence. | |
| sheet_name | string | Static sheet name. Mapped input takes precedence. | |
| range | string | Static range. Mapped input takes precedence. |
| Name | Type | Description |
|---|---|---|
| status | string | |
| cleared_range | string | |
| spreadsheet_id | string | |
| sheet_name | string |
Create a new Google Spreadsheet with optional initial sheets
| Name | Type | Required | Description |
|---|---|---|---|
| title | string | Yes | Name for the new spreadsheet |
| sheets | array | No | Array of sheet definitions: [{"title":"Dashboard"},{"title":"Data"}] |
| Field | Type | Default | Description |
|---|---|---|---|
| title | string | Static title. Mapped input takes precedence. | |
| sheets | textarea | JSON array of sheet definitions. Example: [{"title":"Dashboard"},{"title":"Data"}] |
| Name | Type | Description |
|---|---|---|
| spreadsheet_id | string | |
| spreadsheet_url | string | |
| sheets | array | |
| title | string |
Add a new sheet (tab) to an existing spreadsheet
| Name | Type | Required | Description |
|---|---|---|---|
| spreadsheet_id | string | Yes | The ID of the spreadsheet |
| sheet_title | string | Yes | Title for the new sheet/tab |
| row_count | integer | No | Number of rows (default: 1000) |
| column_count | integer | No | Number of columns (default: 26) |
| Field | Type | Default | Description |
|---|---|---|---|
| spreadsheet_id | string | Static spreadsheet ID. Mapped input takes precedence. | |
| sheet_title | string | Static sheet title. Mapped input takes precedence. | |
| row_count | number | 1000 | Number of rows (default: 1000) |
| column_count | number | 26 | Number of columns (default: 26) |
| Name | Type | Description |
|---|---|---|
| sheet_id | integer | |
| sheet_title | string | |
| row_count | integer | |
| column_count | integer | |
| success | boolean |
Apply formatting to a range of cells (colors, bold, font size, alignment)
| Name | Type | Required | Description |
|---|---|---|---|
| spreadsheet_id | string | Yes | The ID of the spreadsheet |
| sheet_id | integer | Yes | Numeric sheet ID (not the name) |
| start_row | integer | Yes | 0-based starting row index (inclusive) |
| end_row | integer | Yes | 0-based ending row index (exclusive) |
| start_col | integer | Yes | 0-based starting column index (inclusive) |
| end_col | integer | Yes | 0-based ending column index (exclusive) |
| format_options | object | Yes | Formatting: {background_color:{red:1,green:0,blue:0}, text_color:{...}, bold:true, font_size:12, horizontal_alignment:"CENTER"} |
| Field | Type | Default | Description |
|---|---|---|---|
| spreadsheet_id | string | Static spreadsheet ID. Mapped input takes precedence. | |
| sheet_id | number | Numeric sheet ID (not name). Mapped input takes precedence. | |
| start_row | number | 0-based starting row index | |
| end_row | number | 0-based ending row index (exclusive) | |
| start_col | number | 0-based starting column index | |
| end_col | number | 0-based ending column index (exclusive) | |
| format_options | textarea | JSON format options. Example: {"background_color":{"red":1,"green":0.9,"blue":0},"bold":true} |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| formatted_cells | integer | |
| spreadsheet_id | string | |
| sheet_id | integer |
Add conditional formatting rules (highlight cells based on conditions)
| Name | Type | Required | Description |
|---|---|---|---|
| spreadsheet_id | string | Yes | The ID of the spreadsheet |
| sheet_id | integer | Yes | Numeric sheet ID (not the name) |
| start_row | integer | Yes | 0-based starting row index (inclusive) |
| end_row | integer | Yes | 0-based ending row index (exclusive) |
| start_col | integer | Yes | 0-based starting column index (inclusive) |
| end_col | integer | Yes | 0-based ending column index (exclusive) |
| rule_type | string | Yes | Condition type: NUMBER_GREATER, NUMBER_LESS, TEXT_CONTAINS, DATE_BEFORE, etc. |
| rule_config | object | Yes | Rule config: {value:"50", background_color:{red:0,green:1,blue:0}, bold:true} |
| Field | Type | Default | Description |
|---|---|---|---|
| spreadsheet_id | string | Static spreadsheet ID. Mapped input takes precedence. | |
| sheet_id | number | Numeric sheet ID. Mapped input takes precedence. | |
| start_row | number | 0-based starting row index | |
| end_row | number | 0-based ending row index (exclusive) | |
| start_col | number | 0-based starting column index | |
| end_col | number | 0-based ending column index (exclusive) | |
| rule_type | select | Condition type for the rule | |
| rule_config | textarea | JSON rule config. Example: {"value":"50","background_color":{"red":0,"green":1,"blue":0}} |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| spreadsheet_id | string | |
| sheet_id | integer | |
| rule_type | string |
Execute multiple update requests in a single API call (efficient for bulk operations)
| Name | Type | Required | Description |
|---|---|---|---|
| spreadsheet_id | string | Yes | The ID of the spreadsheet |
| requests | array | Yes | Array of request objects (addSheet, formatCells, etc.) |
| Field | Type | Default | Description |
|---|---|---|---|
| spreadsheet_id | string | Static spreadsheet ID. Mapped input takes precedence. | |
| requests | textarea | JSON array of request objects. Example: [{"addSheet":{"properties":{"title":"New Sheet"}}}] |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| spreadsheet_id | string | |
| replies | array | |
| updated_spreadsheet_url | string | |
| requests_count | integer |
Productivity and collaboration tools including Gmail, Docs, Sheets, and Drive
Notes:
Send an email through Gmail
| Field | Type | Default | Description |
|---|---|---|---|
| to | text | Recipient email address | |
| subject | text | Email subject line | |
| body | textarea | Email content (supports HTML) | |
| cc | text | CC email addresses (comma separated) | |
| bcc | text | BCC email addresses (comma separated) |
| Name | Type | Description |
|---|---|---|
| messageId | string | Gmail message ID |
| threadId | string | Gmail thread ID |
| success | boolean |
Retrieve emails from Gmail
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | is:unread | Gmail search query (e.g., "is:unread", "from:example@email.com") |
| maxResults | number | 10 | Maximum number of emails to retrieve |
| includeBody | checkbox | 1 | Whether to include full email content |
| Name | Type | Description |
|---|---|---|
| emails | array | Array of email objects |
| totalCount | number | Total number of emails found |
Create a new Google Document
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | Title for the new document | |
| content | textarea | Initial content for the document | |
| folderId | text | Google Drive folder ID to create document in |
| Name | Type | Description |
|---|---|---|
| documentId | string | Google Docs document ID |
| documentUrl | string | URL to access the document |
| title | string |
Update content in an existing Google Document
| Field | Type | Default | Description |
|---|---|---|---|
| documentId | text | Google Docs document ID to update | |
| content | textarea | Content to append to the document | |
| insertIndex | number | Position to insert content (1 = beginning, leave empty for end) |
| Name | Type | Description |
|---|---|---|
| documentId | string | |
| success | boolean |
Retrieve content from a Google Document
| Field | Type | Default | Description |
|---|---|---|---|
| documentId | text | Google Docs document ID to read |
| Name | Type | Description |
|---|---|---|
| content | string | Text content of the document |
| title | string | |
| documentId | string |
Upload a file to Google Drive
| Name | Type | Required | Description |
|---|---|---|---|
| fileData | file | Yes | File content to upload |
| Field | Type | Default | Description |
|---|---|---|---|
| fileName | text | Name for the uploaded file | |
| folderId | text | Google Drive folder ID (leave empty for root) | |
| description | text | File description |
| Name | Type | Description |
|---|---|---|
| fileId | string | Google Drive file ID |
| fileUrl | string | URL to access the file |
| fileName | string |
List files from Google Drive
| Field | Type | Default | Description |
|---|---|---|---|
| folderId | text | Google Drive folder ID (leave empty for root) | |
| query | text | Drive search query (e.g., "name contains 'report'") | |
| maxResults | number | 20 | Maximum number of files to return |
| Name | Type | Description |
|---|---|---|
| files | array | Array of file objects |
| totalCount | number | Number of files found |
Create a new event in Google Calendar
| Field | Type | Default | Description |
|---|---|---|---|
| summary | text | Title of the calendar event | |
| description | textarea | Event description | |
| startDateTime | text | Start date and time (ISO 8601 format, e.g., 2024-01-01T10:00:00) | |
| endDateTime | text | End date and time (ISO 8601 format) | |
| timeZone | text | UTC | Time zone (e.g., America/New_York) |
| attendees | text | Email addresses of attendees (comma separated) |
| Name | Type | Description |
|---|---|---|
| eventId | string | Google Calendar event ID |
| eventUrl | string | URL to view the event |
| summary | string |
Professional webinar platform with advanced engagement tools and reporting
Notes:
Create a new GoToWebinar webinar
| Field | Type | Default | Description |
|---|---|---|---|
| subject | text | The title/subject of the webinar | |
| description | textarea | Webinar description | |
| start_time | text | ISO 8601 format (e.g., 2024-12-25T10:00:00Z) | |
| end_time | text | ISO 8601 format (e.g., 2024-12-25T11:00:00Z) | |
| timezone | text | UTC | e.g., America/New_York, Europe/London |
| is_password_protected | checkbox | Protect webinar with password | |
| registration_required | checkbox | Require attendees to register |
| Name | Type | Description |
|---|---|---|
| webinar_key | string | |
| registration_url | string | |
| join_url | string | |
| success | boolean |
Retrieve details of a specific webinar
| Field | Type | Default | Description |
|---|---|---|---|
| webinar_key | text | The unique key of the webinar |
| Name | Type | Description |
|---|---|---|
| subject | string | |
| description | string | |
| start_time | string | |
| end_time | string | |
| registration_url | string | |
| status | string | |
| success | boolean |
Register an attendee for a webinar
| Field | Type | Default | Description |
|---|---|---|---|
| webinar_key | text | The unique key of the webinar | |
| first_name | text | Attendee first name | |
| last_name | text | Attendee last name | |
| text | Attendee email address | ||
| source | text | How attendee learned about webinar | |
| phone | text | Attendee phone number | |
| organization | text | Attendee organization |
| Name | Type | Description |
|---|---|---|
| registrant_key | string | |
| join_url | string | |
| success | boolean |
Retrieve list of webinar registrants
| Field | Type | Default | Description |
|---|---|---|---|
| webinar_key | text | The unique key of the webinar |
| Name | Type | Description |
|---|---|---|
| registrants | array | |
| total_count | number | |
| success | boolean |
Retrieve list of webinar attendees (past webinars)
| Field | Type | Default | Description |
|---|---|---|---|
| webinar_key | text | The unique key of the webinar |
| Name | Type | Description |
|---|---|---|
| attendees | array | |
| total_count | number | |
| success | boolean |
List webinars for the authenticated organizer
| Field | Type | Default | Description |
|---|---|---|---|
| from_time | text | ISO 8601 format - filter webinars from this date | |
| to_time | text | ISO 8601 format - filter webinars until this date |
| Name | Type | Description |
|---|---|---|
| webinars | array | |
| total_count | number | |
| success | boolean |
Delete/cancel a webinar
| Field | Type | Default | Description |
|---|---|---|---|
| webinar_key | text | The unique key of the webinar to delete | |
| send_cancellation_emails | checkbox | Send cancellation emails to registrants |
| Name | Type | Description |
|---|---|---|
| success | boolean |
Review generation and reputation management
Notes:
Send review request to a customer
| Field | Type | Default | Description |
|---|---|---|---|
| customer_email | text | Customer email address | |
| customer_name | text | Customer full name | |
| phone | text | Customer phone number | |
| campaign_id | text | Specific campaign to use for the request | |
| custom_message | textarea | Custom message to include with request | |
| delay_hours | number | 0 | Hours to delay sending the request |
| Name | Type | Description |
|---|---|---|
| request_sent | boolean | Whether request was sent successfully |
| request_id | string | Unique request identifier |
| review_link | string | Direct link for customer to leave review |
Get reviews collected by Grade.us
| Field | Type | Default | Description |
|---|---|---|---|
| page | number | 1 | Page number to retrieve |
| limit | number | 20 | Number of reviews to return (max 100) |
| rating_filter | select | Filter by rating | |
| date_from | text | Start date (YYYY-MM-DD format) | |
| date_to | text | End date (YYYY-MM-DD format) |
| Name | Type | Description |
|---|---|---|
| reviews | array | Array of review data |
| total_count | number | Total number of reviews |
| average_rating | number | Average star rating |
Get list of Grade.us campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| active_only | checkbox | 1 | Only return active campaigns |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of campaign data |
| total_count | number | Total number of campaigns |
Get review analytics and statistics
| Field | Type | Default | Description |
|---|---|---|---|
| date_from | text | Start date (YYYY-MM-DD format) | |
| date_to | text | End date (YYYY-MM-DD format) | |
| group_by | select | day | How to group analytics data |
| Name | Type | Description |
|---|---|---|
| analytics | object | Detailed analytics information |
| total_requests | number | Total review requests sent |
| total_reviews | number | Total reviews received |
| response_rate | number | Response rate percentage |
Get customer list and contact history
| Field | Type | Default | Description |
|---|---|---|---|
| page | number | 1 | Page number to retrieve |
| limit | number | 20 | Number of customers to return (max 100) |
| search | text | Search customers by name or email | |
| status | select | Filter by customer status |
| Name | Type | Description |
|---|---|---|
| customers | array | Array of customer data |
| total_count | number | Total number of customers |
Influencer marketing and creator management platform with comprehensive campaign automation
Notes:
Search for creators/influencers based on criteria
| Field | Type | Default | Description |
|---|---|---|---|
| keywords | text | Keywords to search for in creator profiles | |
| platform | select | Social media platform to search on | |
| minFollowers | number | Minimum follower count | |
| maxFollowers | number | Maximum follower count | |
| location | text | Geographic location or region | |
| category | text | Content category or niche | |
| limit | number | 50 | Maximum number of creators to return |
| Name | Type | Description |
|---|---|---|
| creators | array | Array of creator profiles matching the search criteria |
| count | number | Number of creators found |
Create a new influencer marketing campaign
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the campaign | |
| description | textarea | Detailed description of the campaign | |
| type | select | gifting | Type of campaign |
| budget | number | Campaign budget in dollars | |
| startDate | text | Campaign start date (YYYY-MM-DD format) | |
| endDate | text | Campaign end date (YYYY-MM-DD format) |
| Name | Type | Description |
|---|---|---|
| campaignId | string | The created campaign ID |
| success | boolean | Whether the campaign was created successfully |
Add a creator to an existing campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | The ID of the campaign | |
| creatorId | text | The ID of the creator to add | |
| role | select | influencer | Role of the creator in the campaign |
| compensation | number | Compensation amount for the creator |
| Name | Type | Description |
|---|---|---|
| collaborationId | string | The created collaboration ID |
| success | boolean | Whether the creator was added successfully |
Retrieve all campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | Filter campaigns by status | |
| limit | number | 50 | Maximum number of campaigns to return |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of campaign data |
| count | number | Number of campaigns returned |
Get analytics and performance metrics for a campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | The ID of the campaign to get analytics for |
| Name | Type | Description |
|---|---|---|
| analytics | object | Campaign analytics including impressions, engagement, reach, and conversions |
| success | boolean | Whether the analytics data was retrieved successfully |
Get detailed profile information for a creator
| Field | Type | Default | Description |
|---|---|---|---|
| creatorId | text | The ID of the creator to get profile for |
| Name | Type | Description |
|---|---|---|
| profile | object | Detailed creator profile including demographics, metrics, and social accounts |
| found | boolean | Whether the creator profile was found |
Track and analyze creator content performance
| Field | Type | Default | Description |
|---|---|---|---|
| contentUrl | text | URL of the content to track | |
| campaignId | text | Associated campaign ID (optional) |
| Name | Type | Description |
|---|---|---|
| contentId | string | The tracked content ID |
| metrics | object | Current performance metrics for the content |
| success | boolean | Whether the content was tracked successfully |
Ultra-fast AI inference with Llama 3.3, Mixtral, and Whisper models. Groq provides the fastest inference speeds available.
Notes:
Generate text using Groq's ultra-fast Llama and Mixtral models. Groq provides the fastest inference speeds available.
| Name | Type | Required | Description |
|---|---|---|---|
| prompt | string | Yes |
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Enter your prompt text. You can drag & drop parameters from previous nodes. | |
| model | select | llama-3.3-70b-versatile | Select the model to use. Llama 3.3 70B offers the best quality. |
| system_prompt | textarea | Optional system instructions to guide the model behavior. | |
| temperature | float | 0.7 | Controls randomness: 0 = deterministic, 2 = very creative |
| max_tokens | number | 1024 | Maximum number of tokens to generate |
| json_schema | code | Define output structure for JSON mode. Example: {"type": "object", "properties": {"title": {"type": "string"}, "score": {"type": "number"}}, "required": ["title", "score"]} |
| Name | Type | Description |
|---|---|---|
| content | string | |
| data | object | |
| usage | object | |
| model | string | |
| finish_reason | string | |
| prompt_tokens | number | |
| completion_tokens | number | |
| total_tokens | number | |
| success | boolean |
Transcribe audio using Groq's ultra-fast Whisper implementation
| Field | Type | Default | Description |
|---|---|---|---|
| audio_url | text | URL of the audio file to transcribe | |
| language | text | ISO-639-1 language code (e.g., en, es, fr). Auto-detected if not specified. |
| Name | Type | Description |
|---|---|---|
| text | string | The transcribed text from the audio |
| success | boolean |
Time tracking and invoicing - Track time and turn it into invoices automatically
Notes:
Get information about the current user
| Name | Type | Description |
|---|---|---|
| user_id | number | |
| first_name | string | |
| last_name | string | |
| string | ||
| is_admin | boolean |
Start a new timer for time tracking
| Field | Type | Default | Description |
|---|---|---|---|
| project_id | number | The project to track time for | |
| task_id | number | The task to track time for | |
| notes | textarea | Optional notes for this time entry |
| Name | Type | Description |
|---|---|---|
| entry_id | number | |
| is_running | boolean | |
| started_time | string |
Stop the currently running timer
| Name | Type | Description |
|---|---|---|
| entry_id | number | |
| hours | number | |
| ended_time | string |
Get time entries for a specific date range
| Field | Type | Default | Description |
|---|---|---|---|
| from_date | text | today | Start date for the range |
| to_date | text | today | End date for the range |
| project_id | number | Filter by specific project |
| Name | Type | Description |
|---|---|---|
| entries | array | |
| total_hours | number | |
| entry_count | number |
Create a manual time entry
| Field | Type | Default | Description |
|---|---|---|---|
| project_id | number | The project to track time for | |
| task_id | number | The task to track time for | |
| spent_date | text | today | Date the work was performed |
| hours | number | Number of hours worked | |
| notes | textarea | Description of work performed |
| Name | Type | Description |
|---|---|---|
| entry_id | number | |
| hours | number | |
| spent_date | string |
Get all projects from your account
| Field | Type | Default | Description |
|---|---|---|---|
| is_active | checkbox | 1 | Show only active projects |
| Name | Type | Description |
|---|---|---|
| projects | array | |
| project_count | number |
Get all clients from your account
| Field | Type | Default | Description |
|---|---|---|---|
| is_active | checkbox | 1 | Show only active clients |
| Name | Type | Description |
|---|---|---|
| clients | array | |
| client_count | number |
Create a new invoice from time entries
| Field | Type | Default | Description |
|---|---|---|---|
| client_id | number | Client to invoice | |
| subject | text | Invoice subject line | |
| issue_date | text | today | Date the invoice is issued |
| due_date | text | Date payment is due |
| Name | Type | Description |
|---|---|---|
| invoice_id | number | |
| invoice_number | string | |
| total_amount | number | |
| state | string |
Get invoices from your account
| Field | Type | Default | Description |
|---|---|---|---|
| client_id | number | Filter by specific client | |
| from_date | text | Filter by issue date from | |
| to_date | text | Filter by issue date to |
| Name | Type | Description |
|---|---|---|
| invoices | array | |
| invoice_count | number | |
| total_amount | number |
Developer blogging platform for publishing technical articles, managing publications, and building developer communities
Notes:
Retrieve all publications you have access to
| Name | Type | Description |
|---|---|---|
| publications | array | Array of publications you have access to |
| totalPublications | number | Total number of publications |
Retrieve posts from a specific publication
| Field | Type | Default | Description |
|---|---|---|---|
| publication_id | text | ID of the publication to get posts from | |
| page | number | 0 | Page number for pagination (starts from 0) |
| page_size | number | 20 | Number of posts per page (max 20) |
| sort_order | select | desc | Sort order for posts |
| Name | Type | Description |
|---|---|---|
| posts | array | Array of posts from the publication |
| totalPosts | number | Total number of posts returned |
| hasNextPage | boolean | Whether there are more posts available |
Create and publish a new post on Hashnode
| Field | Type | Default | Description |
|---|---|---|---|
| publication_id | text | ID of the publication to publish to | |
| title | text | Title of the post | |
| content_markdown | code_editor | Post content in Markdown format | |
| tags | text | Comma-separated tags for the post | |
| subtitle | text | Subtitle/brief description of the post | |
| cover_image_url | text | URL of the cover image for the post | |
| canonical_url | text | Canonical URL if republishing from another source | |
| disable_comments | select | false | Whether to disable comments on the post |
| series_id | text | ID of the series this post belongs to |
| Name | Type | Description |
|---|---|---|
| postId | string | Unique ID of the published post |
| postUrl | string | Public URL of the published post |
| slug | string | URL slug of the post |
| publishedAt | string | Publication timestamp |
Update an existing post on Hashnode
| Field | Type | Default | Description |
|---|---|---|---|
| post_id | text | ID of the post to update | |
| title | text | Updated title of the post | |
| content_markdown | code_editor | Updated post content in Markdown format | |
| tags | text | Updated comma-separated tags | |
| subtitle | text | Updated subtitle/brief description | |
| cover_image_url | text | Updated cover image URL |
| Name | Type | Description |
|---|---|---|
| postId | string | ID of the updated post |
| postUrl | string | Public URL of the updated post |
| updatedFields | array | List of fields that were updated |
| success | boolean | Whether the update was successful |
Retrieve your Hashnode profile information
| Name | Type | Description |
|---|---|---|
| profile | object | Complete profile information |
| username | string | Your username |
| name | string | Your display name |
| bio | string | Your bio/tagline |
| profilePicture | string | URL to your profile picture |
| followersCount | number | Number of followers |
| followingsCount | number | Number of users you follow |
Retrieve series from a publication
| Field | Type | Default | Description |
|---|---|---|---|
| publication_id | text | ID of the publication to get series from |
| Name | Type | Description |
|---|---|---|
| series | array | Array of series in the publication |
| totalSeries | number | Total number of series |
Create a new series in a publication
| Field | Type | Default | Description |
|---|---|---|---|
| publication_id | text | ID of the publication to create series in | |
| name | text | Name of the series | |
| description | textarea | Description of the series | |
| cover_image | text | URL of the cover image for the series |
| Name | Type | Description |
|---|---|---|
| seriesId | string | Unique ID of the created series |
| seriesSlug | string | URL slug of the series |
| success | boolean | Whether the series was created successfully |
Search for posts across Hashnode
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Search term or phrase | |
| type | select | BEST | Type of search results |
| page | number | 0 | Page number for pagination |
| page_size | number | 20 | Number of results per page (max 20) |
| Name | Type | Description |
|---|---|---|
| posts | array | Array of posts matching the search query |
| totalResults | number | Total number of search results |
| hasNextPage | boolean | Whether there are more results available |
Influencer search and analytics platform with advanced filtering and campaign management tools
Notes:
Search for influencers using Heepsy's database with detailed filtering options
| Field | Type | Default | Description |
|---|---|---|---|
| platform | select | ||
| keywords | text | Search keywords in bio or posts | |
| location | text | Country, state, or city | |
| follower_min | number | 1000 | |
| follower_max | number | Leave empty for no upper limit | |
| engagement_rate_min | number | 1 | |
| engagement_rate_max | number | Leave empty for no upper limit | |
| audience_age_min | number | Minimum age of target audience | |
| audience_age_max | number | Maximum age of target audience | |
| audience_gender | select | ||
| categories | text | Comma-separated content categories (fashion, beauty, lifestyle, etc.) | |
| limit | number | 50 | Maximum results to return (1-100) |
| Name | Type | Description |
|---|---|---|
| influencers | array | Array of matching influencer profiles |
| total_found | number | Total number of influencers matching criteria |
Get comprehensive details and analytics for a specific influencer
| Field | Type | Default | Description |
|---|---|---|---|
| username | text | Influencer username (without @ symbol) | |
| platform | select |
| Name | Type | Description |
|---|---|---|
| profile | object | Complete influencer profile information |
| followers_count | number | Current follower count |
| engagement_rate | number | Average engagement rate percentage |
| audience_countries | array | Top countries of the audience |
| audience_age_groups | object | Breakdown of audience by age groups |
| contact_info | object | Available contact details |
Analyze the authenticity and quality of an influencer's audience
| Field | Type | Default | Description |
|---|---|---|---|
| username | text | Influencer username (without @ symbol) | |
| platform | select |
| Name | Type | Description |
|---|---|---|
| quality_analysis | object | Comprehensive audience quality assessment |
| authenticity_score | number | Overall authenticity score (0-100) |
| fake_followers_percentage | number | Estimated percentage of fake followers |
| suspicious_activity | object | Indicators of suspicious activity |
| audience_reachability | number | Percentage of reachable real followers |
Analyze an influencer's content performance and posting patterns
| Field | Type | Default | Description |
|---|---|---|---|
| username | text | Influencer username (without @ symbol) | |
| platform | select | ||
| post_count | number | 20 | Number of recent posts to analyze (max 50) |
| Name | Type | Description |
|---|---|---|
| content_analysis | object | Detailed content performance analysis |
| average_likes | number | Average likes per post |
| average_comments | number | Average comments per post |
| best_performing_posts | array | Top performing posts by engagement |
| posting_frequency | object | Analysis of posting patterns and frequency |
| hashtag_analysis | array | Most used hashtags and their performance |
Customer service and knowledge base management platform
Notes:
Create a new conversation (ticket) in Help Scout
| Field | Type | Default | Description |
|---|---|---|---|
| mailbox_id | number | ID of the mailbox to create conversation in | |
| subject | text | Conversation subject line | |
| customer_email | text | Email address of the customer | |
| customer_name | text | Name of the customer (optional) | |
| message_body | textarea | Initial message content | |
| type | select | Conversation type | |
| status | select | active | Initial conversation status |
| tags | text | Comma-separated tags |
| Name | Type | Description |
|---|---|---|
| conversation_id | number | The ID of the created conversation |
| number | number | The conversation number |
| subject | string | The conversation subject |
| status | string | The conversation status |
| created_at | string | When the conversation was created |
Add a reply to an existing conversation
| Field | Type | Default | Description |
|---|---|---|---|
| conversation_id | number | ID of the conversation to reply to | |
| message_body | textarea | Content of the reply | |
| type | select | reply | Type of reply |
| Name | Type | Description |
|---|---|---|
| thread_id | number | The ID of the created thread |
| body | string | The reply content |
| created_at | string | When the reply was created |
Retrieve details of a specific conversation
| Field | Type | Default | Description |
|---|---|---|---|
| conversation_id | number | ID of the conversation to retrieve |
| Name | Type | Description |
|---|---|---|
| conversation_id | number | The conversation ID |
| number | number | The conversation number |
| subject | string | Conversation subject |
| status | string | Current conversation status |
| type | string | Conversation type |
| customer_email | string | Customer email address |
| customer_name | string | Customer name |
| created_at | string | When the conversation was created |
| updated_at | string | When the conversation was last updated |
Update conversation status or properties
| Field | Type | Default | Description |
|---|---|---|---|
| conversation_id | number | ID of the conversation to update | |
| status | select | New conversation status | |
| subject | text | New subject (optional) |
| Name | Type | Description |
|---|---|---|
| conversation_id | number | The ID of the updated conversation |
| status | string | The updated status |
| updated_at | string | When the conversation was updated |
Get a list of conversations with optional filtering
| Field | Type | Default | Description |
|---|---|---|---|
| mailbox_id | number | Filter by specific mailbox (optional) | |
| status | select | all | Filter conversations by status |
| page | number | 1 | Page number for pagination |
| Name | Type | Description |
|---|---|---|
| conversations | array | Array of conversation objects |
| total_count | number | Total number of conversations |
Get a list of available mailboxes
| Name | Type | Description |
|---|---|---|
| mailboxes | array | Array of mailbox objects |
Connect to HighLevel CRM to manage opportunities, contacts, and pipelines. Build sales automation workflows with full access to your CRM data.
Notes:
Retrieve all opportunities/deals from HighLevel CRM
| Field | Type | Default | Description |
|---|---|---|---|
| pipelineId | text | Filter by specific pipeline ID | |
| stageId | text | Filter by specific stage ID | |
| status | select | all | Filter by opportunity status |
| limit | number | 100 | Maximum number of opportunities to return (max 100) |
| Name | Type | Description |
|---|---|---|
| opportunities | array | Array of opportunity objects |
| count | number | Number of opportunities returned |
| success | boolean |
Retrieve a single opportunity by ID
| Field | Type | Default | Description |
|---|---|---|---|
| opportunityId | text | The ID of the opportunity to retrieve |
| Name | Type | Description |
|---|---|---|
| opportunity | object | The opportunity object |
| success | boolean |
Create a new opportunity/deal in HighLevel
| Field | Type | Default | Description |
|---|---|---|---|
| pipelineId | text | The pipeline to create the opportunity in | |
| name | text | Name of the opportunity | |
| contactId | text | The contact associated with this opportunity | |
| stageId | text | Initial stage for the opportunity | |
| monetaryValue | number | Deal value in dollars | |
| status | select | open |
| Name | Type | Description |
|---|---|---|
| opportunity | object | The created opportunity object |
| id | string | ID of the created opportunity |
| success | boolean |
Update an existing opportunity
| Field | Type | Default | Description |
|---|---|---|---|
| opportunityId | text | ID of the opportunity to update | |
| name | text | New name for the opportunity | |
| stageId | text | Move to a different stage | |
| monetaryValue | number | Updated deal value | |
| status | select |
| Name | Type | Description |
|---|---|---|
| opportunity | object | The updated opportunity object |
| success | boolean |
Retrieve all sales pipelines
| Name | Type | Description |
|---|---|---|
| pipelines | array | Array of pipeline objects with stages |
| count | number | Number of pipelines |
| success | boolean |
Retrieve contacts from HighLevel CRM
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Search contacts by name, email, or phone | |
| limit | number | 100 | Maximum number of contacts to return (max 100) |
| Name | Type | Description |
|---|---|---|
| contacts | array | Array of contact objects |
| count | number | Number of contacts returned |
| success | boolean |
Retrieve a single contact by ID
| Field | Type | Default | Description |
|---|---|---|---|
| contactId | text | The ID of the contact to retrieve |
| Name | Type | Description |
|---|---|---|
| contact | object | The contact object |
| success | boolean |
Create a new contact in HighLevel
| Field | Type | Default | Description |
|---|---|---|---|
| firstName | text | Contact first name | |
| lastName | text | Contact last name | |
| text | Contact email address | ||
| phone | text | Contact phone number | |
| tags | text | Comma-separated list of tags |
| Name | Type | Description |
|---|---|---|
| contact | object | The created contact object |
| id | string | ID of the created contact |
| success | boolean |
Update an existing contact
| Field | Type | Default | Description |
|---|---|---|---|
| contactId | text | ID of the contact to update | |
| firstName | text | New first name | |
| lastName | text | New last name | |
| text | New email address | ||
| phone | text | New phone number | |
| tags | text | New comma-separated list of tags |
| Name | Type | Description |
|---|---|---|
| contact | object | The updated contact object |
| success | boolean |
Extract home improvement products with location-based pricing, UPC lookups, and advanced filtering from Home Depot
Notes:
Extract detailed product information from Home Depot URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Home Depot product URLs to scrape | |
| zipcode | text | ZIP code for location-based pricing (e.g., "11001") |
| Name | Type | Description |
|---|---|---|
| products | array | Detailed home improvement products with prices and reviews |
| count | number | Number of products scraped |
Find products from Home Depot category pages with advanced filtering
| Field | Type | Default | Description |
|---|---|---|---|
| categoryUrl | text | Home Depot category or browse page URL | |
| zipcode | text | ZIP code for location-based results | |
| storeNumber | text | Specific Home Depot store number | |
| maxProducts | number | Maximum number of products to retrieve | |
| beginPage | number | 1 | Page number to start scraping from |
| shippingType | select | Filter by shipping/pickup availability |
| Name | Type | Description |
|---|---|---|
| products | array | Products found in the specified category |
| count | number | Number of products discovered |
Search Home Depot products using keywords
| Field | Type | Default | Description |
|---|---|---|---|
| keywords | textarea | Keywords to search for products (e.g., "grill cover", "outdoor plants") |
| Name | Type | Description |
|---|---|---|
| products | array | Products matching the search keywords |
| count | number | Number of products found |
Find Home Depot products using UPC barcodes
| Field | Type | Default | Description |
|---|---|---|---|
| upcs | textarea | UPC barcode numbers to lookup products | |
| zipcode | text | ZIP code for location-based pricing | |
| allVariations | select | Whether to include product variations |
| Name | Type | Description |
|---|---|---|
| products | array | Products found for the provided UPC codes |
| count | number | Number of products found |
Extract products from various Home Depot URLs with advanced filtering
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Browse, search, or category URLs from Home Depot | |
| zipcode | text | ZIP code for location-based results | |
| maxProducts | number | Maximum number of products to retrieve | |
| allVariations | select | Whether to include product variations | |
| shippingType | select | Filter by shipping/pickup availability |
| Name | Type | Description |
|---|---|---|
| products | array | Products extracted from the provided URLs |
| count | number | Number of products found |
Social media management and monitoring platform
Notes:
Get list of connected social media profiles
| Name | Type | Description |
|---|---|---|
| profiles | array | |
| count | number | |
| success | boolean |
Create and publish a social media post
| Field | Type | Default | Description |
|---|---|---|---|
| profileIds | textarea | Social profile IDs separated by commas | |
| content | textarea | Content of the social media post | |
| scheduledSendTime | text | Schedule post for later (ISO 8601 format). Leave empty for immediate posting. | |
| mediaUrls | textarea | Image/video URLs separated by commas |
| Name | Type | Description |
|---|---|---|
| postId | string | |
| message | object | |
| state | string | |
| success | boolean |
Schedule a social media post for later publishing
| Field | Type | Default | Description |
|---|---|---|---|
| profileIds | textarea | Social profile IDs separated by commas | |
| content | textarea | Content of the social media post | |
| scheduledSendTime | text | When to publish the post (ISO 8601 format) | |
| mediaUrls | textarea | Image/video URLs separated by commas |
| Name | Type | Description |
|---|---|---|
| postId | string | |
| message | object | |
| scheduledTime | string | |
| success | boolean |
Get published and scheduled messages
| Field | Type | Default | Description |
|---|---|---|---|
| profileId | text | Filter by specific social profile ID | |
| state | select | Filter by message state | |
| limit | number | 50 | Maximum number of messages to return (1-100) |
| Name | Type | Description |
|---|---|---|
| messages | array | |
| count | number | |
| success | boolean |
Get details of a specific message
| Field | Type | Default | Description |
|---|---|---|---|
| messageId | text | The ID of the message to retrieve |
| Name | Type | Description |
|---|---|---|
| message | object | |
| content | string | |
| state | string | |
| scheduledSendTime | string | |
| success | boolean |
Delete a scheduled or draft message
| Field | Type | Default | Description |
|---|---|---|---|
| messageId | text | The ID of the message to delete |
| Name | Type | Description |
|---|---|---|
| deleted | boolean | |
| messageId | string | |
| success | boolean |
Get details of a specific social media profile
| Field | Type | Default | Description |
|---|---|---|---|
| profileId | text | The ID of the social profile |
| Name | Type | Description |
|---|---|---|
| profile | object | |
| socialNetworkUsername | string | |
| socialNetwork | string | |
| profileUrl | string | |
| success | boolean |
Get uploaded media files from Hootsuite media library
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of media items to return |
| Name | Type | Description |
|---|---|---|
| media | array | |
| count | number | |
| success | boolean |
Upload media file to Hootsuite media library
| Field | Type | Default | Description |
|---|---|---|---|
| mediaUrl | text | URL of the media file to upload | |
| filename | text | Name for the uploaded file |
| Name | Type | Description |
|---|---|---|
| mediaId | string | |
| media | object | |
| downloadUrl | string | |
| success | boolean |
Heatmaps, session recordings, user feedback, and comprehensive user experience analytics
Notes:
Retrieve heatmap data for pages on your site
| Field | Type | Default | Description |
|---|---|---|---|
| pageUrl | text | Specific page URL to get heatmaps for | |
| type | select | click | |
| limit | number | 10 | Maximum number of heatmaps to return |
| Name | Type | Description |
|---|---|---|
| heatmaps | array | |
| heatmapCount | number | |
| topPages | array |
Retrieve session recordings and their metadata
| Field | Type | Default | Description |
|---|---|---|---|
| startDate | text | Filter recordings from this date | |
| endDate | text | Filter recordings until this date | |
| browser | text | Filter by browser (Chrome, Firefox, etc.) | |
| limit | number | 20 | Maximum number of recordings to return |
| Name | Type | Description |
|---|---|---|
| recordings | array | |
| recordingCount | number | |
| totalDuration | number | |
| averageDuration | number |
Retrieve survey responses and feedback data
| Field | Type | Default | Description |
|---|---|---|---|
| surveyId | text | Specific survey ID to get responses for | |
| startDate | text | Filter responses from this date | |
| endDate | text | Filter responses until this date |
| Name | Type | Description |
|---|---|---|
| responses | array | |
| responseCount | number | |
| averageRating | number | |
| satisfaction | object |
Retrieve incoming feedback and user comments
| Field | Type | Default | Description |
|---|---|---|---|
| pageUrl | text | Filter feedback for specific page | |
| category | select | ||
| limit | number | 50 | Maximum number of feedback items |
| Name | Type | Description |
|---|---|---|
| feedback | array | |
| feedbackCount | number | |
| categories | object | |
| sentiment | object |
Get overall site performance and visitor analytics
| Field | Type | Default | Description |
|---|---|---|---|
| startDate | text | Start date for analytics period | |
| endDate | text | End date for analytics period | |
| metrics | textarea | ["sessions", "pageviews", "visitors"] | Specific metrics to retrieve |
| Name | Type | Description |
|---|---|---|
| analytics | object | |
| sessions | number | |
| pageviews | number | |
| visitors | number | |
| trends | array |
Analyze form performance and abandonment data
| Field | Type | Default | Description |
|---|---|---|---|
| formSelector | text | CSS selector for specific form | |
| pageUrl | text | Page containing the form | |
| timeframe | select | 7d |
| Name | Type | Description |
|---|---|---|
| formData | object | |
| completionRate | number | |
| abandonmentRate | number | |
| fieldAnalysis | array | |
| dropoffPoints | array |
Analyze user flow through conversion funnels
| Field | Type | Default | Description |
|---|---|---|---|
| funnelSteps | textarea | Array of URLs representing funnel steps | |
| timeframe | select | 30d |
| Name | Type | Description |
|---|---|---|
| funnelData | array | |
| conversionRate | number | |
| stepConversions | array | |
| dropoffs | array |
Get detailed performance metrics for specific pages
| Field | Type | Default | Description |
|---|---|---|---|
| pageUrl | text | URL of the page to analyze | |
| timeframe | select | 30d |
| Name | Type | Description |
|---|---|---|
| pageMetrics | object | |
| averageTime | number | |
| bounceRate | number | |
| exitRate | number | |
| clickData | array | |
| scrollData | object |
Comprehensive CRM and marketing automation platform with contacts, companies, deals, forms, and list management
Notes:
Retrieve contacts from your HubSpot CRM
| Field | Type | Default | Description |
|---|---|---|---|
| text | Optional: Filter by specific email address | ||
| limit | number | 20 | Number of contacts to retrieve (max 100) |
| properties | textarea | firstname,lastname,email,phone,company | Comma-separated list of contact properties to retrieve |
| Name | Type | Description |
|---|---|---|
| contacts | array | Array of contact objects |
| total | number |
Create a new contact in HubSpot CRM
| Field | Type | Default | Description |
|---|---|---|---|
| text | Contact's email address (must be unique) | ||
| firstname | text | Contact's first name | |
| lastname | text | Contact's last name | |
| phone | text | Contact's phone number | |
| company | text | Contact's company name | |
| additionalProperties | textarea | {} | Additional contact properties as JSON object |
| Name | Type | Description |
|---|---|---|
| contact | object | The created contact object |
| contactId | string |
Update an existing contact in HubSpot CRM
| Field | Type | Default | Description |
|---|---|---|---|
| contactId | text | HubSpot contact ID to update | |
| properties | textarea | {"firstname": "John", "lastname": "Doe"} | Contact properties to update as JSON object |
| Name | Type | Description |
|---|---|---|
| contact | object |
Retrieve companies from your HubSpot CRM
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Optional: Filter by specific company name | |
| limit | number | 20 | Number of companies to retrieve (max 100) |
| Name | Type | Description |
|---|---|---|
| companies | array | |
| total | number |
Create a new company in HubSpot CRM
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Company name | |
| domain | text | Company website domain | |
| industry | text | Company industry | |
| additionalProperties | textarea | {} | Additional company properties as JSON object |
| Name | Type | Description |
|---|---|---|
| company | object | |
| companyId | string |
Retrieve deals from your HubSpot CRM
| Field | Type | Default | Description |
|---|---|---|---|
| pipelineId | text | Optional: Filter by specific pipeline | |
| dealstage | text | Optional: Filter by deal stage | |
| limit | number | 20 | Number of deals to retrieve (max 100) |
| Name | Type | Description |
|---|---|---|
| deals | array | |
| total | number |
Create a new deal in HubSpot CRM
| Field | Type | Default | Description |
|---|---|---|---|
| dealname | text | Name of the deal | |
| amount | number | Deal value in your account currency | |
| pipelineId | text | Pipeline to create the deal in | |
| dealstage | text | Initial deal stage | |
| closedate | text | Expected close date (YYYY-MM-DD format) |
| Name | Type | Description |
|---|---|---|
| deal | object | |
| dealId | string |
Retrieve forms from your HubSpot account
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Number of forms to retrieve |
| Name | Type | Description |
|---|---|---|
| forms | array | |
| total | number |
Retrieve submissions for a specific form
| Field | Type | Default | Description |
|---|---|---|---|
| formId | text | HubSpot form ID | |
| limit | number | 20 | Number of submissions to retrieve |
| Name | Type | Description |
|---|---|---|
| submissions | array | |
| total | number |
Retrieve contact lists from your HubSpot account
| Field | Type | Default | Description |
|---|---|---|---|
| listType | select | ||
| limit | number | 20 | Number of lists to retrieve |
| Name | Type | Description |
|---|---|---|
| lists | array | |
| total | number |
Add a contact to a HubSpot list
| Field | Type | Default | Description |
|---|---|---|---|
| listId | text | HubSpot list ID | |
| contactId | text | HubSpot contact ID to add to list |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string |
Create a new contact or update if email already exists (upsert)
| Field | Type | Default | Description |
|---|---|---|---|
| text | Contact's email address (used as unique identifier) | ||
| firstname | text | Contact's first name | |
| lastname | text | Contact's last name | |
| phone | text | Contact's phone number | |
| company | text | Contact's company name | |
| jobtitle | text | Contact's job title | |
| country | text | Contact's country | |
| linkedinUrl | text | Contact's LinkedIn profile URL | |
| additionalProperties | textarea | {} | Additional contact properties as JSON object |
| Name | Type | Description |
|---|---|---|
| contact | object | The created or updated contact object |
| contactId | string | |
| properties | object | |
| isNew | boolean |
Search for a company by its website domain
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | Company website domain (e.g., example.com) | |
| properties | textarea | name,domain,industry,city,state,country,numberofemployees,annualrevenue,description | Comma-separated list of company properties to retrieve |
| Name | Type | Description |
|---|---|---|
| company | object | The found company object (or null if not found) |
| companyId | string | |
| properties | object | |
| found | boolean |
Update an existing company in HubSpot CRM
| Field | Type | Default | Description |
|---|---|---|---|
| companyId | text | HubSpot company ID to update | |
| name | text | Company name | |
| domain | text | Company website domain | |
| industry | text | Company industry | |
| description | textarea | Company description | |
| city | text | Company headquarters city | |
| country | text | Company headquarters country | |
| numberofemployees | text | Number of employees | |
| annualrevenue | text | Annual revenue | |
| linkedinUrl | text | LinkedIn company page URL | |
| totalMoneyRaised | text | Total funding raised | |
| additionalProperties | textarea | {} | Additional company properties as JSON object |
| Name | Type | Description |
|---|---|---|
| company | object | |
| companyId | string | |
| properties | object |
Email finder and verification service for lead generation with domain search, email validation, and deliverability checks
Notes:
Find email addresses associated with a company domain
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | Company domain to search for emails (e.g., google.com) | |
| type | select | Filter emails by type | |
| seniority | select | Filter by seniority level | |
| department | select | Filter by department | |
| limit | number | 10 | Maximum number of emails to return (default: 10, max: 100) |
| Name | Type | Description |
|---|---|---|
| emails | array | List of found email addresses with details |
| domain | string | The domain that was searched |
| organization | string | Company name associated with the domain |
| total_emails | number | Total number of emails found for the domain |
| pattern | string | Most common email pattern for the domain |
Find email address for a specific person at a company
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | Company domain (e.g., google.com) | |
| first_name | text | Person's first name | |
| last_name | text | Person's last name | |
| full_name | text | Full name (alternative to first/last name) | |
| company | text | Company name for additional context |
| Name | Type | Description |
|---|---|---|
| string | Found email address | |
| score | number | Confidence score for the email (0-100) |
| first_name | string | Person's first name |
| last_name | string | Person's last name |
| position | string | Person's job position if found |
| sources | array | Sources where the email was found |
Verify if an email address is valid and deliverable
| Field | Type | Default | Description |
|---|---|---|---|
| text | Email address to verify |
| Name | Type | Description |
|---|---|---|
| result | string | Verification result: valid, invalid, risky, unknown |
| score | number | Confidence score for the verification (0-100) |
| string | The email address that was verified | |
| regexp | boolean | Whether email format is valid |
| gibberish | boolean | Whether email appears to be gibberish |
| disposable | boolean | Whether email is from a disposable email service |
| webmail | boolean | Whether email is from a webmail provider |
| mx_records | boolean | Whether domain has valid MX records |
| smtp_server | boolean | Whether SMTP server accepts emails |
| smtp_check | boolean | Whether SMTP check was successful |
| accept_all | boolean | Whether server accepts all emails |
| block | boolean | Whether email appears to be blocked |
Verify multiple email addresses at once
| Field | Type | Default | Description |
|---|---|---|---|
| emails | textarea | Array of email addresses to verify (e.g., ["email1@domain.com", "email2@domain.com"]) |
| Name | Type | Description |
|---|---|---|
| results | array | Array of verification results for each email |
| valid_count | number | Number of valid email addresses |
| invalid_count | number | Number of invalid email addresses |
| risky_count | number | Number of risky email addresses |
| unknown_count | number | Number of emails with unknown status |
Get the number of email addresses for a domain without using credits
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | Company domain to count emails for (e.g., google.com) | |
| type | select | Filter count by email type |
| Name | Type | Description |
|---|---|---|
| total | number | Total number of email addresses for the domain |
| personal_emails | number | Number of personal email addresses |
| generic_emails | number | Number of generic email addresses |
| domain | string | The domain that was analyzed |
| organization | string | Company name associated with the domain |
Get current account information and API usage statistics
| Name | Type | Description |
|---|---|---|
| string | Account email address | |
| plan_name | string | Current subscription plan |
| plan_level | number | Numeric plan level |
| reset_date | string | Date when API limits reset |
| team_id | number | Team identifier |
| calls_available | number | Remaining API calls for current period |
| calls_used | number | API calls used in current period |
Influencer marketing and audience quality analysis platform with fraud detection capabilities
Notes:
Search for influencers based on criteria like audience demographics, location, and engagement
| Field | Type | Default | Description |
|---|---|---|---|
| keywords | text | Keywords to search for in influencer profiles | |
| platform | select | ||
| follower_min | number | 1000 | Minimum number of followers |
| follower_max | number | Maximum number of followers (leave empty for no limit) | |
| engagement_rate_min | number | 2 | Minimum engagement rate as percentage |
| location | text | Geographic location (country, state, or city) | |
| limit | number | 50 | Maximum number of results to return (1-100) |
| Name | Type | Description |
|---|---|---|
| influencers | array | Array of influencer profiles matching search criteria |
| total_count | number | Total number of influencers found |
Get detailed audience analysis for a specific influencer including demographics and authenticity scores
| Field | Type | Default | Description |
|---|---|---|---|
| username | text | Influencer username (without @ symbol) | |
| platform | select |
| Name | Type | Description |
|---|---|---|
| audience_quality | object | Audience authenticity and quality metrics |
| demographics | object | Age, gender, location breakdown of audience |
| authenticity_score | number | Overall authenticity score (0-100) |
| fake_followers_percentage | number | Estimated percentage of fake followers |
Get comprehensive profile data for a specific influencer
| Field | Type | Default | Description |
|---|---|---|---|
| username | text | Influencer username (without @ symbol) | |
| platform | select |
| Name | Type | Description |
|---|---|---|
| profile | object | Complete influencer profile information |
| followers_count | number | Total number of followers |
| engagement_rate | number | Average engagement rate percentage |
| categories | array | Content categories this influencer covers |
Automation platform for smart devices and services with simple trigger-action logic
Notes:
Trigger an IFTTT applet with custom event name and data
| Field | Type | Default | Description |
|---|---|---|---|
| event_name | text | The event name configured in your IFTTT applet | |
| value1 | text | First custom value to pass to the applet | |
| value2 | text | Second custom value to pass to the applet | |
| value3 | text | Third custom value to pass to the applet |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the event was triggered successfully |
| event_name | string | The name of the triggered event |
| message | string | Response message from IFTTT |
Trigger an IFTTT applet with complex JSON data
| Field | Type | Default | Description |
|---|---|---|---|
| event_name | text | The event name configured in your IFTTT applet | |
| json_data | textarea | {} | Custom JSON payload to send with the event |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the event was triggered successfully |
| event_name | string | The name of the triggered event |
| response | string | Full response from IFTTT |
Trigger smart home devices through IFTTT
| Field | Type | Default | Description |
|---|---|---|---|
| device_action | select | ||
| device_name | text | Specific device name (optional) | |
| custom_value | text | Additional parameter for the action |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the smart home action was triggered |
| action | string | The smart home action that was executed |
| device | string | The device that was controlled |
Send push notifications through IFTTT mobile app
| Field | Type | Default | Description |
|---|---|---|---|
| message | textarea | The message to send as a push notification | |
| title | text | Optional title for the notification | |
| url | text | Optional URL to open when notification is tapped |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the notification was sent successfully |
| message_sent | string | The notification message that was sent |
Add a row to Google Sheets through IFTTT
| Field | Type | Default | Description |
|---|---|---|---|
| spreadsheet_name | text | Name of the Google Sheets file | |
| row_data | text | Data to add to the spreadsheet (pipe-separated: col1|col2|col3) |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the data was logged successfully |
| spreadsheet | string | The name of the updated spreadsheet |
| data_logged | string | The data that was added to the spreadsheet |
Extract furniture, home products, categories, and customer reviews from IKEA with 2 comprehensive operations
Notes:
Extract detailed product information from IKEA product URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | IKEA product URLs to scrape |
| Name | Type | Description |
|---|---|---|
| products | array | Detailed product information with pricing, specifications, and reviews |
| count | number | Number of products scraped |
Find products from IKEA category pages
| Field | Type | Default | Description |
|---|---|---|---|
| categoryUrls | textarea | IKEA category URLs (e.g., https://www.ikea.com/us/en/cat/table-lamps-10732/) |
| Name | Type | Description |
|---|---|---|
| products | array | Products found in the specified categories |
| count | number | Number of products found |
Partnership automation and affiliate management platform
Notes:
Retrieve affiliate partners and their details
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | Filter partners by status | |
| page | number | 1 | Page number to retrieve |
| page_size | number | 20 | Number of partners per page (max 100) |
| Name | Type | Description |
|---|---|---|
| partners | array | Array of partner data |
| total_partners | number | Total number of partners |
| page_info | object | Pagination information |
Retrieve marketing campaigns and their performance
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | Filter campaigns by status | |
| page | number | 1 | Page number to retrieve |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of campaign data |
| total_campaigns | number | Total number of campaigns |
Retrieve conversion actions and tracking data
| Field | Type | Default | Description |
|---|---|---|---|
| start_date | text | Start date for actions (YYYY-MM-DD format) | |
| end_date | text | End date for actions (YYYY-MM-DD format) | |
| campaign_id | text | Filter by specific campaign ID | |
| partner_id | text | Filter by specific partner ID |
| Name | Type | Description |
|---|---|---|
| actions | array | Array of conversion action data |
| total_actions | number | Total number of actions |
| total_revenue | number | Total revenue from actions |
Create a new affiliate partner
| Field | Type | Default | Description |
|---|---|---|---|
| partner_name | text | Name of the new partner | |
| text | Partner email address | ||
| website | text | Partner website URL | |
| category | text | Partner business category |
| Name | Type | Description |
|---|---|---|
| partner_created | boolean | Whether partner was created successfully |
| partner_id | string | ID of the created partner |
| partner_data | object | Created partner information |
Update the status of an affiliate partner
| Field | Type | Default | Description |
|---|---|---|---|
| partner_id | text | ID of the partner to update | |
| status | select | New status for the partner | |
| reason | textarea | Reason for status change |
| Name | Type | Description |
|---|---|---|
| status_updated | boolean | Whether status was updated successfully |
| partner_data | object | Updated partner information |
Generate performance reports and analytics
| Field | Type | Default | Description |
|---|---|---|---|
| report_type | select | Type of report to generate | |
| start_date | text | Report start date (YYYY-MM-DD format) | |
| end_date | text | Report end date (YYYY-MM-DD format) | |
| group_by | select | day | How to group the report data |
| Name | Type | Description |
|---|---|---|
| report_data | array | Generated report data |
| summary | object | Summary statistics |
| total_clicks | number | Total clicks in report period |
| total_conversions | number | Total conversions in report period |
| total_revenue | number | Total revenue in report period |
Extract job postings, company reviews, and salaries from Indeed with 7 comprehensive operations
Notes:
Extract detailed job information from Indeed job URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Indeed job listing URLs to scrape |
| Name | Type | Description |
|---|---|---|
| jobs | array | Job postings with salary, requirements, and company details |
| count | number | Number of job listings scraped |
Find job listings using keyword search with location and date filtering
| Field | Type | Default | Description |
|---|---|---|---|
| country | select | Country to search for jobs | |
| domain | text | Indeed domain (e.g., "indeed.com", "fr.indeed.com") | |
| keywordSearch | text | Job title or company to search for (e.g., "analyst", "product manager") | |
| location | text | Job location (e.g., "New York, NY", "Paris") | |
| datePosted | select | Filter by when the job was posted | |
| postedBy | text | Filter by who posted the job (optional) | |
| locationRadius | text | Search radius from location (optional) |
| Name | Type | Description |
|---|---|---|
| jobs | array | Jobs matching the search criteria |
| count | number | Number of jobs found |
Extract job listings from Indeed company job pages or search URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Indeed company job pages or search URLs |
| Name | Type | Description |
|---|---|---|
| jobs | array | Jobs found from the specified URLs |
| count | number | Number of jobs extracted |
Extract company information from Indeed company URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Indeed company page URLs to scrape |
| Name | Type | Description |
|---|---|---|
| companies | array | Company information with reviews, ratings, and details |
| count | number | Number of companies scraped |
Find companies from Indeed browse companies pages
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Indeed browse companies URLs (e.g., https://www.indeed.com/companies/browse-companies) |
| Name | Type | Description |
|---|---|---|
| companies | array | Companies from browse pages |
| count | number | Number of companies found |
Find companies using industry and state/location filters
| Field | Type | Default | Description |
|---|---|---|---|
| industry | text | Company industry (e.g., "All", "Airlines, Airports & Air Transportation", "Drug & Health Stores") | |
| state | text | State or location (e.g., "United States", "Alabama", "Sacramento, CA") |
| Name | Type | Description |
|---|---|---|
| companies | array | Companies matching the industry and location criteria |
| count | number | Number of companies found |
Find companies using keyword search on Indeed
| Field | Type | Default | Description |
|---|---|---|---|
| keyword | text | Keyword to search for companies (e.g., "Tesla", "Google") |
| Name | Type | Description |
|---|---|---|
| companies | array | Companies matching the keyword search |
| count | number | Number of companies found |
Small business CRM and marketing automation platform by Keap
Notes:
Create or update a contact in Infusionsoft
| Field | Type | Default | Description |
|---|---|---|---|
| text | Contact email address | ||
| givenName | text | Contact first name | |
| familyName | text | Contact last name | |
| company | text | Contact company name | |
| phoneNumber | text | Contact phone number | |
| customFields | textarea | {} | Additional contact fields as JSON object |
| Name | Type | Description |
|---|---|---|
| contactId | number | The Infusionsoft contact ID |
| status | string | Created or Updated |
Apply a tag to a contact
| Field | Type | Default | Description |
|---|---|---|---|
| contactId | text | The Infusionsoft contact ID | |
| tagIds | text | Comma-separated list of tag IDs to apply |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the tags were applied successfully |
| message | string | Success or error message |
Remove a tag from a contact
| Field | Type | Default | Description |
|---|---|---|---|
| contactId | text | The Infusionsoft contact ID | |
| tagId | text | The ID of the tag to remove |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the tag was removed successfully |
| message | string | Success or error message |
Add a contact to a campaign sequence
| Field | Type | Default | Description |
|---|---|---|---|
| contactId | text | The Infusionsoft contact ID | |
| campaignId | text | The ID of the campaign sequence |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the contact was added to the campaign |
| message | string | Success or error message |
Retrieve contact information by email or ID
| Field | Type | Default | Description |
|---|---|---|---|
| lookupField | select | Field to use for contact lookup | |
| lookupValue | text | The email address or contact ID to search for |
| Name | Type | Description |
|---|---|---|
| contact | object | Complete contact information from Infusionsoft |
| found | boolean | Whether the contact was found |
Create a sales opportunity in Infusionsoft
| Field | Type | Default | Description |
|---|---|---|---|
| contactId | text | The Infusionsoft contact ID | |
| opportunityTitle | text | Title for the opportunity | |
| stageId | text | The ID of the opportunity stage | |
| projectedRevenueHigh | number | Projected revenue amount |
| Name | Type | Description |
|---|---|---|
| opportunityId | number | The created opportunity ID |
| success | boolean | Whether the opportunity was created successfully |
Retrieve all Infusionsoft tags
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of tags to return |
| Name | Type | Description |
|---|---|---|
| tags | array | Array of Infusionsoft tags |
| count | number | Number of tags returned |
Retrieve all Infusionsoft campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of campaigns to return |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of Infusionsoft campaigns |
| count | number | Number of campaigns returned |
Project-based CRM with integrated task management and relationship mapping
Notes:
Get list of contacts from Insightly
| Field | Type | Default | Description |
|---|---|---|---|
| top | number | 50 | Number of contacts to return (max 500) |
| skip | number | 0 | Number of records to skip for pagination |
| orderby | select | Field to sort by |
| Name | Type | Description |
|---|---|---|
| contacts | array | |
| count | number | |
| success | boolean |
Create a new contact in Insightly
| Field | Type | Default | Description |
|---|---|---|---|
| firstName | text | Contact's first name | |
| lastName | text | Contact's last name | |
| emailAddress | text | Contact's primary email address | |
| phoneNumber | text | Contact's phone number | |
| jobTitle | text | Contact's job title | |
| organizationId | text | ID of the organization to associate with | |
| isPrivate | select | false | Contact visibility setting |
| Name | Type | Description |
|---|---|---|
| contactId | string | |
| contact | object | |
| success | boolean |
Update an existing contact
| Field | Type | Default | Description |
|---|---|---|---|
| contactId | text | The ID of the contact to update | |
| updateData | textarea | Contact data to update as JSON object |
| Name | Type | Description |
|---|---|---|
| contact | object | |
| updated | boolean | |
| success | boolean |
Get list of organizations from Insightly
| Field | Type | Default | Description |
|---|---|---|---|
| top | number | 50 | Number of organizations to return (max 500) |
| skip | number | 0 | Number of records to skip for pagination |
| Name | Type | Description |
|---|---|---|
| organizations | array | |
| count | number | |
| success | boolean |
Create a new organization in Insightly
| Field | Type | Default | Description |
|---|---|---|---|
| organizationName | text | Name of the organization | |
| website | text | Organization website URL | |
| phone | text | Organization phone number | |
| industry | text | Organization industry | |
| isPrivate | select | false | Organization visibility setting |
| Name | Type | Description |
|---|---|---|
| organizationId | string | |
| organization | object | |
| success | boolean |
Get list of opportunities (deals) from Insightly
| Field | Type | Default | Description |
|---|---|---|---|
| top | number | 50 | Number of opportunities to return (max 500) |
| skip | number | 0 | Number of records to skip for pagination |
| Name | Type | Description |
|---|---|---|
| opportunities | array | |
| count | number | |
| totalValue | number | |
| success | boolean |
Create a new opportunity in Insightly
| Field | Type | Default | Description |
|---|---|---|---|
| opportunityName | text | Name of the opportunity | |
| bidAmount | number | Opportunity value | |
| probability | number | Probability of closing (0-100) | |
| forecastCloseDate | text | Expected close date (YYYY-MM-DD format) | |
| organizationId | text | ID of the associated organization | |
| pipelineId | text | ID of the sales pipeline | |
| stageId | text | ID of the pipeline stage |
| Name | Type | Description |
|---|---|---|
| opportunityId | string | |
| opportunity | object | |
| success | boolean |
Get list of projects from Insightly
| Field | Type | Default | Description |
|---|---|---|---|
| top | number | 50 | Number of projects to return (max 500) |
| skip | number | 0 | Number of records to skip for pagination |
| Name | Type | Description |
|---|---|---|
| projects | array | |
| count | number | |
| success | boolean |
Create a new project in Insightly
| Field | Type | Default | Description |
|---|---|---|---|
| projectName | text | Name of the project | |
| projectDetails | textarea | Project description and details | |
| status | select | In Progress | Current project status |
| startDate | text | Project start date (YYYY-MM-DD format) | |
| endDate | text | Project end date (YYYY-MM-DD format) | |
| organizationId | text | ID of the associated organization |
| Name | Type | Description |
|---|---|---|
| projectId | string | |
| project | object | |
| success | boolean |
Get list of tasks from Insightly
| Field | Type | Default | Description |
|---|---|---|---|
| projectId | text | Filter tasks by project ID | |
| top | number | 50 | Number of tasks to return (max 500) |
| skip | number | 0 | Number of records to skip for pagination |
| Name | Type | Description |
|---|---|---|
| tasks | array | |
| count | number | |
| success | boolean |
Create a new task in Insightly
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | Title of the task | |
| details | textarea | Task description and details | |
| status | select | Not Started | Current task status |
| priority | select | 2 | Task priority level |
| dueDate | text | Task due date (YYYY-MM-DD format) | |
| projectId | text | ID of the associated project | |
| assignedUserId | text | ID of the user to assign task to |
| Name | Type | Description |
|---|---|---|
| taskId | string | |
| task | object | |
| success | boolean |
Update an existing task
| Field | Type | Default | Description |
|---|---|---|---|
| taskId | text | The ID of the task to update | |
| status | select | Update task status | |
| updateData | textarea | Additional task data to update as JSON object |
| Name | Type | Description |
|---|---|---|
| task | object | |
| updated | boolean | |
| success | boolean |
Get list of events and activities from Insightly
| Field | Type | Default | Description |
|---|---|---|---|
| top | number | 50 | Number of events to return (max 500) |
| skip | number | 0 | Number of records to skip for pagination |
| Name | Type | Description |
|---|---|---|
| events | array | |
| count | number | |
| success | boolean |
Create a new event or activity in Insightly
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | Title of the event | |
| details | textarea | Event description and details | |
| startDate | text | Event start date and time (YYYY-MM-DD HH:mm format) | |
| endDate | text | Event end date and time (YYYY-MM-DD HH:mm format) | |
| allDay | select | false | Whether this is an all-day event |
| organizationId | text | ID of the associated organization | |
| contactId | text | ID of the associated contact |
| Name | Type | Description |
|---|---|---|
| eventId | string | |
| event | object | |
| success | boolean |
Search for records across Insightly
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Search term or query | |
| searchFor | select | all | Type of records to search |
| top | number | 50 | Maximum number of results |
| Name | Type | Description |
|---|---|---|
| results | array | |
| count | number | |
| query | string | |
| success | boolean |
Scrape comments from Instagram posts and reels. Extract comment text, timestamps, usernames, profile data, and more. Includes premium features for newest comments first and nested replies.
Notes:
Execute Instagram comment scraper and return dataset items directly
| Field | Type | Default | Description |
|---|---|---|---|
| directUrls | textarea | Instagram post or reel URLs to scrape comments from (one per line) | |
| resultsLimit | number | 20 | Number of comments to scrape per post/reel (e.g., 5 comments per URL) |
| isNewestComments | checkbox | Premium feature: Extract newest comments first instead of top comments | |
| includeNestedComments | checkbox | Premium feature: Include replies to comments (increases total results) |
| Name | Type | Description |
|---|---|---|
| data | array | Array of scraped Instagram comments with comprehensive information |
| count | number | Number of comments successfully scraped |
| metadata | object | Additional information about the scraping operation |
Start async Instagram comment scraping run and return run information
| Field | Type | Default | Description |
|---|---|---|---|
| directUrls | textarea | Instagram post or reel URLs to scrape comments from (one per line) | |
| resultsLimit | number | 20 | Number of comments to scrape per post/reel |
| isNewestComments | checkbox | Premium feature: Extract newest comments first | |
| includeNestedComments | checkbox | Premium feature: Include replies to comments |
| Name | Type | Description |
|---|---|---|
| runId | string | Unique identifier for the scraping run |
| status | string | Current status of the scraping run |
| datasetId | string | ID of the dataset where results will be stored |
Execute Instagram comment scraper and return key-value store output
| Field | Type | Default | Description |
|---|---|---|---|
| directUrls | textarea | Instagram post or reel URLs to scrape comments from (one per line) | |
| resultsLimit | number | 20 | Number of comments to scrape per post/reel |
| Name | Type | Description |
|---|---|---|
| output | object | Key-value store output from the Instagram comment scraper |
| summary | object | Summary information about the scraping operation |
Scrape Instagram posts from multiple profiles. Extract comprehensive data including text, hashtags, mentions, comments, images, URLs, likes, locations, and metadata in seconds.
Notes:
Execute Instagram post scraper and return dataset items directly
| Field | Type | Default | Description |
|---|---|---|---|
| username | textarea | Instagram usernames or profile URLs to scrape posts from (one per line). Can be just username or full URL. | |
| resultsLimit | number | 10 | Maximum number of posts to scrape per profile. If set to 5, you'll get 5 posts for each profile. |
| onlyPostsNewerThan | text | Date filter: YYYY-MM-DD format or relative (e.g., "1 days", "2 months", "3 years"). UTC timezone. | |
| skipPinnedPosts | checkbox | Do not save pinned posts (get more organic content) |
| Name | Type | Description |
|---|---|---|
| data | array | Array of scraped Instagram posts with comprehensive information |
| count | number | Number of posts successfully scraped |
| metadata | object | Additional information about the scraping operation |
Start async Instagram post scraping run and return run information
| Field | Type | Default | Description |
|---|---|---|---|
| username | textarea | Instagram usernames or profile URLs to scrape posts from (one per line) | |
| resultsLimit | number | 10 | Maximum number of posts to scrape per profile |
| onlyPostsNewerThan | text | Date filter: YYYY-MM-DD or relative format | |
| skipPinnedPosts | checkbox | Do not save pinned posts |
| Name | Type | Description |
|---|---|---|
| runId | string | Unique identifier for the scraping run |
| status | string | Current status of the scraping run |
| datasetId | string | ID of the dataset where results will be stored |
Execute Instagram post scraper and return key-value store output
| Field | Type | Default | Description |
|---|---|---|---|
| username | textarea | Instagram usernames or profile URLs to scrape posts from (one per line) | |
| resultsLimit | number | 10 | Maximum number of posts to scrape per profile |
| Name | Type | Description |
|---|---|---|
| output | object | Key-value store output from the Instagram post scraper |
| summary | object | Summary information about the scraping operation |
Scrape comprehensive Instagram profile information. Extract followers & following counts, bio, posts, likes, related profiles, captions, and highlight reels. Perfect for influencer research and audience insights.
Notes:
Execute Instagram profile scraper and return dataset items directly
| Field | Type | Default | Description |
|---|---|---|---|
| usernames | textarea | Instagram usernames or user IDs to scrape profile data from (one per line). Supports both usernames and numeric user IDs. |
| Name | Type | Description |
|---|---|---|
| data | array | Array of scraped Instagram profiles with comprehensive information |
| count | number | Number of profiles successfully scraped |
| metadata | object | Additional information about the scraping operation |
Start async Instagram profile scraping run and return run information
| Field | Type | Default | Description |
|---|---|---|---|
| usernames | textarea | Instagram usernames or user IDs to scrape profile data from (one per line) |
| Name | Type | Description |
|---|---|---|
| runId | string | Unique identifier for the scraping run |
| status | string | Current status of the scraping run |
| datasetId | string | ID of the dataset where results will be stored |
Execute Instagram profile scraper and return key-value store output
| Field | Type | Default | Description |
|---|---|---|---|
| usernames | textarea | Instagram usernames or user IDs to scrape profile data from (one per line) |
| Name | Type | Description |
|---|---|---|
| output | object | Key-value store output from the Instagram profile scraper |
| summary | object | Summary information about the scraping operation |
Scrape and download Instagram posts, profiles, places, hashtags, photos, and comments. Get data from Instagram using URLs or search queries.
Notes:
Execute Instagram scraper and return dataset items directly
| Field | Type | Default | Description |
|---|---|---|---|
| directUrls | textarea | Instagram URLs to scrape (one per line). Optional if using search query. | |
| resultsType | select | posts | What content to scrape from each page |
| resultsLimit | number | Maximum number of posts or comments to scrape from each URL | |
| onlyPostsNewerThan | text | Date filter (YYYY-MM-DD or relative like "1 days", "2 months") | |
| isUserTaggedFeedURL | checkbox | Get tagged posts for each profile | |
| isUserReelFeedURL | checkbox | Get reels posts for each profile | |
| search | text | Search query for finding profiles, hashtags, or places | |
| searchType | select | hashtag | Type of content to search for |
| searchLimit | number | Maximum search results to return | |
| enhanceUserSearchWithFacebookPage | checkbox | Extract Facebook page data for top 10 users (higher credit usage) | |
| addParentData | checkbox | Add data source metadata to results |
| Name | Type | Description |
|---|---|---|
| data | array | Array of scraped Instagram items |
| count | number | Number of items successfully scraped |
| metadata | object | Additional information about the scraping operation |
Start async Instagram scraping run and return run information
| Field | Type | Default | Description |
|---|---|---|---|
| directUrls | textarea | Instagram URLs to scrape (one per line). Optional if using search query. | |
| resultsType | select | posts | What content to scrape from each page |
| resultsLimit | number | Maximum number of posts or comments to scrape from each URL | |
| search | text | Search query for finding profiles, hashtags, or places | |
| searchType | select | hashtag | Type of content to search for |
| Name | Type | Description |
|---|---|---|
| runId | string | Unique identifier for the scraping run |
| status | string | Current status of the scraping run |
| datasetId | string | ID of the dataset where results will be stored |
Execute Instagram scraper and return key-value store output
| Field | Type | Default | Description |
|---|---|---|---|
| directUrls | textarea | Instagram URLs to scrape (one per line). Optional if using search query. | |
| resultsType | select | posts | What content to scrape from each page |
| resultsLimit | number | Maximum number of posts or comments to scrape from each URL | |
| search | text | Search query for finding profiles, hashtags, or places |
| Name | Type | Description |
|---|---|---|
| output | object | Key-value store output from the scraper |
| summary | object | Summary information about the scraping operation |
Extract user profiles, posts, images, videos, followers, and comments from Instagram with 8 comprehensive operations
Notes:
Extract user profile information from Instagram URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Instagram profile URLs to scrape |
| Name | Type | Description |
|---|---|---|
| profiles | array | User profiles with follower counts, bio, and engagement metrics |
| count | number | Number of profiles scraped |
Find Instagram profiles using usernames
| Field | Type | Default | Description |
|---|---|---|---|
| usernames | textarea | Instagram usernames to find profiles for (without @ symbol) |
| Name | Type | Description |
|---|---|---|
| profiles | array | Profiles found by username |
| count | number | Number of profiles found |
Extract post details from Instagram post URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Instagram post URLs to scrape |
| Name | Type | Description |
|---|---|---|
| posts | array | Posts with content, likes, comments, and engagement metrics |
| count | number | Number of posts scraped |
Find posts from Instagram profile URLs with filtering options
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Instagram profile URLs to scrape posts from | |
| numOfPosts | number | Maximum number of posts to extract per profile (optional) | |
| startDate | text | Filter posts from this date onwards (optional) | |
| endDate | text | Filter posts until this date (optional) | |
| postType | select | Filter by post type | |
| postsToNotInclude | textarea | Post IDs to exclude (one per line, optional) |
| Name | Type | Description |
|---|---|---|
| posts | array | Posts from the specified profiles |
| count | number | Number of posts found |
Extract reel details from Instagram reel URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Instagram reel URLs to scrape |
| Name | Type | Description |
|---|---|---|
| reels | array | Reels with video content, views, and engagement metrics |
| count | number | Number of reels scraped |
Find reels from Instagram profile URLs with date filtering
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Instagram profile URLs to scrape reels from | |
| startDate | text | Filter reels from this date onwards (optional) | |
| endDate | text | Filter reels until this date (optional) |
| Name | Type | Description |
|---|---|---|
| reels | array | Reels from the specified profiles |
| count | number | Number of reels found |
Extract all reels from Instagram profiles with quantity control
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Instagram profile URLs to scrape all reels from | |
| numOfPosts | number | 20 | Maximum number of reels to extract per profile |
| startDate | text | Filter reels from this date onwards (optional) | |
| endDate | text | Filter reels until this date (optional) |
| Name | Type | Description |
|---|---|---|
| reels | array | All reels from the specified profiles |
| count | number | Number of reels found |
Extract comments from Instagram post and reel URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Instagram post or reel URLs to scrape comments from (gets latest 10 comments per URL) |
| Name | Type | Description |
|---|---|---|
| comments | array | Comments with user information and engagement data |
| count | number | Number of comments extracted |
AI-powered email marketing and cold outreach automation platform
Notes:
Add a new lead to Instantly.AI for cold email campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| text | Lead email address | ||
| firstName | text | Lead first name | |
| lastName | text | Lead last name | |
| companyName | text | Lead company name | |
| website | text | Company website URL | |
| campaignId | text | Campaign ID to add the lead to | |
| customFields | textarea | {} | Additional lead fields as JSON object |
| Name | Type | Description |
|---|---|---|
| leadId | string | The Instantly.AI lead ID |
| status | string | Success or error status |
Add an existing lead to an Instantly.AI campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | The ID of the campaign | |
| leadEmail | text | The email address of the lead to add |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the lead was added successfully |
| message | string | Success or error message |
Retrieve lead information by email
| Field | Type | Default | Description |
|---|---|---|---|
| text | The email address to search for |
| Name | Type | Description |
|---|---|---|
| lead | object | Complete lead information from Instantly.AI |
| found | boolean | Whether the lead was found |
Retrieve all campaigns from Instantly.AI
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of campaigns to return |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of campaigns |
| count | number | Number of campaigns returned |
Get detailed statistics for a campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | The ID of the campaign to get stats for |
| Name | Type | Description |
|---|---|---|
| stats | object | Detailed campaign performance metrics |
| totalSent | number | Total emails sent |
| totalReplies | number | Total replies received |
| replyRate | number | Reply rate percentage |
Remove a lead from an Instantly.AI campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | The ID of the campaign | |
| leadEmail | text | The email address of the lead to remove |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the lead was removed successfully |
| message | string | Success or error message |
Advanced automation platform with visual workflow builder and complex logic
Notes:
Retrieve a list of your Make.com scenarios
| Field | Type | Default | Description |
|---|---|---|---|
| team_id | text | Specific team ID (leave empty for personal scenarios) | |
| filter | select |
| Name | Type | Description |
|---|---|---|
| scenarios | array | List of Make.com scenarios |
| count | number | Total number of scenarios returned |
Get detailed information about a specific scenario
| Field | Type | Default | Description |
|---|---|---|---|
| scenario_id | text | The unique ID of the scenario |
| Name | Type | Description |
|---|---|---|
| scenario_name | string | Display name of the scenario |
| scenario_state | string | Current state of the scenario |
| scheduling | object | Scenario scheduling configuration |
| created_at | string | When the scenario was created |
| updated_at | string | When the scenario was last updated |
Activate or deactivate a Make.com scenario
| Field | Type | Default | Description |
|---|---|---|---|
| scenario_id | text | The unique ID of the scenario | |
| action | select |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the operation was successful |
| scenario_state | string | The new state of the scenario |
| message | string | Details about the operation |
Manually execute a Make.com scenario
| Field | Type | Default | Description |
|---|---|---|---|
| scenario_id | text | The unique ID of the scenario to run | |
| wait_for_completion | checkbox | Wait for the scenario execution to complete |
| Name | Type | Description |
|---|---|---|
| execution_id | string | Unique ID of the scenario execution |
| success | boolean | Whether the execution was triggered successfully |
| status | string | Current status of the execution |
Retrieve execution history for a specific scenario
| Field | Type | Default | Description |
|---|---|---|---|
| scenario_id | text | The unique ID of the scenario | |
| limit | number | 50 | Maximum number of executions to retrieve |
| status_filter | select |
| Name | Type | Description |
|---|---|---|
| executions | array | List of scenario execution records |
| count | number | Number of execution records returned |
Create a webhook endpoint for external systems to trigger scenarios
| Field | Type | Default | Description |
|---|---|---|---|
| webhook_name | text | A descriptive name for this webhook | |
| team_id | text | Team ID if creating for a team (optional) |
| Name | Type | Description |
|---|---|---|
| webhook_url | string | The generated webhook URL |
| webhook_id | string | Unique identifier for the webhook |
| success | boolean | Whether the webhook was created successfully |
Retrieve usage statistics for your Make.com organization
| Field | Type | Default | Description |
|---|---|---|---|
| period | select | current_month |
| Name | Type | Description |
|---|---|---|
| operations_used | number | Number of operations consumed |
| operations_limit | number | Maximum operations allowed |
| data_transfer | number | Data transfer usage in megabytes |
| active_scenarios | number | Number of currently active scenarios |
Customer support and messaging platform with contacts, conversations, events, and company management
Notes:
Retrieve contacts from your Intercom workspace
| Field | Type | Default | Description |
|---|---|---|---|
| text | Optional: Filter by specific email address | ||
| tag | text | Optional: Filter by contact tag | |
| limit | number | 20 | Number of contacts to retrieve (max 150) |
| Name | Type | Description |
|---|---|---|
| contacts | array | Array of contact objects |
| total | number |
Create a new contact in Intercom
| Field | Type | Default | Description |
|---|---|---|---|
| text | Contact's email address | ||
| externalUserId | text | External user ID (either email or user_id required) | |
| name | text | Contact's full name | |
| phone | text | Contact's phone number | |
| customAttributes | textarea | {} | Custom attributes as JSON object |
| Name | Type | Description |
|---|---|---|
| contact | object | |
| contactId | string |
Update an existing contact in Intercom
| Field | Type | Default | Description |
|---|---|---|---|
| contactId | text | Intercom contact ID to update | |
| name | text | Updated name | |
| text | Updated email address | ||
| phone | text | Updated phone number | |
| customAttributes | textarea | {} | Custom attributes to update as JSON object |
| Name | Type | Description |
|---|---|---|
| contact | object |
Retrieve conversations from Intercom
| Field | Type | Default | Description |
|---|---|---|---|
| state | select | ||
| assigneeId | text | Filter by assigned team member | |
| limit | number | 20 | Number of conversations to retrieve (max 150) |
| Name | Type | Description |
|---|---|---|
| conversations | array | |
| total | number |
Create a new conversation in Intercom
| Field | Type | Default | Description |
|---|---|---|---|
| contactId | text | Intercom contact ID to start conversation with | |
| subject | text | Conversation subject/title | |
| body | textarea | Initial message content | |
| messageType | select |
| Name | Type | Description |
|---|---|---|
| conversation | object | |
| conversationId | string |
Add a reply to an existing conversation
| Field | Type | Default | Description |
|---|---|---|---|
| conversationId | text | Intercom conversation ID to reply to | |
| body | textarea | Reply message content | |
| messageType | select | comment |
| Name | Type | Description |
|---|---|---|
| message | object | |
| messageId | string |
Close an open conversation
| Field | Type | Default | Description |
|---|---|---|---|
| conversationId | text | Intercom conversation ID to close |
| Name | Type | Description |
|---|---|---|
| conversation | object |
Track a custom event for a contact
| Field | Type | Default | Description |
|---|---|---|---|
| contactId | text | Intercom contact ID (either contact ID or email required) | |
| text | Contact email address (either contact ID or email required) | ||
| eventName | text | Name of the event to track | |
| metadata | textarea | {} | Event metadata as JSON object |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string |
Add a tag to a contact
| Field | Type | Default | Description |
|---|---|---|---|
| contactId | text | Intercom contact ID | |
| tagName | text | Name of the tag to add |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string |
Remove a tag from a contact
| Field | Type | Default | Description |
|---|---|---|---|
| contactId | text | Intercom contact ID | |
| tagName | text | Name of the tag to remove |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string |
Retrieve companies from Intercom
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Optional: Filter by company name | |
| limit | number | 20 | Number of companies to retrieve (max 150) |
| Name | Type | Description |
|---|---|---|
| companies | array | |
| total | number |
Create a new company in Intercom
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Company name | |
| companyId | text | Your internal company ID | |
| website | text | Company website URL | |
| industry | text | Company industry | |
| customAttributes | textarea | {} | Custom attributes as JSON object |
| Name | Type | Description |
|---|---|---|
| company | object | |
| companyId | string |
Issue tracking and project management software for agile development teams
Notes:
Create a new issue in Jira
| Field | Type | Default | Description |
|---|---|---|---|
| project_key | text | The key of the project to create the issue in | |
| summary | text | The title/summary of the issue | |
| description | textarea | Detailed description of the issue | |
| issue_type | select | Task | The type of issue to create |
| priority | select | Priority level of the issue | |
| assignee | text | Email or username of the assignee |
| Name | Type | Description |
|---|---|---|
| issue_key | string | The unique key of the created issue |
| issue_id | string | The numeric ID of the created issue |
| issue_url | string | The URL to view the issue in Jira |
| summary | string | The summary/title of the created issue |
Update an existing issue in Jira
| Field | Type | Default | Description |
|---|---|---|---|
| issue_key | text | The key of the issue to update (e.g., PROJ-123) | |
| summary | text | New summary for the issue | |
| description | textarea | Updated description of the issue | |
| status | text | New status for the issue (e.g., "In Progress", "Done") | |
| assignee | text | Email or username of the new assignee | |
| labels | text | Comma-separated list of labels to set on the issue (replaces existing labels) | |
| add_labels | text | Comma-separated list of labels to add (keeps existing labels) |
| Name | Type | Description |
|---|---|---|
| issue_key | string | The key of the updated issue |
| success | boolean | Whether the update was successful |
| labels | array | Labels on the issue after update |
Retrieve details of a specific issue
| Field | Type | Default | Description |
|---|---|---|---|
| issue_key | text | The key of the issue to retrieve (e.g., PROJ-123) |
| Name | Type | Description |
|---|---|---|
| issue_key | string | |
| issue_id | string | |
| summary | string | |
| description | string | |
| status | string | |
| priority | string | |
| assignee | object | |
| reporter | object | |
| project | object | |
| created | string | |
| updated | string |
Search for issues using JQL (Jira Query Language)
| Field | Type | Default | Description |
|---|---|---|---|
| jql | textarea | project = "PROJECT_KEY" ORDER BY created DESC | Jira Query Language search string |
| max_results | number | 50 | Maximum number of issues to return (max 100) |
| Name | Type | Description |
|---|---|---|
| issues | array | Array of issue objects |
| total | number | Total number of issues matching the query |
| count | number | Number of issues returned in this response |
Add a comment to an existing issue
| Field | Type | Default | Description |
|---|---|---|---|
| issue_key | text | The key of the issue to comment on | |
| body | textarea | The content of the comment |
| Name | Type | Description |
|---|---|---|
| comment_id | string | The unique ID of the created comment |
| body | string | The content of the comment |
| created | string | When the comment was created |
Online form builder and automation platform
Notes:
Get a list of your JotForm forms
| Field | Type | Default | Description |
|---|---|---|---|
| offset | number | 0 | Start position for results |
| limit | number | 20 | Number of forms to retrieve (max 1000) |
| filter | text | Filter forms (e.g., "ENABLED" or "DISABLED") | |
| order_by | select | created_at | How to order the results |
| Name | Type | Description |
|---|---|---|
| forms | array | Array of form objects |
| result_set | object | Pagination information |
Get details of a specific form
| Field | Type | Default | Description |
|---|---|---|---|
| form_id | text | ID of the form to retrieve |
| Name | Type | Description |
|---|---|---|
| form_id | string | The form ID |
| title | string | Form title |
| status | string | Form status (ENABLED/DISABLED) |
| url | string | Public URL of the form |
| count | number | Number of submissions received |
| created_at | string | When the form was created |
| updated_at | string | When the form was last updated |
Get submissions for a specific form
| Field | Type | Default | Description |
|---|---|---|---|
| form_id | text | ID of the form to get submissions for | |
| offset | number | 0 | Start position for results |
| limit | number | 20 | Number of submissions to retrieve (max 1000) |
| filter | text | Filter submissions (e.g., date filters) | |
| order_by | select | created_at | How to order the results |
| Name | Type | Description |
|---|---|---|
| submissions | array | Array of submission objects |
| result_set | object | Pagination information |
Get details of a specific submission
| Field | Type | Default | Description |
|---|---|---|---|
| submission_id | text | ID of the submission to retrieve |
| Name | Type | Description |
|---|---|---|
| submission_id | string | The submission ID |
| form_id | string | ID of the form this submission belongs to |
| ip | string | IP address of the submitter |
| created_at | string | When the submission was created |
| status | string | Submission status |
| answers | object | Submission answers data |
Create a new JotForm form
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | Title of the new form | |
| questions | textarea | [] | JSON array of questions to add to the form |
| Name | Type | Description |
|---|---|---|
| form_id | string | The ID of the created form |
| title | string | Form title |
| url | string | Public URL of the form |
Delete a specific submission
| Field | Type | Default | Description |
|---|---|---|---|
| submission_id | text | ID of the submission to delete |
| Name | Type | Description |
|---|---|---|
| deleted | boolean | Whether the submission was successfully deleted |
| submission_id | string | ID of the deleted submission |
Get questions/fields for a specific form
| Field | Type | Default | Description |
|---|---|---|---|
| form_id | text | ID of the form to get questions for |
| Name | Type | Description |
|---|---|---|
| questions | array | Array of form questions/fields |
| form_id | string | The form ID |
Product review platform for e-commerce
Notes:
Get product reviews from Judge.me
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | Specific product ID to filter by | |
| page | number | 1 | Page number to retrieve |
| per_page | number | 20 | Number of reviews to return (max 250) |
| rating | select | Filter by rating | |
| published | select | Filter by published status | |
| featured | select | Filter by featured status |
| Name | Type | Description |
|---|---|---|
| reviews | array | Array of review data |
| total_reviews | number | Total number of reviews |
| average_rating | number | Average star rating |
Get reviews for a specific product
| Field | Type | Default | Description |
|---|---|---|---|
| product_external_id | text | External product ID (from your e-commerce platform) | |
| page | number | 1 | Page number to retrieve |
| per_page | number | 20 | Number of reviews to return (max 250) |
| Name | Type | Description |
|---|---|---|
| reviews | array | Array of product review data |
| product_info | object | Product information |
| total_reviews | number | Total number of reviews for this product |
| average_rating | number | Average rating for this product |
Send review invitation to a customer
| Field | Type | Default | Description |
|---|---|---|---|
| text | Customer email address | ||
| order_id | text | Order identifier | |
| customer_name | text | Customer full name | |
| products | textarea | JSON array of products [{\"external_id\":\"123\",\"name\":\"Product Name\"}] | |
| send_in_days | number | 7 | Number of days to wait before sending invitation |
| Name | Type | Description |
|---|---|---|
| invite_created | boolean | Whether invitation was created successfully |
| invite_id | string | Unique invitation identifier |
Get available review widgets
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | Product ID for product-specific widgets |
| Name | Type | Description |
|---|---|---|
| widgets | array | Array of available widgets |
Get review statistics for a product
| Field | Type | Default | Description |
|---|---|---|---|
| product_external_id | text | External product ID (from your e-commerce platform) |
| Name | Type | Description |
|---|---|---|
| statistics | object | Product review statistics |
| total_reviews | number | Total number of reviews |
| average_rating | number | Average star rating |
| rating_distribution | object | Distribution of ratings by star count |
Update a review (publish, feature, respond)
| Field | Type | Default | Description |
|---|---|---|---|
| review_id | text | ID of the review to update | |
| published | select | Set published status | |
| featured | select | Set featured status | |
| reply | textarea | Reply message to the review |
| Name | Type | Description |
|---|---|---|
| review_updated | boolean | Whether review was updated successfully |
| review_data | object | Updated review information |
Social media analytics and influencer tracking platform with hashtag and campaign monitoring
Notes:
Track hashtag performance and influencer analytics
| Field | Type | Default | Description |
|---|---|---|---|
| hashtag | text |
| Name | Type | Description |
|---|---|---|
| analytics | object |
Customer analytics and lifetime value tracking with advanced cohort analysis and revenue insights
Notes:
Send an event to Kissmetrics for customer analytics
| Field | Type | Default | Description |
|---|---|---|---|
| customerId | text | Unique identifier for the customer | |
| eventName | text | Name of the event to track | |
| properties | textarea | {} | Additional properties for the event |
| timestamp | text | Event timestamp (ISO 8601 format) |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| eventId | string | |
| timestamp | string |
Update customer properties in Kissmetrics
| Field | Type | Default | Description |
|---|---|---|---|
| customerId | text | Unique identifier for the customer | |
| properties | textarea | Customer properties to set (name, email, plan, etc.) | |
| timestamp | text | Property update timestamp |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| customerId | string | |
| updatedProperties | object |
Retrieve customer activity timeline and events
| Field | Type | Default | Description |
|---|---|---|---|
| customerId | text | Customer to get timeline for | |
| startDate | text | Start date for timeline | |
| endDate | text | End date for timeline | |
| limit | number | 100 | Maximum number of events to return |
| Name | Type | Description |
|---|---|---|
| timeline | array | |
| eventCount | number | |
| customerInfo | object | |
| lifetimeValue | number |
Generate report for specific events with metrics
| Field | Type | Default | Description |
|---|---|---|---|
| eventNames | textarea | Array of event names to analyze | |
| startDate | text | Report start date | |
| endDate | text | Report end date | |
| groupBy | select | day |
| Name | Type | Description |
|---|---|---|
| reportData | array | |
| totalEvents | number | |
| uniqueCustomers | number | |
| trends | array |
Analyze customer cohorts and retention patterns
| Field | Type | Default | Description |
|---|---|---|---|
| cohortEvent | text | Event that defines cohort entry | |
| retentionEvent | text | Event that indicates customer retention | |
| startDate | text | Cohort analysis start date | |
| endDate | text | Cohort analysis end date | |
| cohortPeriod | select | week |
| Name | Type | Description |
|---|---|---|
| cohortData | array | |
| retentionRates | array | |
| cohortSizes | array | |
| averageRetention | number |
Analyze conversion funnels and customer journey
| Field | Type | Default | Description |
|---|---|---|---|
| funnelSteps | textarea | Array of events representing funnel steps | |
| startDate | text | Funnel analysis start date | |
| endDate | text | Funnel analysis end date | |
| conversionWindow | number | 30 | Time window for conversion |
| Name | Type | Description |
|---|---|---|
| funnelData | array | |
| conversionRates | array | |
| overallConversion | number | |
| dropOffAnalysis | array |
Analyze revenue metrics and customer lifetime value
| Field | Type | Default | Description |
|---|---|---|---|
| revenueEvent | text | Event that tracks revenue (e.g., "Purchase") | |
| revenueProperty | text | Property containing revenue amount | |
| startDate | text | Revenue analysis start date | |
| endDate | text | Revenue analysis end date | |
| groupBy | select | day |
| Name | Type | Description |
|---|---|---|
| revenueData | array | |
| totalRevenue | number | |
| averageOrderValue | number | |
| customerLifetimeValue | number | |
| revenueGrowth | number |
Analyze customer segments based on behavior and properties
| Field | Type | Default | Description |
|---|---|---|---|
| segmentProperty | text | Property to segment customers by | |
| eventFilter | text | Filter customers who performed this event | |
| startDate | text | Segmentation analysis start date | |
| endDate | text | Segmentation analysis end date |
| Name | Type | Description |
|---|---|---|
| segments | array | |
| segmentCount | number | |
| totalCustomers | number | |
| segmentInsights | array |
Creator-focused email marketing platform with automation sequences, tags, and segments (formerly ConvertKit)
Notes:
Retrieve subscribers from your Kit account
| Field | Type | Default | Description |
|---|---|---|---|
| state | select | active | |
| email_address | text | Filter by specific email address | |
| created_after | text | Only subscribers created after this date | |
| page | number | 1 | Page number for pagination |
| Name | Type | Description |
|---|---|---|
| subscribers | array | Array of subscriber objects |
| total_subscribers | number | Total number of subscribers |
| total_pages | number | Total number of pages |
Create a new subscriber in Kit
| Field | Type | Default | Description |
|---|---|---|---|
| text | Subscriber email address | ||
| first_name | text | Subscriber first name | |
| fields | textarea | {} | Custom fields as JSON object (e.g. {"last_name": "Smith", "city": "New York"}) |
| tags | textarea | [] | Array of tag IDs to apply (e.g. [123, 456]) |
| Name | Type | Description |
|---|---|---|
| subscriber | object | The created subscriber object |
| subscriber_id | number | ID of the created subscriber |
Update an existing subscriber in Kit
| Field | Type | Default | Description |
|---|---|---|---|
| subscriber_id | text | ID of the subscriber to update | |
| first_name | text | Updated first name | |
| text | Updated email address | ||
| fields | textarea | {} | Custom fields to update as JSON object |
| Name | Type | Description |
|---|---|---|
| subscriber | object | The updated subscriber object |
Unsubscribe an email address from all forms and sequences
| Field | Type | Default | Description |
|---|---|---|---|
| text | Email address to unsubscribe |
| Name | Type | Description |
|---|---|---|
| subscriber | object | The unsubscribed subscriber object |
Retrieve all tags from your Kit account
| Name | Type | Description |
|---|---|---|
| tags | array | Array of tag objects |
Create a new tag in Kit
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name for the new tag |
| Name | Type | Description |
|---|---|---|
| tag | object | The created tag object |
| tag_id | number | ID of the created tag |
Add a tag to a subscriber
| Field | Type | Default | Description |
|---|---|---|---|
| text | Email address of the subscriber | ||
| tag_id | text | ID of the tag to apply |
| Name | Type | Description |
|---|---|---|
| subscription | object | The tag subscription object |
Remove a tag from a subscriber
| Field | Type | Default | Description |
|---|---|---|---|
| subscriber_id | text | ID of the subscriber | |
| tag_id | text | ID of the tag to remove |
| Name | Type | Description |
|---|---|---|
| removed | boolean | Whether the tag was successfully removed |
Retrieve all forms from your Kit account
| Name | Type | Description |
|---|---|---|
| forms | array | Array of form objects |
Add a subscriber to a specific form
| Field | Type | Default | Description |
|---|---|---|---|
| form_id | text | ID of the form | |
| text | Subscriber email address | ||
| first_name | text | Subscriber first name | |
| fields | textarea | {} | Custom fields as JSON object |
| Name | Type | Description |
|---|---|---|
| subscription | object | The form subscription object |
Retrieve all email sequences from your Kit account
| Name | Type | Description |
|---|---|---|
| sequences | array | Array of sequence objects |
Add a subscriber to an email sequence
| Field | Type | Default | Description |
|---|---|---|---|
| sequence_id | text | ID of the sequence | |
| text | Subscriber email address |
| Name | Type | Description |
|---|---|---|
| subscription | object | The sequence subscription object |
Retrieve broadcasts from your Kit account
| Name | Type | Description |
|---|---|---|
| broadcasts | array | Array of broadcast objects |
Create a new broadcast email
| Field | Type | Default | Description |
|---|---|---|---|
| subject | text | Email subject line | |
| content | textarea | HTML content of the email | |
| description | text | Internal description for the broadcast | |
| public | checkbox | Whether to make the broadcast publicly viewable |
| Name | Type | Description |
|---|---|---|
| broadcast | object | The created broadcast object |
| broadcast_id | number | ID of the created broadcast |
Influencer marketing and social intelligence platform with audience analysis and campaign management
Notes:
Search for influencers with advanced filtering and social intelligence
| Field | Type | Default | Description |
|---|---|---|---|
| keywords | text | Keywords to search in influencer profiles and content | |
| platforms | select | Social media platform to search on | |
| minFollowers | number | Minimum follower count | |
| maxFollowers | number | Maximum follower count | |
| location | text | Geographic location (city, country, or region) | |
| categories | text | Content categories (comma-separated) | |
| minEngagementRate | number | Minimum engagement rate percentage | |
| audienceGender | select | Filter by audience gender distribution | |
| audienceAgeGroup | select | Primary age group of the influencer's audience | |
| limit | number | 50 | Maximum number of influencers to return |
| Name | Type | Description |
|---|---|---|
| influencers | array | Array of influencer profiles with detailed social intelligence metrics |
| count | number | Number of influencers found |
Get detailed profile and social intelligence data for an influencer
| Field | Type | Default | Description |
|---|---|---|---|
| influencerId | text | The ID of the influencer (can be Klear ID or social handle) | |
| platform | select | Platform to get profile from (if using handle) | |
| includeAudienceAnalysis | checkbox | 1 | Include detailed audience demographics and quality analysis |
| includeContentAnalysis | checkbox | Include analysis of recent content and performance |
| Name | Type | Description |
|---|---|---|
| profile | object | Comprehensive influencer profile with social intelligence metrics |
| audienceQuality | object | Audience quality metrics including authenticity scores |
| demographics | object | Detailed audience demographics and geographic distribution |
| found | boolean | Whether the influencer profile was found |
Analyze brand mentions and sentiment across social platforms
| Field | Type | Default | Description |
|---|---|---|---|
| brandName | text | Name of the brand to analyze mentions for | |
| hashtags | text | Relevant hashtags to include in analysis (comma-separated) | |
| platforms | text | instagram,youtube,twitter | Platforms to analyze (comma-separated: instagram,youtube,twitter,tiktok) |
| dateRange | select | 30d | Time period for the analysis |
| Name | Type | Description |
|---|---|---|
| mentions | array | Array of brand mentions with sentiment and reach data |
| sentiment | object | Overall sentiment breakdown (positive, negative, neutral) |
| reach | object | Total reach and impressions from brand mentions |
| topInfluencers | array | Influencers with the highest reach for brand mentions |
Analyze competitor brand presence and influencer partnerships
| Field | Type | Default | Description |
|---|---|---|---|
| competitorBrand | text | Name of the competitor brand to analyze | |
| platforms | text | instagram,youtube,twitter | Platforms to analyze (comma-separated) |
| includeInfluencers | checkbox | 1 | Include analysis of competitor's influencer partnerships |
| Name | Type | Description |
|---|---|---|
| brandMetrics | object | Competitor brand social media metrics and performance |
| topInfluencers | array | Influencers frequently partnering with the competitor |
| contentThemes | array | Popular content themes and strategies used |
| campaignInsights | object | Analysis of competitor campaign strategies and performance |
Track and analyze hashtag performance and influencer usage
| Field | Type | Default | Description |
|---|---|---|---|
| hashtag | text | Hashtag to track (without the # symbol) | |
| platforms | text | instagram,twitter,tiktok | Platforms to track on (comma-separated) |
| dateRange | select | 30d | Time period for the analysis |
| Name | Type | Description |
|---|---|---|
| performance | object | Overall hashtag performance metrics |
| topPosts | array | Top-performing posts using the hashtag |
| topInfluencers | array | Influencers with highest reach using this hashtag |
| trends | object | Trending patterns and momentum for the hashtag |
Generate a comprehensive report for an influencer or campaign
| Field | Type | Default | Description |
|---|---|---|---|
| influencerId | text | The ID of the influencer to generate report for | |
| reportType | select | profile | Type of report to generate |
| includeCompetitorAnalysis | checkbox | Include analysis of similar influencers and competitive landscape |
| Name | Type | Description |
|---|---|---|
| reportId | string | Generated report ID for future reference |
| reportData | object | Complete report data and analysis |
| insights | array | Key insights and recommendations from the analysis |
| success | boolean | Whether the report was generated successfully |
Create & manage knowledge bases for your AI agents and tasks.
Secure cryptocurrency exchange with professional trading tools
Notes:
Get account balance information
| Name | Type | Description |
|---|---|---|
| balances | object | Balances for all assets |
Get ticker information for trading pairs
| Field | Type | Default | Description |
|---|---|---|---|
| pair | text | XBTUSD | Trading pair (e.g., XBTUSD, ETHUSD) |
| Name | Type | Description |
|---|---|---|
| ask_price | number | |
| bid_price | number | |
| last_price | number | |
| volume_24h | number | |
| ticker_data | object |
Place a buy or sell order
| Field | Type | Default | Description |
|---|---|---|---|
| pair | text | Trading pair (e.g., XBTUSD) | |
| type | select | Buy or sell order | |
| ordertype | select | market | Market or limit order |
| volume | number | Amount to buy/sell | |
| price | number | Price for limit orders |
| Name | Type | Description |
|---|---|---|
| order_id | string | |
| description | string | |
| order_data | object |
Cancel an open order
| Field | Type | Default | Description |
|---|---|---|---|
| txid | text | Order transaction ID to cancel |
| Name | Type | Description |
|---|---|---|
| count | number | |
| pending | boolean |
Get information about orders
| Field | Type | Default | Description |
|---|---|---|---|
| txid | text | Specific order ID (leave empty for all orders) | |
| trades | select | false | Include trade information |
| Name | Type | Description |
|---|---|---|
| orders | object | Details about orders |
Get trade balance information
| Field | Type | Default | Description |
|---|---|---|---|
| asset | text | ZUSD | Base asset for balance calculation |
| Name | Type | Description |
|---|---|---|
| equivalent_balance | number | |
| trade_balance | number | |
| margin_amount | number | |
| unrealized_pnl | number | |
| balance_data | object |
Visual social media scheduling platform
Notes:
Get list of connected social media profiles
| Name | Type | Description |
|---|---|---|
| profiles | array | |
| count | number | |
| success | boolean |
Schedule a visual social media post
| Field | Type | Default | Description |
|---|---|---|---|
| profileId | text | Social profile ID to post to | |
| caption | textarea | Caption text for the post | |
| scheduledTime | text | When to publish the post (ISO 8601 format) | |
| mediaUrls | textarea | Image/video URLs separated by commas | |
| firstComment | textarea | First comment to post (Instagram only) | |
| linkInBio | text | URL for Instagram link in bio |
| Name | Type | Description |
|---|---|---|
| postId | string | |
| post | object | |
| scheduledAt | string | |
| success | boolean |
Get list of scheduled and published posts
| Field | Type | Default | Description |
|---|---|---|---|
| profileId | text | Filter by specific social profile ID | |
| status | select | Filter by post status | |
| limit | number | 50 | Maximum number of posts to return |
| Name | Type | Description |
|---|---|---|
| posts | array | |
| count | number | |
| success | boolean |
Get details of a specific post
| Field | Type | Default | Description |
|---|---|---|---|
| postId | text | The ID of the post to retrieve |
| Name | Type | Description |
|---|---|---|
| post | object | |
| caption | string | |
| status | string | |
| scheduledAt | string | |
| success | boolean |
Update a scheduled post
| Field | Type | Default | Description |
|---|---|---|---|
| postId | text | The ID of the post to update | |
| caption | textarea | New caption text for the post | |
| scheduledTime | text | New scheduled time (ISO 8601 format) | |
| firstComment | textarea | Updated first comment text |
| Name | Type | Description |
|---|---|---|
| post | object | |
| updated | boolean | |
| success | boolean |
Delete a scheduled or draft post
| Field | Type | Default | Description |
|---|---|---|---|
| postId | text | The ID of the post to delete |
| Name | Type | Description |
|---|---|---|
| deleted | boolean | |
| postId | string | |
| success | boolean |
Get media files from Later media library
| Field | Type | Default | Description |
|---|---|---|---|
| mediaType | select | all | Filter by media type |
| limit | number | 50 | Maximum number of media items to return |
| Name | Type | Description |
|---|---|---|
| media | array | |
| count | number | |
| success | boolean |
Upload media file to Later media library
| Field | Type | Default | Description |
|---|---|---|---|
| mediaUrl | text | URL of the media file to upload | |
| filename | text | Name for the uploaded file | |
| alt_text | text | Alt text for accessibility |
| Name | Type | Description |
|---|---|---|
| mediaId | string | |
| media | object | |
| url | string | |
| success | boolean |
Get posts scheduled in the content calendar
| Field | Type | Default | Description |
|---|---|---|---|
| startDate | text | Start date in YYYY-MM-DD format | |
| endDate | text | End date in YYYY-MM-DD format | |
| profileId | text | Filter by specific social profile ID |
| Name | Type | Description |
|---|---|---|
| calendar | array | |
| count | number | |
| success | boolean |
Get hashtag suggestions based on content
| Field | Type | Default | Description |
|---|---|---|---|
| keyword | text | Keyword or topic for hashtag suggestions | |
| limit | number | 20 | Maximum number of hashtag suggestions |
| Name | Type | Description |
|---|---|---|
| hashtags | array | |
| count | number | |
| success | boolean |
Influencer marketing and UGC management platform with content scheduling capabilities
Notes:
Discover and search for influencers using Later Influence's database
| Field | Type | Default | Description |
|---|---|---|---|
| platform | select | ||
| keywords | text | Search keywords related to niche or content | |
| location | text | Geographic location filter | |
| follower_min | number | 1000 | |
| follower_max | number | Leave empty for unlimited | |
| engagement_rate_min | number | 2 | |
| categories | text | Comma-separated categories (fashion, beauty, travel, etc.) | |
| limit | number | 50 | Maximum results to return (1-100) |
| Name | Type | Description |
|---|---|---|
| influencers | array | Array of discovered influencer profiles |
| total_count | number | Total number of influencers found |
Monitor and track user-generated content mentions and hashtags
| Field | Type | Default | Description |
|---|---|---|---|
| hashtags | textarea | Hashtags to monitor (one per line, include # symbol) | |
| platforms | select | ["instagram"] | |
| days | number | 7 | Number of days to search back (1-30) |
| min_engagement | number | 10 | Minimum likes/reactions for content to be included |
| limit | number | 100 | Maximum UGC posts to return |
| Name | Type | Description |
|---|---|---|
| ugc_posts | array | Array of user-generated content posts |
| total_posts | number | Total number of UGC posts found |
| top_hashtags | array | Most frequently used hashtags |
| engagement_stats | object | Aggregated engagement metrics |
Create and manage influencer marketing campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| action | select | ||
| campaign_id | text | Required for update and get_details actions | |
| campaign_name | text | Required for create action | |
| description | textarea | Campaign details and objectives | |
| budget | number | Total campaign budget in USD | |
| start_date | text | Campaign start date (YYYY-MM-DD) | |
| end_date | text | Campaign end date (YYYY-MM-DD) |
| Name | Type | Description |
|---|---|---|
| campaign | object | Campaign information and details |
| campaign_id | string | Unique campaign identifier |
| status | string | Current campaign status |
Get detailed analytics and performance insights for a specific influencer
| Field | Type | Default | Description |
|---|---|---|---|
| username | text | Influencer username (without @ symbol) | |
| platform | select | ||
| period | select | 30d |
| Name | Type | Description |
|---|---|---|
| insights | object | Comprehensive influencer analytics data |
| audience_demographics | object | Age, gender, location breakdown |
| engagement_metrics | object | Detailed engagement performance |
| content_performance | array | Top performing posts and content analysis |
| brand_safety_score | number | Brand safety rating (0-100) |
Sales prospecting and lead capture platform with contact discovery, CRM integration, and personalized outreach automation
Notes:
Find individuals by name, company, email, or LinkedIn profile
| Field | Type | Default | Description |
|---|---|---|---|
| person_name | text | Full name of the person to search for | |
| company_name | text | Current or past company name | |
| text | Work or personal email address | ||
| linkedin_url | text | LinkedIn profile URL of the person | |
| location | text | Geographic location (city, state, country) |
| Name | Type | Description |
|---|---|---|
| person_id | string | |
| full_name | string | |
| first_name | string | |
| last_name | string | |
| job_title | string | |
| company | object | |
| email_address | string | |
| phone_number | string | |
| linkedin_url | string | |
| location | string | |
| confidence_score | number |
Find company information by name, domain, or LinkedIn URL
| Field | Type | Default | Description |
|---|---|---|---|
| company_name | text | Name of the company to search for | |
| domain | text | Company website domain (e.g., example.com) | |
| country | text | Country where the company is located | |
| linkedin_url | text | LinkedIn company page URL |
| Name | Type | Description |
|---|---|---|
| company_id | string | |
| name | string | |
| domain | string | |
| industry | string | |
| employee_count | number | |
| revenue | string | |
| headquarters | string | |
| linkedin_url | string | |
| description | string | |
| founded_year | number |
Find multiple people with complex filtering criteria
| Field | Type | Default | Description |
|---|---|---|---|
| job_titles | textarea | Job titles to search for (one per line) | |
| seniority_levels | textarea | Seniority levels (e.g., Senior, Manager, Director) | |
| company_domains | textarea | Company domains to search within (one per line) | |
| locations | textarea | Geographic locations (one per line) | |
| industries | textarea | Industry sectors (one per line) | |
| company_size_min | number | Minimum number of employees | |
| company_size_max | number | Maximum number of employees | |
| limit | number | 10 | Maximum number of results to return (1-100) |
| Name | Type | Description |
|---|---|---|
| people | array | |
| total_results | number | |
| search_criteria | object |
Enrich existing contact data with additional information
| Field | Type | Default | Description |
|---|---|---|---|
| text | Email address to enrich | ||
| include_company_data | checkbox | 1 | Include company information in the enrichment |
| include_social_profiles | checkbox | 1 | Include social media profile links |
| Name | Type | Description |
|---|---|---|
| person_data | object | |
| company_data | object | |
| social_profiles | array | |
| data_quality_score | number |
Modern issue tracking and project management tool designed for software development
Notes:
Create a new issue in Linear
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | The title of the issue to create | |
| description | textarea | Detailed description of the issue | |
| team_id | text | The ID of the team to create the issue in | |
| assignee_id | text | The ID of the user to assign the issue to | |
| priority | select | Priority level of the issue | |
| project_id | text | The ID of the project to add the issue to | |
| label_ids | text | Comma-separated list of label IDs to apply |
| Name | Type | Description |
|---|---|---|
| issue_id | string | The unique ID of the created issue |
| issue_url | string | The URL to view the issue in Linear |
| issue_number | number | The sequential number of the issue |
| title | string | The title of the created issue |
Update an existing issue in Linear
| Field | Type | Default | Description |
|---|---|---|---|
| issue_id | text | The ID of the issue to update | |
| title | text | New title for the issue | |
| description | textarea | Updated description of the issue | |
| state_id | text | ID of the new state for the issue | |
| assignee_id | text | ID of the user to assign the issue to | |
| priority | select | New priority level of the issue |
| Name | Type | Description |
|---|---|---|
| issue_id | string | The unique ID of the updated issue |
| success | boolean | Whether the update was successful |
Retrieve details of a specific issue
| Field | Type | Default | Description |
|---|---|---|---|
| issue_id | text | The ID of the issue to retrieve |
| Name | Type | Description |
|---|---|---|
| issue_id | string | |
| title | string | |
| description | string | |
| number | number | |
| priority | number | |
| url | string | |
| state | object | |
| assignee | object | |
| team | object | |
| project | object | |
| labels | array | |
| created_at | string | |
| updated_at | string |
List issues from a team or project
| Field | Type | Default | Description |
|---|---|---|---|
| team_id | text | ID of team to list issues from | |
| project_id | text | ID of project to list issues from | |
| assignee_id | text | Filter issues by assignee ID | |
| state_type | select | Filter issues by state type | |
| limit | number | 25 | Maximum number of issues to return |
| Name | Type | Description |
|---|---|---|
| issues | array | Array of issue objects |
| count | number | Number of issues returned |
Add a comment to an issue
| Field | Type | Default | Description |
|---|---|---|---|
| issue_id | text | The ID of the issue to comment on | |
| body | textarea | The content of the comment |
| Name | Type | Description |
|---|---|---|
| comment_id | string | The unique ID of the created comment |
| body | string | The content of the comment |
| created_at | string | When the comment was created |
Professional networking, sponsored content, and lead generation with LinkedIn Marketing API
Notes:
Create a new LinkedIn advertising campaign
| Field | Type | Default | Description |
|---|---|---|---|
| ad_account_id | text | LinkedIn ad account ID (urn:li:sponsoredAccount:123456) | |
| campaign_group_id | text | Campaign group ID to organize campaigns | |
| campaign_name | text | Name for the campaign | |
| campaign_type | select | Type of LinkedIn campaign | |
| objective | select | Campaign objective | |
| daily_budget | number | Daily budget in USD cents (e.g., 10000 = $100) |
| Name | Type | Description |
|---|---|---|
| campaign_id | string | ID of the created campaign |
| campaign_name | string | |
| status | string | |
| success | boolean |
Create a sponsored content post for LinkedIn
| Field | Type | Default | Description |
|---|---|---|---|
| organization_id | text | LinkedIn organization ID (urn:li:organization:123456) | |
| post_text | textarea | Content text for the sponsored post | |
| title | text | Title for the sponsored post | |
| image_url | text | URL of image to include in the post | |
| landing_page_url | text | URL to redirect users when they click the post | |
| visibility | select | PUBLIC | Visibility setting for the post |
| Name | Type | Description |
|---|---|---|
| post_id | string | ID of the created post |
| post_url | string | Public URL of the post |
| status | string | |
| success | boolean |
Retrieve LinkedIn ad accounts associated with the user
| Name | Type | Description |
|---|---|---|
| ad_accounts | array | List of available ad accounts |
| count | number | |
| success | boolean |
Retrieve analytics and performance data for a campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | LinkedIn campaign ID to analyze | |
| date_range_start | text | Start date for analytics (YYYY-MM-DD format) | |
| date_range_end | text | End date for analytics (YYYY-MM-DD format) |
| Name | Type | Description |
|---|---|---|
| impressions | number | |
| clicks | number | |
| spend | number | |
| ctr | number | |
| cpc | number | |
| leads | number | |
| cost_per_lead | number | |
| success | boolean |
Create a lead generation form for LinkedIn campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| ad_account_id | text | LinkedIn ad account ID | |
| form_name | text | Name for the lead generation form | |
| headline | text | Headline text for the form | |
| description | textarea | Description text for the form | |
| privacy_policy_url | text | URL to your privacy policy | |
| thank_you_message | textarea | Message shown after form submission |
| Name | Type | Description |
|---|---|---|
| form_id | string | ID of the created lead generation form |
| form_name | string | |
| status | string | |
| success | boolean |
Retrieve leads generated from LinkedIn campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| form_id | text | LinkedIn lead generation form ID | |
| start_date | text | Start date for leads (YYYY-MM-DD format) | |
| end_date | text | End date for leads (YYYY-MM-DD format) |
| Name | Type | Description |
|---|---|---|
| leads | array | Array of lead data |
| count | number | |
| success | boolean |
Retrieve detailed information about a LinkedIn company
| Field | Type | Default | Description |
|---|---|---|---|
| company_id | text | LinkedIn company ID or universal name |
| Name | Type | Description |
|---|---|---|
| company_id | string | |
| name | string | |
| description | string | |
| industry | string | |
| company_size | string | |
| follower_count | number | |
| website_url | string | |
| headquarters | string | |
| success | boolean |
Get audience insights and targeting data for LinkedIn campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| targeting_criteria | textarea | {"industries": [], "jobFunctions": [], "seniorities": []} | JSON object with targeting criteria (industries, job functions, etc.) |
| Name | Type | Description |
|---|---|---|
| audience_size | number | |
| targeting_criteria | object | |
| demographics | object | |
| success | boolean |
Professional advertising and sponsored content platform for B2B marketing and lead generation
Notes:
Retrieve LinkedIn advertising accounts accessible to the authenticated user
| Name | Type | Description |
|---|---|---|
| adAccounts | array | Array of LinkedIn advertising account objects |
| totalAccounts | number | Number of ad accounts accessible |
Retrieve campaigns from LinkedIn Ads account
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | Filter campaigns by status | |
| campaign_type | select | Filter by campaign type |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of campaign objects with details and settings |
| totalCampaigns | number | Total number of campaigns retrieved |
Create a new LinkedIn Ads campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_name | text | Name for the new campaign | |
| campaign_type | select | Type of LinkedIn ads campaign | |
| objective_type | select | Marketing objective for the campaign | |
| daily_budget | number | Daily budget amount in USD | |
| total_budget | number | Total campaign budget in USD | |
| start_date | text | Campaign start date (YYYY-MM-DD) | |
| end_date | text | Campaign end date (YYYY-MM-DD) |
| Name | Type | Description |
|---|---|---|
| campaign | object | Details of the newly created campaign |
| campaignId | string | Unique identifier for the created campaign |
| success | boolean | Whether the campaign was created successfully |
Update an existing LinkedIn Ads campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | ID of the campaign to update | |
| campaign_name | text | New name for the campaign | |
| status | select | New campaign status | |
| daily_budget | number | New daily budget amount | |
| total_budget | number | New total budget amount |
| Name | Type | Description |
|---|---|---|
| campaign | object | Details of the updated campaign |
| success | boolean | Whether the campaign was updated successfully |
Retrieve campaign groups from LinkedIn Ads account
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | Filter by campaign group status |
| Name | Type | Description |
|---|---|---|
| campaignGroups | array | Array of campaign group objects |
| totalGroups | number | Total number of campaign groups retrieved |
Retrieve ad creatives from campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | Filter creatives by specific campaign ID | |
| status | select | Filter by creative status |
| Name | Type | Description |
|---|---|---|
| creatives | array | Array of ad creative objects |
| totalCreatives | number | Total number of creatives retrieved |
Retrieve performance analytics for LinkedIn Ads campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_ids | text | Comma-separated campaign IDs (leave empty for all) | |
| start_date | text | Start date in YYYY-MM-DD format | |
| end_date | text | End date in YYYY-MM-DD format | |
| time_granularity | select | ALL | Time granularity for analytics data |
| fields | text | impressions,clicks,costInUsd,externalWebsiteConversions | Comma-separated list of metric fields to retrieve |
| Name | Type | Description |
|---|---|---|
| analytics | array | Array of analytics data for campaigns |
| summary | object | Aggregated performance summary across all campaigns |
Retrieve available audience targeting options
| Field | Type | Default | Description |
|---|---|---|---|
| facet_type | select | Type of targeting criteria to retrieve | |
| query | text | Search term to filter targeting options |
| Name | Type | Description |
|---|---|---|
| targetingOptions | array | Array of available targeting options for the specified facet |
| totalOptions | number | Number of targeting options available |
Retrieve conversion tracking data
| Field | Type | Default | Description |
|---|---|---|---|
| conversion_id | text | Specific conversion ID to retrieve (leave empty for all) |
| Name | Type | Description |
|---|---|---|
| conversions | array | Array of conversion tracking objects |
| totalConversions | number | Total number of conversion trackings retrieved |
Scrape in batch LinkedIn posts from LinkedIn profiles including post content, reactions, comments count, and media attachments. No cookies required - process up to 100 profiles.
Notes:
Execute LinkedIn profile posts scraper and return dataset items directly
| Field | Type | Default | Description |
|---|---|---|---|
| usernames | textarea | LinkedIn profile identifiers (one per line). Use usernames (e.g., "satyanadella") or full URLs. Max 100 profiles. | |
| limit | number | 100 | Number of posts to scrape per profile (1-100) |
| Name | Type | Description |
|---|---|---|
| data | array | Array of scraped LinkedIn posts with comprehensive information |
| count | number | Number of posts successfully scraped |
| metadata | object | Additional information about the scraping operation |
Start async LinkedIn profile posts scraping run and return run information
| Field | Type | Default | Description |
|---|---|---|---|
| usernames | textarea | LinkedIn profile identifiers (one per line). Use usernames or full URLs. | |
| limit | number | 100 | Number of posts to scrape per profile |
| Name | Type | Description |
|---|---|---|
| runId | string | Unique identifier for the scraping run |
| status | string | Current status of the scraping run |
| datasetId | string | ID of the dataset where results will be stored |
Execute LinkedIn profile posts scraper and return key-value store output
| Field | Type | Default | Description |
|---|---|---|---|
| usernames | textarea | LinkedIn profile identifiers (one per line). Use usernames or full URLs. | |
| limit | number | 100 | Number of posts to scrape per profile |
| Name | Type | Description |
|---|---|---|
| output | object | Key-value store output from the LinkedIn profile posts scraper |
| summary | object | Summary information about the scraping operation |
Extract profiles, company pages, job postings, connections, and posts from LinkedIn with 11 comprehensive operations
Notes:
Extract detailed profile information from LinkedIn profile URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | LinkedIn profile URLs to scrape |
| Name | Type | Description |
|---|---|---|
| profiles | array | Professional profiles with experience, skills, and connections |
| count | number | Number of profiles scraped |
Find LinkedIn profiles using first and last names
| Field | Type | Default | Description |
|---|---|---|---|
| firstName | text | First name of the person to search for | |
| lastName | text | Last name of the person to search for |
| Name | Type | Description |
|---|---|---|
| profiles | array | Profiles matching the specified names |
| count | number | Number of profiles found |
Extract company details from LinkedIn company URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | LinkedIn company URLs to scrape |
| Name | Type | Description |
|---|---|---|
| companies | array | Company information with employee counts, industry, and insights |
| count | number | Number of companies scraped |
Extract job posting details from LinkedIn job URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | LinkedIn job listing URLs to scrape |
| Name | Type | Description |
|---|---|---|
| jobs | array | Job postings with requirements, salary, and company details |
| count | number | Number of job listings scraped |
Find job listings using location and keyword search with advanced filters
| Field | Type | Default | Description |
|---|---|---|---|
| location | text | Location to search for jobs (e.g., "Paris", "New York") | |
| keyword | text | Job title or keyword (e.g., "product manager", "python developer") | |
| country | text | Country code (e.g., "US", "FR") - optional | |
| timeRange | select | Filter by when the job was posted | |
| jobType | select | Type of employment | |
| experienceLevel | select | Required experience level | |
| remote | select | Remote work preference | |
| company | text | Specific company name to filter by (optional) | |
| locationRadius | text | Search radius from location (optional) |
| Name | Type | Description |
|---|---|---|
| jobs | array | Jobs matching the search criteria |
| count | number | Number of jobs found |
Extract job listings from LinkedIn job search or company URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | LinkedIn job search URLs or company job pages |
| Name | Type | Description |
|---|---|---|
| jobs | array | Jobs found from the specified URLs |
| count | number | Number of jobs extracted |
Extract post and article details from LinkedIn post URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | LinkedIn post or article URLs to scrape |
| Name | Type | Description |
|---|---|---|
| posts | array | Posts and articles with content and engagement metrics |
| count | number | Number of posts scraped |
Find posts from LinkedIn company pages
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | LinkedIn company URLs to scrape posts from |
| Name | Type | Description |
|---|---|---|
| posts | array | Posts from the specified companies |
| count | number | Number of posts found |
Find posts from LinkedIn profile URLs with date filtering
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | LinkedIn profile URLs to scrape posts from | |
| startDate | text | Filter posts from this date onwards (ISO 8601 format, optional) | |
| endDate | text | Filter posts until this date (ISO 8601 format, optional) |
| Name | Type | Description |
|---|---|---|
| posts | array | Posts from the specified profiles |
| count | number | Number of posts found |
Extract posts from LinkedIn author or general URLs with limits
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | LinkedIn author or general URLs to scrape posts from | |
| limit | number | 50 | Maximum number of posts to extract per URL |
| Name | Type | Description |
|---|---|---|
| posts | array | Posts found from the specified URLs |
| count | number | Number of posts extracted |
Search for people on LinkedIn using first and last names
| Field | Type | Default | Description |
|---|---|---|---|
| firstName | text | First name of the person to search for | |
| lastName | text | Last name of the person to search for |
| Name | Type | Description |
|---|---|---|
| people | array | People matching the search criteria |
| count | number | Number of people found |
Live customer support and engagement platform
Notes:
Send a message in a LiveChat conversation
| Field | Type | Default | Description |
|---|---|---|---|
| chat_id | text | ID of the chat to send message to | |
| text | textarea | Content of the message | |
| author_id | text | ID of the agent sending the message (optional) |
| Name | Type | Description |
|---|---|---|
| message_id | string | The ID of the sent message |
| text | string | The message content |
| timestamp | string | When the message was sent |
Retrieve details of a specific chat
| Field | Type | Default | Description |
|---|---|---|---|
| chat_id | text | ID of the chat to retrieve |
| Name | Type | Description |
|---|---|---|
| chat_id | string | The chat ID |
| active | boolean | Whether the chat is active |
| users_count | number | Number of users in the chat |
| thread_id | string | Current thread ID |
| created_at | string | When the chat was created |
Get a list of chats with optional filtering
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 10 | Number of chats to retrieve (max 25) |
| page_id | text | Pagination token for next page | |
| sort_order | select | desc | Sort order for results |
| Name | Type | Description |
|---|---|---|
| chats | array | Array of chat objects |
| next_page_id | string | Token for retrieving next page |
| previous_page_id | string | Token for retrieving previous page |
Create a new customer in LiveChat
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Customer full name | |
| text | Customer email address | ||
| avatar | text | URL to customer avatar image | |
| session_fields | textarea | {} | Additional session fields as JSON object |
| Name | Type | Description |
|---|---|---|
| customer_id | string | The ID of the created customer |
| name | string | Customer name |
| string | Customer email | |
| created_at | string | When the customer was created |
Retrieve details of a specific customer
| Field | Type | Default | Description |
|---|---|---|---|
| customer_id | text | ID of the customer to retrieve |
| Name | Type | Description |
|---|---|---|
| customer_id | string | The customer ID |
| name | string | Customer name |
| string | Customer email | |
| avatar | string | Customer avatar URL |
| created_at | string | When the customer was created |
Update an existing customer in LiveChat
| Field | Type | Default | Description |
|---|---|---|---|
| customer_id | text | ID of the customer to update | |
| name | text | New customer name | |
| text | New email address | ||
| avatar | text | New avatar URL |
| Name | Type | Description |
|---|---|---|
| customer_id | string | The ID of the updated customer |
| updated_at | string | When the customer was updated |
Browser-based webinar platform with automated workflows and CRM integration
Notes:
Create a new Livestorm webinar event
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | The title of the webinar event | |
| description | textarea | Event description | |
| starts_at | text | ISO 8601 format (e.g., 2024-12-25T14:00:00Z) | |
| estimated_duration | number | 60 | Estimated event duration in minutes |
| timezone | text | UTC | e.g., America/New_York, Europe/London |
| language | text | en | Event language code (e.g., en, fr, es) |
| registration_required | checkbox | Require attendees to register |
| Name | Type | Description |
|---|---|---|
| event_id | string | |
| event_url | string | |
| registration_url | string | |
| success | boolean |
Create a session within an existing event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The ID of the parent event | |
| starts_at | text | ISO 8601 format (e.g., 2024-12-25T14:00:00Z) | |
| estimated_duration | number | 60 | Estimated session duration in minutes |
| Name | Type | Description |
|---|---|---|
| session_id | string | |
| session_url | string | |
| success | boolean |
Retrieve details of a specific event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event |
| Name | Type | Description |
|---|---|---|
| title | string | |
| description | string | |
| starts_at | string | |
| estimated_duration | number | |
| status | string | |
| event_url | string | |
| registration_url | string | |
| success | boolean |
Register a person for an event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event | |
| text | Attendee email address | ||
| first_name | text | Attendee first name | |
| last_name | text | Attendee last name | |
| role | text | Attendee role or job title | |
| company | text | Attendee company name |
| Name | Type | Description |
|---|---|---|
| person_id | string | |
| registration_id | string | |
| join_url | string | |
| success | boolean |
Retrieve list of registrations for an event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event | |
| limit | number | 50 | Maximum number of registrations to return |
| Name | Type | Description |
|---|---|---|
| registrations | array | |
| total_count | number | |
| success | boolean |
Retrieve list of attendees for a session
| Field | Type | Default | Description |
|---|---|---|---|
| session_id | text | The unique ID of the session |
| Name | Type | Description |
|---|---|---|
| attendees | array | |
| total_count | number | |
| success | boolean |
Retrieve list of events
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | ||
| limit | number | 50 | Maximum number of events to return |
| Name | Type | Description |
|---|---|---|
| events | array | |
| total_count | number | |
| success | boolean |
Animation and motion graphics platform for accessing Lottie animations and JSON files
Notes:
Search for Lottie animations by query
| Field | Type | Default | Description |
|---|---|---|---|
| q | text | Keywords to search for (e.g., "loading", "success", "confetti") | |
| page | number | 1 | Page number for pagination |
| limit | number | 20 | Number of animations to return (max 100) |
| sort | select | relevance | Sort order for results |
| type | select | Filter by animation type | |
| category | select | Filter by category |
| Name | Type | Description |
|---|---|---|
| animations | array | Array of animation objects with metadata and URLs |
| total | number | Total number of animations matching the search |
| page | number | Current page number |
| totalPages | number | Total number of pages available |
Get featured Lottie animations
| Field | Type | Default | Description |
|---|---|---|---|
| page | number | 1 | Page number for pagination |
| limit | number | 20 | Number of animations to return (max 100) |
| category | select | Filter by category |
| Name | Type | Description |
|---|---|---|
| animations | array | Array of featured animation objects |
| page | number | Current page number |
| totalPages | number | Total number of pages available |
Get detailed information about a specific animation
| Field | Type | Default | Description |
|---|---|---|---|
| animation_id | text | LottieFiles animation ID or URL |
| Name | Type | Description |
|---|---|---|
| animation | object | Complete animation information |
| id | number | Unique animation identifier |
| name | string | Name of the animation |
| description | string | Animation description |
| lottieUrl | string | Direct URL to the Lottie JSON file |
| gifUrl | string | URL to GIF preview of the animation |
| previewUrl | string | URL to static preview image |
| tags | array | Array of tags associated with the animation |
| creator | object | Information about the animation creator |
Download the Lottie JSON file for an animation
| Field | Type | Default | Description |
|---|---|---|---|
| animation_id | text | LottieFiles animation ID |
| Name | Type | Description |
|---|---|---|
| lottieJson | object | The complete Lottie animation JSON data |
| downloadUrl | string | Direct download URL for the Lottie JSON file |
| success | boolean | Whether the download was successful |
Get list of available animation categories
| Name | Type | Description |
|---|---|---|
| categories | array | Array of available animation categories |
| totalCategories | number | Number of categories available |
Get most popular Lottie animations
| Field | Type | Default | Description |
|---|---|---|---|
| page | number | 1 | Page number for pagination |
| limit | number | 20 | Number of animations to return (max 100) |
| timeframe | select | week | Popularity timeframe |
| Name | Type | Description |
|---|---|---|
| animations | array | Array of popular animation objects |
| page | number | Current page number |
| totalPages | number | Total number of pages available |
Contact information and lead generation platform with email finder, phone numbers, and LinkedIn prospecting tools
Notes:
Enrich contact information using email or LinkedIn profile
| Field | Type | Default | Description |
|---|---|---|---|
| text | Email address to enrich | ||
| linkedin_url | text | LinkedIn profile URL to enrich | |
| first_name | text | Person's first name for additional context | |
| last_name | text | Person's last name for additional context | |
| company | text | Company name for additional context | |
| include_phone | checkbox | 1 | Attempt to find phone number (uses credits) |
| Name | Type | Description |
|---|---|---|
| contact | object | Enriched contact details and profile data |
| phone_numbers | array | Found phone numbers with types |
| email_addresses | array | Found email addresses with verification status |
| company_info | object | Company details and business information |
| social_profiles | array | Social media and professional profiles |
| confidence_score | number | Data confidence score from 0-100 |
Find contact information using name and company details
| Field | Type | Default | Description |
|---|---|---|---|
| first_name | text | Person's first name | |
| last_name | text | Person's last name | |
| company_name | text | Company name where person works | |
| company_domain | text | Company domain (e.g., google.com) | |
| job_title | text | Person's job title for better matching | |
| location | text | Geographic location (city, state, country) |
| Name | Type | Description |
|---|---|---|
| contacts | array | Array of contacts matching the search criteria |
| total_results | number | Total number of contacts found |
| search_query | object | The search parameters that were used |
Get detailed company information and employee insights
| Field | Type | Default | Description |
|---|---|---|---|
| company_name | text | Company name to enrich | |
| domain | text | Company domain to enrich | |
| linkedin_url | text | LinkedIn company page URL | |
| include_employees | checkbox | 1 | Include employee count and department breakdown |
| Name | Type | Description |
|---|---|---|
| company | object | Comprehensive company information |
| employee_data | object | Employee count and department insights |
| contact_info | object | Company contact details |
| technology_stack | array | Technologies used by the company |
Enrich multiple contacts in a single batch request
| Field | Type | Default | Description |
|---|---|---|---|
| contacts | textarea | [{"email": "john@example.com"}, {"first_name": "Jane", "last_name": "Smith", "company": "Acme Corp"}] | Array of contacts with email, name, or LinkedIn URL |
| include_phone | checkbox | Attempt to find phone numbers (uses more credits) | |
| webhook_url | text | Webhook URL for batch completion notification |
| Name | Type | Description |
|---|---|---|
| batch_id | string | Unique identifier for the bulk enrichment job |
| status | string | Batch processing status |
| total_contacts | number | Number of contacts in the batch |
| estimated_completion | string | Estimated completion time |
Search for people using advanced filters and criteria
| Field | Type | Default | Description |
|---|---|---|---|
| company_names | textarea | [] | Array of company names to search within |
| job_titles | textarea | [] | Array of job titles to filter by |
| departments | textarea | [] | Array of departments (e.g., ["Sales", "Marketing", "Engineering"]) |
| seniority_levels | textarea | [] | Array of seniority levels (e.g., ["C-Level", "VP", "Director"]) |
| locations | textarea | [] | Array of geographic locations |
| company_size | select | Filter by company size | |
| limit | number | 25 | Maximum number of people to return (default: 25, max: 100) |
| Name | Type | Description |
|---|---|---|
| people | array | Array of people matching the search criteria |
| total_results | number | Total number of people found |
| search_filters | object | The filters that were applied |
Verify email address validity and deliverability
| Field | Type | Default | Description |
|---|---|---|---|
| text | Email address to verify |
| Name | Type | Description |
|---|---|---|
| string | The email address that was verified | |
| is_valid | boolean | Whether the email address is valid |
| is_deliverable | boolean | Whether the email is deliverable |
| risk_level | string | Email risk level: low, medium, high |
| verification_details | object | Detailed verification results |
Check remaining API credits and usage statistics
| Name | Type | Description |
|---|---|---|
| credits_remaining | number | Number of API credits remaining |
| credits_used | number | Number of credits used this period |
| plan_type | string | Current subscription plan |
| reset_date | string | Date when credits reset |
Open-source e-commerce platform for creating and managing online stores with advanced features
Notes:
Retrieve products from your Magento store
| Field | Type | Default | Description |
|---|---|---|---|
| page_size | number | 20 | Number of products to retrieve per page |
| current_page | number | 1 | Page number to retrieve |
| search_criteria | text | Search term for product name or SKU |
| Name | Type | Description |
|---|---|---|
| products | array | Array of product objects |
| total_count | number | Total number of products found |
Get a specific product by SKU
| Field | Type | Default | Description |
|---|---|---|---|
| sku | text | The SKU of the product to retrieve |
| Name | Type | Description |
|---|---|---|
| product | object | Complete product details |
| id | number | |
| sku | string | |
| name | string | |
| price | number |
Create a new product in your Magento store
| Field | Type | Default | Description |
|---|---|---|---|
| sku | text | Unique SKU for the product | |
| name | text | The name of the product | |
| attribute_set_id | number | 4 | Attribute set ID (default is usually 4) |
| price | text | Product price (e.g., 19.99) | |
| type_id | select | simple | |
| weight | text | Product weight for shipping |
| Name | Type | Description |
|---|---|---|
| product | object | The created product object |
| id | number | ID of the created product |
| sku | string |
Update an existing product
| Field | Type | Default | Description |
|---|---|---|---|
| sku | text | SKU of the product to update | |
| name | text | New product name | |
| price | text | New price | |
| weight | text | New weight |
| Name | Type | Description |
|---|---|---|
| product | object | The updated product object |
| id | number | |
| sku | string |
Retrieve orders from your Magento store
| Field | Type | Default | Description |
|---|---|---|---|
| page_size | number | 20 | Number of orders to retrieve per page |
| current_page | number | 1 | Page number to retrieve |
| Name | Type | Description |
|---|---|---|
| orders | array | Array of order objects |
| total_count | number | Total number of orders found |
Get a specific order by ID
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | number | The ID of the order to retrieve |
| Name | Type | Description |
|---|---|---|
| order | object | Complete order details |
| entity_id | number | |
| increment_id | string | |
| status | string | |
| grand_total | number | |
| customer_email | string |
Retrieve customers from your Magento store
| Field | Type | Default | Description |
|---|---|---|---|
| page_size | number | 20 | Number of customers to retrieve per page |
| current_page | number | 1 | Page number to retrieve |
| Name | Type | Description |
|---|---|---|
| customers | array | Array of customer objects |
| total_count | number | Total number of customers found |
Web-based bug tracking system for issue management and project tracking
Notes:
Create a new issue in MantisBT
| Field | Type | Default | Description |
|---|---|---|---|
| project_id | text | The ID of the project | |
| summary | text | The summary of the issue | |
| description | textarea | Description of the issue | |
| category_id | text | 1 | The category ID for the issue |
| Name | Type | Description |
|---|---|---|
| issue_id | string | The unique ID of the created issue |
Enterprise marketing automation and lead nurturing platform with advanced analytics and campaign management
Notes:
Create or update a lead in Marketo
| Field | Type | Default | Description |
|---|---|---|---|
| text | Lead email address | ||
| firstName | text | Lead first name | |
| lastName | text | Lead last name | |
| company | text | Lead company name | |
| customFields | textarea | {} | Additional lead fields as JSON object |
| Name | Type | Description |
|---|---|---|
| leadId | number | The Marketo lead ID |
| status | string | Created or Updated |
Add a lead to a Marketo static list
| Field | Type | Default | Description |
|---|---|---|---|
| listId | text | The ID of the static list | |
| leadId | text | The Marketo lead ID to add to the list |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the lead was added successfully |
| message | string | Success or error message |
Retrieve lead information by email or ID
| Field | Type | Default | Description |
|---|---|---|---|
| lookupField | select | Field to use for lead lookup | |
| lookupValue | text | The email address or lead ID to search for |
| Name | Type | Description |
|---|---|---|
| lead | object | Complete lead information from Marketo |
| found | boolean | Whether the lead was found |
Trigger a Marketo smart campaign for a lead
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | The ID of the smart campaign to trigger | |
| leadId | text | The Marketo lead ID to run the campaign for | |
| tokens | textarea | {} | Campaign tokens as JSON object (e.g., {"my.token1": "value1"}) |
| Name | Type | Description |
|---|---|---|
| requestId | string | The campaign request ID |
| success | boolean | Whether the campaign was triggered successfully |
Get activity history for a lead
| Field | Type | Default | Description |
|---|---|---|---|
| leadId | text | The Marketo lead ID to get activities for | |
| activityTypeIds | text | Comma-separated list of activity type IDs to filter (optional) | |
| limit | number | 100 | Maximum number of activities to return |
| Name | Type | Description |
|---|---|---|
| activities | array | Array of lead activities |
| count | number | Number of activities returned |
Extract lawyer profiles, reviews, and practice areas from Martindale.com legal directory
Notes:
Extract detailed lawyer information from Martindale profile URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Martindale lawyer profile URLs to scrape |
| Name | Type | Description |
|---|---|---|
| lawyers | array | Lawyer profiles with practice areas, education, and contact information |
| count | number | Number of lawyer profiles scraped |
Find lawyers using keyword search on Martindale directory
| Field | Type | Default | Description |
|---|---|---|---|
| keyword | text | Keyword to search for lawyers (e.g., "Harvard", "Timothy", "New York, USA") |
| Name | Type | Description |
|---|---|---|
| lawyers | array | Lawyers matching the search keyword |
| count | number | Number of lawyers found |
Open-source marketing automation platform with campaign management and lead tracking
Notes:
Create or update a contact in Mautic
| Field | Type | Default | Description |
|---|---|---|---|
| text | Contact email address | ||
| firstName | text | Contact first name | |
| lastName | text | Contact last name | |
| company | text | Contact company name | |
| phone | text | Contact phone number | |
| customFields | textarea | {} | Additional contact fields as JSON object |
| Name | Type | Description |
|---|---|---|
| contactId | number | The Mautic contact ID |
| status | string | Created or Updated |
Add a contact to a Mautic segment
| Field | Type | Default | Description |
|---|---|---|---|
| contactId | text | The Mautic contact ID | |
| segmentId | text | The ID of the segment |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the contact was added to the segment |
| message | string | Success or error message |
Add points to a contact in Mautic
| Field | Type | Default | Description |
|---|---|---|---|
| contactId | text | The Mautic contact ID | |
| points | number | Number of points to add | |
| eventName | text | API Points Added | Name of the point event |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether points were added successfully |
| message | string | Success or error message |
Retrieve contact information by email or ID
| Field | Type | Default | Description |
|---|---|---|---|
| lookupField | select | Field to use for contact lookup | |
| lookupValue | text | The email address or contact ID to search for |
| Name | Type | Description |
|---|---|---|
| contact | object | Complete contact information from Mautic |
| found | boolean | Whether the contact was found |
Send an email to a contact using a Mautic email template
| Field | Type | Default | Description |
|---|---|---|---|
| contactId | text | The Mautic contact ID | |
| emailId | text | The ID of the Mautic email template |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the email was sent successfully |
| message | string | Success or error message |
Retrieve all Mautic segments
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of segments to return |
| Name | Type | Description |
|---|---|---|
| segments | array | Array of Mautic segments |
| count | number | Number of segments returned |
Retrieve all Mautic campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of campaigns to return |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of Mautic campaigns |
| count | number | Number of campaigns returned |
Retrieve all Mautic email templates
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of email templates to return |
| Name | Type | Description |
|---|---|---|
| emails | array | Array of Mautic email templates |
| count | number | Number of email templates returned |
Connect to external MCP (Model Context Protocol) servers and use their tools in your workflows. Works with Zapier MCP, custom servers, and any MCP-compatible service.
Notes:
Fetch and list available tools from the MCP server
| Name | Type | Description |
|---|---|---|
| tools | array | List of tools with name, description, and input schema |
| toolCount | number | Number of available tools |
| serverInfo | object | Information about the MCP server |
Execute a specific tool on the MCP server
| Field | Type | Default | Description |
|---|---|---|---|
| toolName | text | The name of the MCP tool to execute | |
| arguments | code_editor | {} | JSON object with arguments to pass to the tool |
| Name | Type | Description |
|---|---|---|
| result | any | The result returned by the MCP tool |
| isError | boolean | Whether the tool call resulted in an error |
Test the connection to the MCP server
| Name | Type | Description |
|---|---|---|
| connected | boolean | Whether the connection was successful |
| serverInfo | object | Information about the MCP server |
| message | string | Connection status message |
File hosting and cloud storage platform
Notes:
Upload a file to MediaFire
| Name | Type | Required | Description |
|---|---|---|---|
| file_content | file | Yes | The file content to upload |
| Field | Type | Default | Description |
|---|---|---|---|
| folder_key | text | MediaFire folder key to upload to. Leave empty for root folder. | |
| file_name | text | Name for the uploaded file including extension |
| Name | Type | Description |
|---|---|---|
| quickkey | string | Unique identifier of the uploaded file |
| download_url | string | Public URL to download the file |
| file_size | number | Size of the uploaded file in bytes |
Download a file from MediaFire
| Field | Type | Default | Description |
|---|---|---|---|
| quickkey | text | MediaFire quick key of the file to download |
| Name | Type | Description |
|---|---|---|
| file_content | binary | The downloaded file content |
| file_name | string | Original name of the file |
| file_size | number | Size of the file in bytes |
List files and folders in MediaFire
| Field | Type | Default | Description |
|---|---|---|---|
| folder_key | text | MediaFire folder key to list files from. Leave empty for root folder. | |
| chunk | number | 100 | Number of items to return (1-1000) |
| Name | Type | Description |
|---|---|---|
| files | array | List of files |
| folders | array | List of folders |
| total_count | number | Total number of items |
Delete a file from MediaFire
| Field | Type | Default | Description |
|---|---|---|---|
| quickkey | text | Quick key of the file to delete |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the file was successfully deleted |
| message | string | Status message |
Create a new folder in MediaFire
| Field | Type | Default | Description |
|---|---|---|---|
| folder_name | text | Name of the folder to create | |
| parent_key | text | Key of parent folder. Leave empty for root. |
| Name | Type | Description |
|---|---|---|
| folder_key | string | Key of the created folder |
| folder_name | string | Name of the created folder |
Get detailed information about a file
| Field | Type | Default | Description |
|---|---|---|---|
| quickkey | text | Quick key of the file |
| Name | Type | Description |
|---|---|---|
| file_name | string | Name of the file |
| file_size | number | Size of the file in bytes |
| file_type | string | MIME type of the file |
| download_count | number | Number of times the file has been downloaded |
| created_date | string | When the file was created |
Local community event organization platform for group meetings and activities
Notes:
Create a new Meetup event
| Field | Type | Default | Description |
|---|---|---|---|
| group_urlname | text | The URL name of the Meetup group (e.g., "my-awesome-group") | |
| title | text | The title of the event | |
| description | textarea | Event description | |
| date_time | text | ISO 8601 format (e.g., 2024-12-25T19:00:00) | |
| duration | number | 120 | Event duration in minutes |
| venue_name | text | Name of the venue | |
| venue_address | text | Address of the venue | |
| max_attendees | number | Maximum number of attendees (leave empty for unlimited) | |
| guest_limit | number | Number of guests each member can bring |
| Name | Type | Description |
|---|---|---|
| event_id | string | |
| event_url | string | |
| success | boolean |
Retrieve details of a specific Meetup event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event |
| Name | Type | Description |
|---|---|---|
| title | string | |
| description | string | |
| date_time | string | |
| event_url | string | |
| rsvp_count | number | |
| status | string | |
| success | boolean |
Retrieve RSVPs for a Meetup event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event | |
| response | select | yes |
| Name | Type | Description |
|---|---|---|
| rsvps | array | |
| total_count | number | |
| success | boolean |
Retrieve events for a specific Meetup group
| Field | Type | Default | Description |
|---|---|---|---|
| group_urlname | text | The URL name of the Meetup group | |
| status | select | upcoming | |
| page_size | number | 20 | Number of events to return (max 200) |
| Name | Type | Description |
|---|---|---|
| events | array | |
| total_count | number | |
| success | boolean |
Retrieve details of a Meetup group
| Field | Type | Default | Description |
|---|---|---|---|
| group_urlname | text | The URL name of the Meetup group |
| Name | Type | Description |
|---|---|---|
| group_id | string | |
| name | string | |
| description | string | |
| member_count | number | |
| urlname | string | |
| link | string | |
| success | boolean |
Update an existing Meetup event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event | |
| title | text | Updated event title | |
| description | textarea | Updated event description | |
| date_time | text | ISO 8601 format (e.g., 2024-12-25T19:00:00) |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| event_id | string |
Cloud storage and file hosting with strong encryption
Notes:
Upload a file to Mega
| Name | Type | Required | Description |
|---|---|---|---|
| file_content | file | Yes | The file content to upload |
| Field | Type | Default | Description |
|---|---|---|---|
| folder_path | text | Path to upload folder (e.g., /Documents/MyFolder). Leave empty for root folder. | |
| file_name | text | Name for the uploaded file including extension |
| Name | Type | Description |
|---|---|---|
| file_id | string | Unique identifier of the uploaded file |
| download_url | string | Public URL to download the file |
| file_size | number | Size of the uploaded file in bytes |
Download a file from Mega
| Field | Type | Default | Description |
|---|---|---|---|
| file_url | text | Mega file URL (e.g., https://mega.nz/file/...) or file ID |
| Name | Type | Description |
|---|---|---|
| file_content | binary | The downloaded file content |
| file_name | string | Original name of the file |
| file_size | number | Size of the file in bytes |
List files and folders in Mega
| Field | Type | Default | Description |
|---|---|---|---|
| folder_path | text | Path to list files from. Leave empty for root folder. |
| Name | Type | Description |
|---|---|---|
| files | array | List of files and folders |
| total_count | number | Total number of items found |
Delete a file from Mega
| Field | Type | Default | Description |
|---|---|---|---|
| file_id | text | ID of the file to delete |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the file was successfully deleted |
| message | string | Status message |
Create a new folder in Mega
| Field | Type | Default | Description |
|---|---|---|---|
| folder_name | text | Name of the folder to create | |
| parent_path | text | Path where to create the folder. Leave empty for root. |
| Name | Type | Description |
|---|---|---|
| folder_id | string | ID of the created folder |
| folder_path | string | Full path of the created folder |
Create a public share link for a file
| Field | Type | Default | Description |
|---|---|---|---|
| file_id | text | ID of the file to share |
| Name | Type | Description |
|---|---|---|
| share_url | string | Public URL to access the file |
| share_key | string | Encryption key for the shared file |
Get information about the Mega account
| Name | Type | Description |
|---|---|---|
| string | Account email address | |
| storage_used | number | Storage used in bytes |
| storage_total | number | Total storage available in bytes |
| account_type | string | Type of Mega account (Free, Pro I, Pro II, etc.) |
Social media monitoring and influencer tracking platform with brand mention analysis
Notes:
Search for brand mentions across social media and web platforms
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Keywords or brand names to monitor | |
| sources | select | ["web","twitter","facebook"] | |
| sentiment | select | ||
| language | select | en | |
| days_back | number | 7 | Number of days to search back (1-30) |
| limit | number | 100 | Maximum mentions to return |
| Name | Type | Description |
|---|---|---|
| mentions | array | Array of found mentions |
| total_mentions | number | Total number of mentions found |
| sentiment_breakdown | object | Breakdown by sentiment (positive, negative, neutral) |
| source_breakdown | object | Breakdown by source platform |
Discover influencers who are talking about specific topics or brands
| Field | Type | Default | Description |
|---|---|---|---|
| topic | text | Topic or brand to find influencers for | |
| platforms | select | ["twitter","instagram"] | |
| min_followers | number | 1000 | |
| max_followers | number | Leave empty for no limit | |
| location | text | Geographic location filter | |
| limit | number | 50 | Maximum influencers to return |
| Name | Type | Description |
|---|---|---|
| influencers | array | Array of discovered influencers |
| total_found | number | Total number of influencers found |
Retrieve alerts and monitoring data from your Mention account
| Field | Type | Default | Description |
|---|---|---|---|
| alert_id | text | Specific alert ID to retrieve (leave empty for all) | |
| since_days | number | 7 | Get alerts from the last X days |
| Name | Type | Description |
|---|---|---|
| alerts | array | Array of alert data |
| total_alerts | number | Total number of alerts |
Analyze the reach and impact of mentions for specific topics or campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Topic or brand to analyze reach for | |
| days_back | number | 30 | Number of days to analyze (1-90) |
| Name | Type | Description |
|---|---|---|
| reach_analysis | object | Complete reach and impact analysis |
| total_reach | number | Total estimated reach |
| engagement_count | number | Total engagement across mentions |
| top_influencers | array | Most influential accounts mentioning the topic |
Omnichannel communication platform for SMS, voice, and chat messaging globally
Notes:
Send SMS messages via MessageBird
| Field | Type | Default | Description |
|---|---|---|---|
| body | textarea | SMS message content | |
| recipients | textarea | Phone numbers separated by commas (e.g., +1234567890, +0987654321) | |
| originator | text | Custom sender ID (optional) | |
| datacoding | select | plain | Character encoding for the message |
| Name | Type | Description |
|---|---|---|
| message_id | string | Unique identifier for the sent message |
| recipients_count | number | Number of recipients |
| success | boolean | Whether the SMS was sent successfully |
Send voice messages via MessageBird
| Field | Type | Default | Description |
|---|---|---|---|
| recipients | text | Recipient phone number with country code | |
| body | textarea | Text to be converted to speech | |
| voice | select | female | Voice type for text-to-speech |
| language | select | en-us | Language for text-to-speech |
| Name | Type | Description |
|---|---|---|
| call_id | string | Unique identifier for the voice call |
| status | string | Voice call status |
| success | boolean | Whether the voice message was sent successfully |
Send verification code to phone number
| Field | Type | Default | Description |
|---|---|---|---|
| recipient | text | Phone number to verify with country code | |
| originator | text | Custom sender ID for verification message | |
| template | text | Your verification code is %token | Custom message template (use %token for code) |
| Name | Type | Description |
|---|---|---|
| verify_id | string | Unique identifier for the verification request |
| status | string | Verification request status |
| success | boolean | Whether the verification was sent successfully |
Verify a phone number with the provided code
| Field | Type | Default | Description |
|---|---|---|---|
| verify_id | text | ID from the verification request | |
| token | text | Code entered by the user |
| Name | Type | Description |
|---|---|---|
| status | string | Verification status (verified, invalid, etc.) |
| verified | boolean | Whether the code was correct |
| success | boolean | Whether the check was successful |
Check your MessageBird account balance
| Name | Type | Description |
|---|---|---|
| amount | number | Current account balance |
| type | string | Account payment type |
| success | boolean | Whether the balance check was successful |
Productivity software suite including Outlook, Word, Excel, and OneDrive
Notes:
Send an email through Outlook
| Field | Type | Default | Description |
|---|---|---|---|
| to | text | Recipient email address | |
| subject | text | Email subject line | |
| body | textarea | Email content (supports HTML) | |
| cc | text | CC email addresses (comma separated) | |
| bcc | text | BCC email addresses (comma separated) | |
| importance | select | normal | Email importance level |
| Name | Type | Description |
|---|---|---|
| messageId | string | Outlook message ID |
| webLink | string | Link to view the email |
| success | boolean |
Retrieve emails from Outlook
| Field | Type | Default | Description |
|---|---|---|---|
| filter | text | isRead eq false | OData filter (e.g., "isRead eq false", "from/emailAddress/address eq 'user@domain.com'") |
| maxResults | number | 10 | Maximum number of emails to retrieve |
| orderBy | select | receivedDateTime desc | How to sort the results |
| Name | Type | Description |
|---|---|---|
| emails | array | Array of email objects |
| totalCount | number | Number of emails retrieved |
Upload a file to OneDrive
| Name | Type | Required | Description |
|---|---|---|---|
| fileData | file | Yes | File content to upload |
| Field | Type | Default | Description |
|---|---|---|---|
| fileName | text | Name for the uploaded file | |
| folderPath | text | / | OneDrive folder path (e.g., "/Documents/MyFolder") |
| description | text | File description |
| Name | Type | Description |
|---|---|---|
| fileId | string | OneDrive file ID |
| webUrl | string | URL to access the file |
| downloadUrl | string | Direct download URL |
| fileName | string |
List files from OneDrive
| Field | Type | Default | Description |
|---|---|---|---|
| folderPath | text | / | OneDrive folder path (leave empty for root) |
| filter | text | OData filter (e.g., "name eq 'report.pdf'") | |
| maxResults | number | 20 | Maximum number of files to return |
| Name | Type | Description |
|---|---|---|
| files | array | Array of file objects |
| totalCount | number | Number of files found |
Create a new folder in OneDrive
| Field | Type | Default | Description |
|---|---|---|---|
| folderName | text | Name of the folder to create | |
| parentPath | text | / | Parent folder path (leave empty for root) |
| Name | Type | Description |
|---|---|---|
| folderId | string | OneDrive folder ID |
| webUrl | string | URL to access the folder |
| folderName | string |
Create a sharing link for a OneDrive file
| Field | Type | Default | Description |
|---|---|---|---|
| fileId | text | OneDrive file ID to share | |
| linkType | select | view | Type of sharing link |
| scope | select | anonymous | Who can access the link |
| Name | Type | Description |
|---|---|---|
| shareUrl | string | Sharing link URL |
| linkType | string | |
| success | boolean |
Create a new event in Outlook Calendar
| Field | Type | Default | Description |
|---|---|---|---|
| subject | text | Title of the calendar event | |
| body | textarea | Event description (supports HTML) | |
| startDateTime | text | Start date and time (ISO 8601 format) | |
| endDateTime | text | End date and time (ISO 8601 format) | |
| timeZone | text | UTC | Time zone (e.g., "Pacific Standard Time") |
| attendees | text | Email addresses of attendees (comma separated) | |
| location | text | Event location |
| Name | Type | Description |
|---|---|---|
| eventId | string | Outlook Calendar event ID |
| webLink | string | URL to view the event |
| subject | string |
Retrieve events from Outlook Calendar
| Field | Type | Default | Description |
|---|---|---|---|
| startTime | text | Filter events after this time (ISO 8601 format) | |
| endTime | text | Filter events before this time (ISO 8601 format) | |
| maxResults | number | 20 | Maximum number of events to retrieve |
| Name | Type | Description |
|---|---|---|
| events | array | Array of calendar event objects |
| totalCount | number | Number of events retrieved |
Bing Ads campaign management and optimization platform for search, shopping, and audience advertising
Notes:
Retrieve campaigns from Microsoft Advertising account
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_type | select | Filter by campaign type | |
| campaign_status | select | Filter by campaign status |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of campaign objects with details and metrics |
| totalCampaigns | number | Total number of campaigns retrieved |
Create a new campaign in Microsoft Advertising
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_name | text | Name for the new campaign | |
| campaign_type | select | Type of campaign to create | |
| daily_budget | number | Daily budget amount in account currency | |
| target_languages | text | English | Comma-separated list of target languages |
| Name | Type | Description |
|---|---|---|
| campaign | object | Details of the newly created campaign |
| campaignId | string | Unique identifier for the created campaign |
| success | boolean | Whether the campaign was created successfully |
Update an existing campaign in Microsoft Advertising
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | ID of the campaign to update | |
| campaign_name | text | New name for the campaign | |
| daily_budget | number | New daily budget amount | |
| status | select | New campaign status |
| Name | Type | Description |
|---|---|---|
| campaign | object | Details of the updated campaign |
| success | boolean | Whether the campaign was updated successfully |
Retrieve ad groups from a campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | ID of the campaign to get ad groups from | |
| ad_group_status | select | Filter by ad group status |
| Name | Type | Description |
|---|---|---|
| adGroups | array | Array of ad group objects |
| totalAdGroups | number | Total number of ad groups retrieved |
Retrieve keywords from an ad group
| Field | Type | Default | Description |
|---|---|---|---|
| ad_group_id | text | ID of the ad group to get keywords from | |
| keyword_status | select | Filter by keyword status |
| Name | Type | Description |
|---|---|---|
| keywords | array | Array of keyword objects with bids and match types |
| totalKeywords | number | Total number of keywords retrieved |
Retrieve performance data for campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_ids | text | Comma-separated campaign IDs (leave empty for all) | |
| date_range | select | LastMonth | Time period for performance data |
| metrics | text | Impressions,Clicks,Spend,Ctr,AverageCpc | Comma-separated list of metrics to retrieve |
| Name | Type | Description |
|---|---|---|
| performance | array | Array of performance data for each campaign |
| summary | object | Aggregated performance summary across all campaigns |
Enterprise resource planning - Business applications for finance, operations, and customer service
Notes:
Retrieve account records from Microsoft Dynamics
| Field | Type | Default | Description |
|---|---|---|---|
| account_type | select | Filter by account type | |
| state_code | select | Filter by account state | |
| top | number | 100 | Maximum number of accounts to retrieve |
| Name | Type | Description |
|---|---|---|
| accounts | array | |
| account_count | number |
Create a new account record in Microsoft Dynamics
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the account | |
| account_category_code | select | Account category | |
| account_type | select | Type of account | |
| telephone1 | text | Main phone number | |
| emailaddress1 | text | Primary email address | |
| websiteurl | text | Company website URL |
| Name | Type | Description |
|---|---|---|
| account_id | string | |
| name | string | |
| account_number | string |
Retrieve contact records from Microsoft Dynamics
| Field | Type | Default | Description |
|---|---|---|---|
| account_id | text | Filter by parent account ID | |
| state_code | select | Filter by contact state | |
| top | number | 100 | Maximum number of contacts to retrieve |
| Name | Type | Description |
|---|---|---|
| contacts | array | |
| contact_count | number |
Create a new contact record in Microsoft Dynamics
| Field | Type | Default | Description |
|---|---|---|---|
| firstname | text | Contact first name | |
| lastname | text | Contact last name | |
| emailaddress1 | text | Primary email address | |
| telephone1 | text | Business phone number | |
| mobilephone | text | Mobile phone number | |
| jobtitle | text | Contact job title | |
| account_id | text | Associate with an account |
| Name | Type | Description |
|---|---|---|
| contact_id | string | |
| fullname | string | |
| emailaddress1 | string |
Retrieve opportunity records from Microsoft Dynamics
| Field | Type | Default | Description |
|---|---|---|---|
| account_id | text | Filter by parent account ID | |
| state_code | select | Filter by opportunity state | |
| sales_stage | select | Filter by sales stage | |
| top | number | 100 | Maximum number of opportunities to retrieve |
| Name | Type | Description |
|---|---|---|
| opportunities | array | |
| opportunity_count | number | |
| total_value | number |
Create a new opportunity record in Microsoft Dynamics
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the opportunity | |
| account_id | text | Associated account ID | |
| contact_id | text | Primary contact ID | |
| estimatedvalue | number | Estimated revenue value | |
| closeprobability | number | Probability of closing (0-100) | |
| estimatedclosedate | text | Expected close date | |
| description | textarea | Opportunity description |
| Name | Type | Description |
|---|---|---|
| opportunity_id | string | |
| name | string | |
| estimatedvalue | number |
Retrieve lead records from Microsoft Dynamics
| Field | Type | Default | Description |
|---|---|---|---|
| state_code | select | Filter by lead state | |
| leadqualitycode | select | Filter by lead quality | |
| top | number | 100 | Maximum number of leads to retrieve |
| Name | Type | Description |
|---|---|---|
| leads | array | |
| lead_count | number |
Create a new lead record in Microsoft Dynamics
| Field | Type | Default | Description |
|---|---|---|---|
| firstname | text | Lead first name | |
| lastname | text | Lead last name | |
| companyname | text | Lead company name | |
| emailaddress1 | text | Primary email address | |
| telephone1 | text | Business phone number | |
| mobilephone | text | Mobile phone number | |
| jobtitle | text | Lead job title | |
| leadqualitycode | select | Quality rating of the lead |
| Name | Type | Description |
|---|---|---|
| lead_id | string | |
| fullname | string | |
| companyname | string |
Workflow automation service for Microsoft 365 and business applications
Notes:
Retrieve a list of your Power Automate flows
| Field | Type | Default | Description |
|---|---|---|---|
| environment_name | text | Specific environment name (leave empty for default) | |
| filter | select |
| Name | Type | Description |
|---|---|---|
| flows | array | List of Power Automate flows |
| count | number | Total number of flows returned |
Get detailed information about a specific flow
| Field | Type | Default | Description |
|---|---|---|---|
| flow_id | text | The unique ID of the flow | |
| environment_name | text | Specific environment name (leave empty for default) |
| Name | Type | Description |
|---|---|---|
| flow_name | string | Display name of the flow |
| flow_state | string | Current state of the flow (Started/Stopped) |
| trigger_type | string | Type of trigger used by the flow |
| created_time | string | When the flow was created |
| modified_time | string | When the flow was last modified |
Start or stop a Power Automate flow
| Field | Type | Default | Description |
|---|---|---|---|
| flow_id | text | The unique ID of the flow | |
| action | select | ||
| environment_name | text | Specific environment name (leave empty for default) |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the operation was successful |
| flow_state | string | The new state of the flow |
| message | string | Details about the operation |
Retrieve execution history for a specific flow
| Field | Type | Default | Description |
|---|---|---|---|
| flow_id | text | The unique ID of the flow | |
| environment_name | text | Specific environment name (leave empty for default) | |
| limit | number | 50 | Maximum number of runs to retrieve |
| Name | Type | Description |
|---|---|---|
| runs | array | List of flow execution records |
| count | number | Number of run records returned |
Manually trigger a Power Automate flow with custom data
| Field | Type | Default | Description |
|---|---|---|---|
| flow_id | text | The unique ID of the flow to trigger | |
| trigger_data | textarea | {} | Custom data to send with the trigger as JSON |
| environment_name | text | Specific environment name (leave empty for default) |
| Name | Type | Description |
|---|---|---|
| run_id | string | Unique ID of the triggered flow run |
| success | boolean | Whether the trigger was successful |
| message | string | Details about the trigger operation |
Create an HTTP webhook endpoint for external systems to trigger flows
| Field | Type | Default | Description |
|---|---|---|---|
| webhook_name | text | A descriptive name for this webhook | |
| method | select | POST | |
| response_format | select | json |
| Name | Type | Description |
|---|---|---|
| webhook_url | string | The generated webhook URL |
| webhook_id | string | Unique identifier for the webhook |
| success | boolean | Whether the webhook was created successfully |
Project management software for planning, scheduling, and resource management
Notes:
Create a new project in Microsoft Project
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | The name of the project | |
| description | textarea | Description of the project |
| Name | Type | Description |
|---|---|---|
| project_id | string | The unique ID of the created project |
Send messages to Microsoft Teams channels and chats. Route notifications, feedback, and alerts to your team.
Notes:
Post a message to a Microsoft Teams channel
| Field | Type | Default | Description |
|---|---|---|---|
| teamId | text | The ID of the team (use Get Teams node to find this) | |
| channelId | text | The ID of the channel (use Get Channels node to find this) | |
| message | textarea | The message content to send (supports HTML) | |
| contentType | select | html | Format of the message content |
| Name | Type | Description |
|---|---|---|
| messageId | string | The ID of the sent message |
| webUrl | string | Link to view the message in Teams |
| createdDateTime | string | When the message was created |
| success | boolean |
Send a message to a Teams chat (1:1 or group)
| Field | Type | Default | Description |
|---|---|---|---|
| chatId | text | The ID of the chat (format: 19:xxx@thread.v2) | |
| message | textarea | The message content to send | |
| contentType | select | text | Format of the message content |
| Name | Type | Description |
|---|---|---|
| messageId | string | The ID of the sent message |
| chatId | string | The chat where the message was sent |
| createdDateTime | string | When the message was created |
| success | boolean |
Get a list of teams the user has joined
| Name | Type | Description |
|---|---|---|
| teams | array | Array of team objects with id and displayName |
| count | number | Number of teams returned |
| success | boolean |
Get a list of channels in a team
| Field | Type | Default | Description |
|---|---|---|---|
| teamId | text | The ID of the team to get channels from |
| Name | Type | Description |
|---|---|---|
| channels | array | Array of channel objects with id and displayName |
| count | number | Number of channels returned |
| success | boolean |
Get a list of chats the user is part of
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of chats to retrieve |
| Name | Type | Description |
|---|---|---|
| chats | array | Array of chat objects with id, topic, and chatType |
| count | number | Number of chats returned |
| success | boolean |
Email productivity and automation platform with scheduling, templates, tracking, and sales engagement features
Notes:
Create a new contact in Mixmax
| Field | Type | Default | Description |
|---|---|---|---|
| text | Contact's email address | ||
| first_name | text | Contact's first name | |
| last_name | text | Contact's last name | |
| company | text | Company name | |
| phone | text | Contact's phone number | |
| title | text | Contact's job title |
| Name | Type | Description |
|---|---|---|
| contact_id | string | |
| string | ||
| full_name | string | |
| created_at | string |
Add a contact to an email sequence
| Field | Type | Default | Description |
|---|---|---|---|
| sequence_id | text | ID of the sequence to add contact to | |
| text | Email of the contact to add to sequence | ||
| first_name | text | Contact's first name | |
| last_name | text | Contact's last name | |
| company | text | Company name | |
| custom_fields | textarea | Additional custom fields as JSON object |
| Name | Type | Description |
|---|---|---|
| recipient_id | string | |
| sequence_id | string | |
| string | ||
| status | string |
Get list of available email sequences
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Maximum number of sequences to return |
| Name | Type | Description |
|---|---|---|
| sequences | array | |
| total_count | number |
Retrieve performance statistics for a sequence
| Field | Type | Default | Description |
|---|---|---|---|
| sequence_id | text | ID of the sequence to get stats for |
| Name | Type | Description |
|---|---|---|
| sequence_id | string | |
| total_recipients | number | |
| active_recipients | number | |
| completed_recipients | number | |
| paused_recipients | number |
Search for contacts by email or other criteria
| Field | Type | Default | Description |
|---|---|---|---|
| text | Search by email address | ||
| first_name | text | Search by first name | |
| last_name | text | Search by last name | |
| company | text | Search by company name | |
| limit | number | 10 | Maximum number of results (1-100) |
| Name | Type | Description |
|---|---|---|
| contacts | array | |
| total_count | number |
Create a reusable email snippet/template
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name for the snippet | |
| subject | text | Default subject line | |
| body | textarea | Email content/template | |
| shortcut | text | Keyboard shortcut for the snippet |
| Name | Type | Description |
|---|---|---|
| snippet_id | string | |
| name | string | |
| shortcut | string | |
| created_at | string |
Retrieve email activity and tracking data
| Field | Type | Default | Description |
|---|---|---|---|
| text | Filter by specific contact email | ||
| sequence_id | text | Filter by specific sequence | |
| activity_types | textarea | Filter by activity types (one per line: open, click, reply, bounce) | |
| limit | number | 50 | Maximum number of activities to return |
| Name | Type | Description |
|---|---|---|
| activities | array | |
| total_activities | number |
Product analytics and user behavior tracking with advanced segmentation and funnel analysis
Notes:
Send a custom event to Mixpanel for analytics tracking
| Field | Type | Default | Description |
|---|---|---|---|
| eventName | text | Name of the event to track | |
| distinctId | text | Unique identifier for the user | |
| properties | textarea | {} | Additional properties for the event |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| eventId | string | |
| timestamp | string |
Get event analytics and insights for specified events and date range
| Field | Type | Default | Description |
|---|---|---|---|
| eventNames | textarea | Array of event names to analyze | |
| fromDate | text | Start date for the analysis | |
| toDate | text | End date for the analysis | |
| unit | select | day |
| Name | Type | Description |
|---|---|---|
| data | array | |
| totalEvents | number | |
| dateRange | object |
Analyze user conversion funnels with multiple steps
| Field | Type | Default | Description |
|---|---|---|---|
| funnelSteps | textarea | Array of events representing funnel steps | |
| fromDate | text | ||
| toDate | text | ||
| conversionWindow | number | 7 | Number of days for conversion window |
| Name | Type | Description |
|---|---|---|
| funnelData | array | |
| conversionRate | number | |
| dropOffPoints | array |
Analyze user retention and behavior over time cohorts
| Field | Type | Default | Description |
|---|---|---|---|
| cohortEvent | text | Event that defines cohort membership | |
| retentionEvent | text | Event that indicates user retention | |
| fromDate | text | ||
| toDate | text | ||
| cohortSize | select | week |
| Name | Type | Description |
|---|---|---|
| cohortData | array | |
| retentionRates | array | |
| cohortSizes | array |
Segment users based on properties and analyze their behavior
| Field | Type | Default | Description |
|---|---|---|---|
| eventName | text | Event to analyze for segmentation | |
| segmentBy | text | Property to segment users by | |
| fromDate | text | ||
| toDate | text | ||
| limit | number | 10 | Maximum number of segments to return |
| Name | Type | Description |
|---|---|---|
| segments | array | |
| totalUsers | number | |
| topSegments | array |
Retrieve detailed user profiles and their properties
| Field | Type | Default | Description |
|---|---|---|---|
| distinctIds | textarea | Array of user distinct IDs to retrieve | |
| includeEvents | checkbox | Include recent event history for each user |
| Name | Type | Description |
|---|---|---|
| profiles | array | |
| userCount | number | |
| properties | array |
Analyze revenue metrics and trends over time
| Field | Type | Default | Description |
|---|---|---|---|
| revenueEvent | text | Event that tracks revenue (e.g., "Purchase") | |
| revenueProperty | text | Property that contains revenue value | |
| fromDate | text | ||
| toDate | text | ||
| unit | select | day |
| Name | Type | Description |
|---|---|---|
| revenueData | array | |
| totalRevenue | number | |
| averageOrderValue | number | |
| revenueGrowth | number |
Get all properties and values for a specific event
| Field | Type | Default | Description |
|---|---|---|---|
| eventName | text | Name of the event to analyze | |
| fromDate | text | ||
| toDate | text |
| Name | Type | Description |
|---|---|---|
| properties | array | |
| propertyValues | object | |
| topProperties | array |
Influencer discovery and analytics platform with detailed audience insights and campaign tracking
Notes:
Search for influencers using Modash's comprehensive database with advanced filtering
| Field | Type | Default | Description |
|---|---|---|---|
| platform | select | ||
| keywords | text | Keywords to search in bio or content | |
| location | text | Country, state, or city | |
| follower_min | number | 1000 | |
| follower_max | number | Leave empty for no limit | |
| engagement_rate_min | number | 1 | |
| engagement_rate_max | number | Leave empty for no limit | |
| gender | select | ||
| age_min | number | Minimum age of influencer | |
| age_max | number | Maximum age of influencer | |
| categories | text | Comma-separated categories (fashion, beauty, tech, etc.) | |
| limit | number | 50 | Maximum results to return (1-100) |
| Name | Type | Description |
|---|---|---|
| influencers | array | Array of matching influencer profiles |
| total_results | number | Total number of influencers found |
Get detailed profile information and metrics for a specific influencer
| Field | Type | Default | Description |
|---|---|---|---|
| username | text | Influencer username (without @ symbol) | |
| platform | select |
| Name | Type | Description |
|---|---|---|
| profile | object | Complete influencer profile information |
| followers_count | number | Total number of followers |
| engagement_rate | number | Average engagement rate percentage |
| audience_quality | number | Audience authenticity score (0-100) |
| categories | array | Primary content categories |
Get detailed audience demographics and quality analysis for an influencer
| Field | Type | Default | Description |
|---|---|---|---|
| username | text | Influencer username (without @ symbol) | |
| platform | select |
| Name | Type | Description |
|---|---|---|
| audience_analysis | object | Complete audience analysis data |
| demographics | object | Age, gender, and location breakdown |
| authenticity_score | number | Audience authenticity score (0-100) |
| fake_followers_percentage | number | Estimated percentage of fake followers |
| audience_interests | array | Top interests of the audience |
Get detailed performance metrics and post analysis for an influencer
| Field | Type | Default | Description |
|---|---|---|---|
| username | text | Influencer username (without @ symbol) | |
| platform | select | ||
| period | select | 30 |
| Name | Type | Description |
|---|---|---|
| performance | object | Complete performance analytics |
| avg_engagement | number | Average engagement per post |
| best_posting_times | array | Optimal posting times for engagement |
| top_posts | array | Best performing posts in the period |
| growth_rate | number | Follower growth rate percentage |
Work operating system and project management platform for team collaboration
Notes:
Create a new item in a Monday.com board
| Field | Type | Default | Description |
|---|---|---|---|
| board_id | text | The ID of the board to create the item in | |
| item_name | text | The name of the item to create | |
| group_id | text | The ID of the group to add the item to | |
| column_values | textarea | {} | JSON object with column values to set |
| Name | Type | Description |
|---|---|---|
| item_id | string | The unique ID of the created item |
| item_name | string | The name of the created item |
| board_id | string | The ID of the board containing the item |
Update an existing item in Monday.com
| Field | Type | Default | Description |
|---|---|---|---|
| item_id | text | The ID of the item to update | |
| item_name | text | New name for the item | |
| column_values | textarea | {} | JSON object with column values to update |
| Name | Type | Description |
|---|---|---|
| item_id | string | The unique ID of the updated item |
| success | boolean | Whether the update was successful |
Retrieve details of a specific item
| Field | Type | Default | Description |
|---|---|---|---|
| item_id | text | The ID of the item to retrieve |
| Name | Type | Description |
|---|---|---|
| item_id | string | |
| name | string | |
| state | string | |
| board | object | |
| group | object | |
| column_values | array |
List items from a Monday.com board
| Field | Type | Default | Description |
|---|---|---|---|
| board_id | text | ID of board to list items from | |
| group_id | text | Filter items by specific group | |
| limit | number | 25 | Maximum number of items to return |
| Name | Type | Description |
|---|---|---|
| items | array | Array of item objects |
| count | number | Number of items returned |
Create a new board in Monday.com
| Field | Type | Default | Description |
|---|---|---|---|
| board_name | text | The name of the board to create | |
| board_kind | select | public | The type of board to create |
| workspace_id | text | The ID of the workspace to create the board in |
| Name | Type | Description |
|---|---|---|
| board_id | string | The unique ID of the created board |
| board_name | string | The name of the created board |
Create an update (comment) on an item
| Field | Type | Default | Description |
|---|---|---|---|
| item_id | text | The ID of the item to comment on | |
| body | textarea | The content of the update |
| Name | Type | Description |
|---|---|---|
| update_id | string | The unique ID of the created update |
| body | string | The content of the update |
Cross-border P2P payments and money transfer service
Notes:
Initiate a money transfer
| Field | Type | Default | Description |
|---|---|---|---|
| sender_first_name | text | Sender's first name | |
| sender_last_name | text | Sender's last name | |
| sender_phone | text | Sender's phone number | |
| receiver_first_name | text | Receiver's first name | |
| receiver_last_name | text | Receiver's last name | |
| receiver_phone | text | Receiver's phone number | |
| amount | number | Amount to transfer | |
| currency | text | USD | 3-letter currency code |
| destination_country | text | 2-letter country code | |
| purpose | text | Family Support | Purpose of the transfer |
| Name | Type | Description |
|---|---|---|
| transfer_id | string | MoneyGram transfer reference |
| reference_number | string | 8-digit reference number for pickup |
| status | string | |
| fees | number | |
| exchange_rate | number | |
| transfer_data | object |
Check the status of a transfer
| Field | Type | Default | Description |
|---|---|---|---|
| reference_number | text | 8-digit MoneyGram reference number |
| Name | Type | Description |
|---|---|---|
| reference_number | string | |
| status | string | |
| amount_sent | number | |
| amount_received | number | |
| pickup_location | string | |
| transfer_data | object |
Calculate transfer fees and exchange rates
| Field | Type | Default | Description |
|---|---|---|---|
| send_amount | number | Amount to send | |
| send_currency | text | USD | Currency to send from |
| receive_currency | text | Currency to receive | |
| destination_country | text | 2-letter country code |
| Name | Type | Description |
|---|---|---|
| fees | number | |
| exchange_rate | number | |
| receive_amount | number | |
| total_cost | number | |
| calculation_data | object |
Find MoneyGram pickup locations
| Field | Type | Default | Description |
|---|---|---|---|
| country_code | text | 2-letter country code | |
| city | text | City name (optional filter) | |
| postal_code | text | Postal/ZIP code (optional filter) | |
| limit | number | 10 | Maximum number of locations to return |
| Name | Type | Description |
|---|---|---|
| locations | array | Array of available pickup locations |
| total_found | number |
Cancel an unclaimed transfer
| Field | Type | Default | Description |
|---|---|---|---|
| reference_number | text | 8-digit MoneyGram reference number | |
| reason | text | Reason for cancellation |
| Name | Type | Description |
|---|---|---|
| reference_number | string | |
| status | string | |
| refund_amount | number | |
| cancel_data | object |
Email marketing automation and analytics platform
Notes:
Add a new subscriber to a mailing list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | ID of the mailing list to add subscriber to | |
| text | Subscriber email address | ||
| name | text | Subscriber name | |
| custom_fields | textarea | {} | Custom fields as JSON object |
| Name | Type | Description |
|---|---|---|
| subscriber_id | string | ID of the added subscriber |
| success | boolean |
Get subscriber details by email address
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | ID of the mailing list | |
| text | Subscriber email address |
| Name | Type | Description |
|---|---|---|
| subscriber_id | string | |
| string | ||
| name | string | |
| date_created | string | |
| status | string | |
| custom_fields | object | |
| success | boolean |
Update an existing subscriber
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | ID of the mailing list | |
| subscriber_id | text | ID of the subscriber to update | |
| name | text | Updated subscriber name | |
| custom_fields | textarea | {} | Updated custom fields as JSON object |
| Name | Type | Description |
|---|---|---|
| success | boolean |
Unsubscribe a subscriber from a mailing list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | ID of the mailing list | |
| text | Subscriber email address to unsubscribe |
| Name | Type | Description |
|---|---|---|
| success | boolean |
Get all mailing lists in your account
| Field | Type | Default | Description |
|---|---|---|---|
| page | number | 1 | Page number (default: 1) |
| page_size | number | 100 | Number of lists per page (default: 100) |
| Name | Type | Description |
|---|---|---|
| lists | array | Array of mailing lists |
| total_count | number | |
| success | boolean |
Create a new mailing list
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name for the new mailing list | |
| description | textarea | Description for the mailing list |
| Name | Type | Description |
|---|---|---|
| list_id | string | ID of the created list |
| success | boolean |
Send a transactional email
| Field | Type | Default | Description |
|---|---|---|---|
| to_email | text | Recipient email address | |
| to_name | text | Recipient name | |
| subject | text | Email subject line | |
| html_body | textarea | HTML email content | |
| text_body | textarea | Plain text email content | |
| from_email | text | Sender email address | |
| from_name | text | Sender name |
| Name | Type | Description |
|---|---|---|
| message_id | string | ID of the sent email |
| success | boolean |
Get all campaigns in your account
| Field | Type | Default | Description |
|---|---|---|---|
| page | number | 1 | Page number (default: 1) |
| page_size | number | 100 | Number of campaigns per page (default: 100) |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of campaigns |
| total_count | number | |
| success | boolean |
Get detailed statistics for a campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | ID of the campaign to get stats for |
| Name | Type | Description |
|---|---|---|
| sent | number | |
| delivered | number | |
| opened | number | |
| clicked | number | |
| unsubscribed | number | |
| bounced | number | |
| open_rate | number | |
| click_rate | number | |
| success | boolean |
SEO metrics and keyword tracking platform for domain authority, backlinks, and keyword difficulty analysis
Notes:
Get domain authority and page authority metrics for a URL
| Field | Type | Default | Description |
|---|---|---|---|
| url | text | The URL to analyze (domain or specific page) |
| Name | Type | Description |
|---|---|---|
| domainAuthority | number | Domain Authority score (0-100) |
| pageAuthority | number | Page Authority score (0-100) |
| spamScore | number | Spam Score percentage (0-100) |
| linkingDomains | number | Number of linking root domains |
| totalLinks | number | Total number of links to this URL |
Retrieve backlink data for a domain or URL
| Field | Type | Default | Description |
|---|---|---|---|
| target | text | The URL or domain to get backlinks for | |
| limit | number | 50 | Maximum number of backlinks to retrieve (max 1000) |
| filter | select | all | Filter backlinks by type |
| Name | Type | Description |
|---|---|---|
| backlinks | array | Array of backlink data |
| totalBacklinks | number | Total number of backlinks found |
Get keyword ranking data for a domain
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | The domain to check rankings for | |
| keywords | textarea | Keywords to check rankings for (one per line) | |
| country | select | US | Country for localized search results |
| Name | Type | Description |
|---|---|---|
| rankings | array | Array of keyword ranking data |
| averagePosition | number | Average ranking position across all keywords |
| topKeywords | array | Keywords ranking in top 10 |
Analyze competitor domains and their SEO metrics
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | Your domain to compare against competitors | |
| competitors | textarea | Competitor domains to analyze (one per line) |
| Name | Type | Description |
|---|---|---|
| yourDomain | object | SEO metrics for your domain |
| competitors | array | SEO metrics for competitor domains |
| comparison | object | Summary comparing your domain to competitors |
Get keyword difficulty scores for SEO planning
| Field | Type | Default | Description |
|---|---|---|---|
| keywords | textarea | Keywords to analyze difficulty for (one per line) | |
| location | select | US | Geographic location for search results |
| Name | Type | Description |
|---|---|---|
| keywordData | array | Array of keyword difficulty scores and metrics |
| averageDifficulty | number | Average difficulty score across all keywords |
| easyKeywords | array | Keywords with low difficulty scores |
| hardKeywords | array | Keywords with high difficulty scores |
Get top performing pages for a domain by authority
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | The domain to analyze top pages for | |
| limit | number | 25 | Maximum number of pages to retrieve |
| sortBy | select | page_authority | Sort pages by specific metric |
| Name | Type | Description |
|---|---|---|
| topPages | array | Array of top performing pages with metrics |
| averagePageAuthority | number | Average page authority of top pages |
| totalPages | number | Total number of pages analyzed |
Create powerful automated workflows with n8n's fair-code licensed workflow automation tool. Connect apps, services, and APIs without coding.
Notes:
Retrieve a list of your n8n workflows
| Field | Type | Default | Description |
|---|---|---|---|
| active_only | checkbox | Only return active workflows |
| Name | Type | Description |
|---|---|---|
| workflows | array | List of n8n workflows |
| count | number | Total number of workflows returned |
Get detailed information about a specific workflow
| Field | Type | Default | Description |
|---|---|---|---|
| workflow_id | text | The unique ID of the workflow |
| Name | Type | Description |
|---|---|---|
| workflow_name | string | Display name of the workflow |
| workflow_active | boolean | Whether the workflow is currently active |
| created_at | string | When the workflow was created |
| updated_at | string | When the workflow was last updated |
| nodes_count | number | Number of nodes in the workflow |
Activate an n8n workflow
| Field | Type | Default | Description |
|---|---|---|---|
| workflow_id | text | The unique ID of the workflow to activate |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the activation was successful |
| message | string | Details about the operation |
Deactivate an n8n workflow
| Field | Type | Default | Description |
|---|---|---|---|
| workflow_id | text | The unique ID of the workflow to deactivate |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the deactivation was successful |
| message | string | Details about the operation |
Manually execute an n8n workflow
| Field | Type | Default | Description |
|---|---|---|---|
| workflow_id | text | The unique ID of the workflow to execute | |
| input_data | textarea | {} | Input data to pass to the workflow as JSON |
| wait_for_completion | checkbox | 1 | Wait for the workflow execution to complete |
| Name | Type | Description |
|---|---|---|
| execution_id | string | Unique ID of the workflow execution |
| success | boolean | Whether the execution was successful |
| result | object | The result data from the workflow execution |
| status | string | Status of the workflow execution |
Retrieve execution history for workflows
| Field | Type | Default | Description |
|---|---|---|---|
| workflow_id | text | Filter by specific workflow ID (optional) | |
| limit | number | 20 | Maximum number of executions to retrieve |
| status_filter | select |
| Name | Type | Description |
|---|---|---|
| executions | array | List of workflow execution records |
| count | number | Number of execution records returned |
Create a webhook endpoint for triggering workflows
| Field | Type | Default | Description |
|---|---|---|---|
| webhook_name | text | A descriptive name for this webhook | |
| method | select | POST | |
| path | text | Custom path for the webhook (optional) |
| Name | Type | Description |
|---|---|---|
| webhook_id | string | Unique identifier for the webhook |
| webhook_url | string | The full webhook URL to call |
| success | boolean | Whether the webhook was created successfully |
Retrieve a list of stored credentials in n8n
| Field | Type | Default | Description |
|---|---|---|---|
| credential_type | text | Filter by credential type (optional) |
| Name | Type | Description |
|---|---|---|
| credentials | array | List of stored credentials |
| count | number | Number of credentials returned |
Enterprise resource planning - Complete business management suite in the cloud
Notes:
Retrieve customer records from NetSuite
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 100 | Maximum number of records to retrieve |
| subsidiary | text | Filter by subsidiary ID |
| Name | Type | Description |
|---|---|---|
| customers | array | |
| customer_count | number |
Create a new customer record in NetSuite
| Field | Type | Default | Description |
|---|---|---|---|
| company_name | text | Customer company name | |
| text | Customer email address | ||
| phone | text | Customer phone number | |
| subsidiary | text | Subsidiary to assign customer to |
| Name | Type | Description |
|---|---|---|
| customer_id | string | |
| company_name | string | |
| internal_id | string |
Retrieve sales order records from NetSuite
| Field | Type | Default | Description |
|---|---|---|---|
| customer_id | text | Filter by specific customer | |
| from_date | text | Filter orders from this date | |
| to_date | text | Filter orders to this date | |
| status | select | Filter by order status |
| Name | Type | Description |
|---|---|---|
| sales_orders | array | |
| order_count | number | |
| total_amount | number |
Create a new sales order in NetSuite
| Field | Type | Default | Description |
|---|---|---|---|
| customer_id | text | NetSuite Customer internal ID | |
| memo | text | Order memo/notes | |
| subsidiary | text | Subsidiary for the order |
| Name | Type | Description |
|---|---|---|
| sales_order_id | string | |
| tranid | string | |
| total | number | |
| status | string |
Retrieve item/product records from NetSuite
| Field | Type | Default | Description |
|---|---|---|---|
| item_type | select | Filter by item type | |
| is_inactive | select | false |
| Name | Type | Description |
|---|---|---|
| items | array | |
| item_count | number |
Create a new item/product in NetSuite
| Field | Type | Default | Description |
|---|---|---|---|
| item_name | text | Name of the item | |
| item_type | select | InvtPart | |
| description | text | Item description | |
| unit_price | number | Base selling price |
| Name | Type | Description |
|---|---|---|
| item_id | string | |
| item_name | string | |
| item_type | string |
Retrieve invoice records from NetSuite
| Field | Type | Default | Description |
|---|---|---|---|
| customer_id | text | Filter by specific customer | |
| from_date | text | Filter invoices from this date | |
| to_date | text | Filter invoices to this date |
| Name | Type | Description |
|---|---|---|
| invoices | array | |
| invoice_count | number | |
| total_amount | number |
Create a new invoice in NetSuite
| Field | Type | Default | Description |
|---|---|---|---|
| customer_id | text | NetSuite Customer internal ID | |
| memo | text | Invoice memo/notes | |
| terms | text | NetSuite Payment Terms internal ID |
| Name | Type | Description |
|---|---|---|
| invoice_id | string | |
| tranid | string | |
| total | number | |
| status | string |
Reputation marketing platform
Notes:
Create a new marketing story/post
| Field | Type | Default | Description |
|---|---|---|---|
| customer_name | text | Name of the customer featured in the story | |
| customer_email | text | Customer email address | |
| story_title | text | Title of the marketing story | |
| story_content | textarea | Main content of the story | |
| images | textarea | JSON array of image URLs ["url1", "url2"] | |
| tags | text | Comma-separated tags for the story | |
| auto_publish | checkbox | Automatically publish the story |
| Name | Type | Description |
|---|---|---|
| story_created | boolean | Whether story was created successfully |
| story_id | string | Unique story identifier |
| story_url | string | Public URL of the created story |
Send review request to a customer
| Field | Type | Default | Description |
|---|---|---|---|
| customer_name | text | Customer full name | |
| customer_email | text | Customer email address | |
| phone_number | text | Customer phone number | |
| job_description | textarea | Description of the work completed | |
| custom_message | textarea | Custom message to include with request | |
| send_via | select | How to send the review request | |
| delay_days | number | 0 | Days to delay sending the request |
| Name | Type | Description |
|---|---|---|
| request_sent | boolean | Whether request was sent successfully |
| request_id | string | Unique request identifier |
| tracking_url | string | URL to track request status |
Get marketing stories/posts from NiceJob
| Field | Type | Default | Description |
|---|---|---|---|
| page | number | 1 | Page number to retrieve |
| per_page | number | 20 | Number of stories to return (max 100) |
| status | select | Filter by story status | |
| tag | text | Filter by specific tag | |
| date_from | text | Start date (YYYY-MM-DD format) | |
| date_to | text | End date (YYYY-MM-DD format) |
| Name | Type | Description |
|---|---|---|
| stories | array | Array of story data |
| total_count | number | Total number of stories |
Get customer reviews and testimonials
| Field | Type | Default | Description |
|---|---|---|---|
| page | number | 1 | Page number to retrieve |
| per_page | number | 20 | Number of reviews to return (max 100) |
| rating_filter | select | Filter by rating | |
| has_content | select | Filter by review content |
| Name | Type | Description |
|---|---|---|
| reviews | array | Array of review data |
| total_count | number | Total number of reviews |
| average_rating | number | Average star rating |
Publish a draft story to social media
| Field | Type | Default | Description |
|---|---|---|---|
| story_id | text | ID of the story to publish | |
| platforms | text | Comma-separated platforms (facebook,twitter,linkedin,instagram) | |
| schedule_date | text | Schedule publication date (YYYY-MM-DD HH:MM format) |
| Name | Type | Description |
|---|---|---|
| story_published | boolean | Whether story was published successfully |
| published_urls | array | URLs where the story was published |
Get marketing analytics and performance data
| Field | Type | Default | Description |
|---|---|---|---|
| date_from | text | Start date (YYYY-MM-DD format) | |
| date_to | text | End date (YYYY-MM-DD format) | |
| metric_type | select | overview | Type of analytics to retrieve |
| Name | Type | Description |
|---|---|---|
| analytics | object | Detailed analytics information |
| total_stories | number | Total number of stories in period |
| total_reviews | number | Total number of reviews in period |
| engagement_rate | number | Social media engagement rate |
All-in-one workspace for content and collaboration with powerful database and page management capabilities
Notes:
Search for pages and databases in your Notion workspace
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Text to search for (leave empty to get all accessible pages) | |
| filter_type | select | all | Filter results by object type |
| page_size | number | 100 | Maximum number of results to return (max 100) |
| Name | Type | Description |
|---|---|---|
| results | array | Array of pages and databases found |
| hasMore | boolean | Whether there are more results available |
| nextCursor | string | Cursor for next page of results |
| totalResults | number | Number of results returned |
Retrieve a specific page by ID
| Field | Type | Default | Description |
|---|---|---|---|
| page_id | text | Notion page ID or URL | |
| include_content | select | true | Whether to include page content blocks |
| Name | Type | Description |
|---|---|---|
| page | object | Complete page information |
| title | string | Title of the page |
| url | string | URL to the page |
| properties | object | Page properties and values |
| content | array | Array of content blocks |
| createdTime | string | When the page was created |
| lastEditedTime | string | When the page was last edited |
Create a new page in Notion
| Field | Type | Default | Description |
|---|---|---|---|
| parent_id | text | ID of parent page or database to create the new page in | |
| title | text | Title for the new page | |
| properties | code_editor | Page properties as JSON object (for database pages) | |
| content | code_editor | Array of content blocks as JSON (optional) |
| Name | Type | Description |
|---|---|---|
| pageId | string | ID of the created page |
| page | object | Complete created page data |
| url | string | URL to the created page |
| title | string | Title of the created page |
Update properties of an existing page
| Field | Type | Default | Description |
|---|---|---|---|
| page_id | text | ID of the page to update | |
| properties | code_editor | Updated page properties as JSON object |
| Name | Type | Description |
|---|---|---|
| pageId | string | ID of the updated page |
| page | object | Complete updated page data |
| success | boolean | Whether the update was successful |
Retrieve the schema and properties of a database
| Field | Type | Default | Description |
|---|---|---|---|
| database_id | text | Notion database ID |
| Name | Type | Description |
|---|---|---|
| database | object | Complete database schema information |
| title | string | Title of the database |
| properties | object | Schema properties of the database |
| url | string | URL to the database |
Query and filter database entries
| Field | Type | Default | Description |
|---|---|---|---|
| database_id | text | Notion database ID to query | |
| filter | code_editor | Filter conditions as JSON object | |
| sorts | code_editor | Sort configuration as JSON array | |
| page_size | number | 100 | Maximum number of results (max 100) |
| Name | Type | Description |
|---|---|---|
| results | array | Array of database entries matching the query |
| hasMore | boolean | Whether there are more results available |
| nextCursor | string | Cursor for next page of results |
| totalResults | number | Number of results returned |
Create a new entry in a Notion database
| Field | Type | Default | Description |
|---|---|---|---|
| database_id | text | Notion database ID | |
| properties | code_editor | Entry properties as JSON object | |
| content | code_editor | Array of content blocks as JSON (optional) |
| Name | Type | Description |
|---|---|---|
| entryId | string | ID of the created database entry |
| entry | object | Complete created entry data |
| url | string | URL to the created entry |
| properties | object | Properties of the created entry |
Update properties of an existing database entry
| Field | Type | Default | Description |
|---|---|---|---|
| page_id | text | ID of the database entry to update | |
| properties | code_editor | Updated entry properties as JSON object |
| Name | Type | Description |
|---|---|---|
| entryId | string | ID of the updated entry |
| entry | object | Complete updated entry data |
| success | boolean | Whether the update was successful |
Add content blocks to the end of a page
| Field | Type | Default | Description |
|---|---|---|---|
| page_id | text | ID of the page to append content to | |
| blocks | code_editor | Array of content blocks to append as JSON |
| Name | Type | Description |
|---|---|---|
| pageId | string | ID of the page that was updated |
| blocks | array | Array of blocks that were appended |
| success | boolean | Whether content was successfully appended |
Retrieve users from the Notion workspace
| Field | Type | Default | Description |
|---|---|---|---|
| page_size | number | 100 | Maximum number of users to return (max 100) |
| Name | Type | Description |
|---|---|---|
| users | array | Array of workspace users |
| hasMore | boolean | Whether there are more users available |
| nextCursor | string | Cursor for next page of results |
| totalUsers | number | Number of users returned |
Simple CRM with email marketing, lead management, and sales automation
Notes:
Retrieve contacts from Nutshell CRM
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of contacts to retrieve (1-200) |
| query | text | Search term to filter contacts |
| Name | Type | Description |
|---|---|---|
| contacts | array | |
| total_count | number |
Create a new contact in Nutshell CRM
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Full name of the contact | |
| Email address of the contact | |||
| phone | text | Phone number of the contact | |
| title | text | Job title of the contact | |
| description | textarea | Description or notes about the contact |
| Name | Type | Description |
|---|---|---|
| contact_id | number | |
| name | string | |
| string | ||
| phone | string | |
| created_at | string |
Update an existing contact in Nutshell CRM
| Field | Type | Default | Description |
|---|---|---|---|
| contact_id | number | ID of the contact to update | |
| name | text | Full name of the contact | |
| Email address of the contact | |||
| phone | text | Phone number of the contact | |
| title | text | Job title of the contact | |
| description | textarea | Description or notes about the contact |
| Name | Type | Description |
|---|---|---|
| contact_id | number | |
| name | string | |
| string | ||
| phone | string | |
| updated_at | string |
Retrieve accounts (companies) from Nutshell CRM
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of accounts to retrieve (1-200) |
| query | text | Search term to filter accounts |
| Name | Type | Description |
|---|---|---|
| accounts | array | |
| total_count | number |
Create a new account (company) in Nutshell CRM
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the account/company | |
| url | url | Website URL of the account | |
| phone | text | Phone number of the account | |
| description | textarea | Description or notes about the account |
| Name | Type | Description |
|---|---|---|
| account_id | number | |
| name | string | |
| url | string | |
| created_at | string |
Retrieve leads from Nutshell CRM
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of leads to retrieve (1-200) |
| market_id | number | Filter leads by market ID | |
| query | text | Search term to filter leads |
| Name | Type | Description |
|---|---|---|
| leads | array | |
| total_count | number |
Create a new lead in Nutshell CRM
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the lead/opportunity | |
| market_id | number | Market ID for the lead | |
| value | number | Monetary value of the lead | |
| confidence | number | Confidence percentage (0-100) | |
| estimated_close_date | date | Estimated close date (YYYY-MM-DD) | |
| description | textarea | Description or notes about the lead |
| Name | Type | Description |
|---|---|---|
| lead_id | number | |
| name | string | |
| value | number | |
| confidence | number | |
| created_at | string |
Retrieve activities from Nutshell CRM
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of activities to retrieve (1-200) |
| entity_type | select | Filter activities by entity type | |
| entity_id | number | Filter activities by specific entity ID |
| Name | Type | Description |
|---|---|---|
| activities | array | |
| total_count | number |
Create a new activity in Nutshell CRM
| Field | Type | Default | Description |
|---|---|---|---|
| activityType_id | number | Activity type ID (1=Call, 2=Meeting, 3=Task, etc.) | |
| note | textarea | Description of the activity | |
| entity_type | select | Type of entity this activity relates to | |
| entity_id | number | ID of the related entity | |
| due_time | datetime-local | Due date and time for the activity |
| Name | Type | Description |
|---|---|---|
| activity_id | number | |
| note | string | |
| due_time | string | |
| created_at | string |
Send an email through Nutshell CRM
| Field | Type | Default | Description |
|---|---|---|---|
| to_emails | text | Recipient email addresses (comma-separated for multiple) | |
| subject | text | Email subject line | |
| htmlBody | textarea | Email body content in HTML format | |
| entity_type | select | Type of entity this email relates to | |
| entity_id | number | ID of the related entity |
| Name | Type | Description |
|---|---|---|
| email_id | number | |
| subject | string | |
| status | string | |
| created_at | string |
Search across all records in Nutshell CRM
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Search term to find across all records | |
| entity_types | select | Limit search to specific record types | |
| limit | number | 50 | Maximum number of results to return |
| Name | Type | Description |
|---|---|---|
| results | array | |
| total_count | number |
Open-source ERP and CRM - All-in-one business management software
Notes:
Retrieve partner (customer/supplier) records from Odoo
| Field | Type | Default | Description |
|---|---|---|---|
| is_company | select | Filter by partner type | |
| customer_rank | select | Filter by customer status | |
| supplier_rank | select | Filter by supplier status | |
| limit | number | 100 | Maximum number of records to retrieve |
| Name | Type | Description |
|---|---|---|
| partners | array | |
| partner_count | number |
Create a new partner (customer/supplier) in Odoo
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the partner | |
| is_company | select | true | |
| customer_rank | select | 1 | |
| supplier_rank | select | 0 | |
| text | Partner email address | ||
| phone | text | Partner phone number | |
| street | text | Street address | |
| city | text | City | |
| country_code | text | Country code (e.g., US, GB, FR) |
| Name | Type | Description |
|---|---|---|
| partner_id | string | |
| name | string | |
| ref | string |
Retrieve product records from Odoo
| Field | Type | Default | Description |
|---|---|---|---|
| detailed_type | select | Filter by product type | |
| sale_ok | select | Filter by sale status | |
| purchase_ok | select | Filter by purchase status | |
| active | select | true | |
| limit | number | 100 | Maximum number of records to retrieve |
| Name | Type | Description |
|---|---|---|
| products | array | |
| product_count | number |
Create a new product in Odoo
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the product | |
| detailed_type | select | product | |
| list_price | number | Sales price of the product | |
| standard_price | number | Cost price of the product | |
| default_code | text | Internal reference/SKU | |
| barcode | text | Product barcode | |
| categ_id | text | Product category ID |
| Name | Type | Description |
|---|---|---|
| product_id | string | |
| name | string | |
| default_code | string |
Retrieve sales order records from Odoo
| Field | Type | Default | Description |
|---|---|---|---|
| partner_id | text | Filter by customer partner ID | |
| state | select | Filter by order state | |
| date_order_from | text | Filter orders from this date | |
| date_order_to | text | Filter orders to this date | |
| limit | number | 100 | Maximum number of records to retrieve |
| Name | Type | Description |
|---|---|---|
| sales_orders | array | |
| order_count | number | |
| total_amount | number |
Create a new sales order in Odoo
| Field | Type | Default | Description |
|---|---|---|---|
| partner_id | text | Customer partner ID | |
| date_order | text | Order date (defaults to today) | |
| validity_date | text | Quotation validity date | |
| client_order_ref | text | Customer order reference | |
| note | textarea | Terms and conditions |
| Name | Type | Description |
|---|---|---|
| order_id | string | |
| name | string | |
| amount_total | number | |
| state | string |
Retrieve invoice records from Odoo
| Field | Type | Default | Description |
|---|---|---|---|
| partner_id | text | Filter by customer partner ID | |
| move_type | select | Filter by invoice type | |
| state | select | Filter by invoice state | |
| payment_state | select | Filter by payment state | |
| limit | number | 100 | Maximum number of records to retrieve |
| Name | Type | Description |
|---|---|---|
| invoices | array | |
| invoice_count | number | |
| total_amount | number |
Create a new invoice in Odoo
| Field | Type | Default | Description |
|---|---|---|---|
| partner_id | text | Customer partner ID | |
| move_type | select | out_invoice | |
| invoice_date | text | Invoice date (defaults to today) | |
| invoice_date_due | text | Invoice due date | |
| ref | text | Vendor reference number | |
| narration | textarea | Invoice terms and conditions |
| Name | Type | Description |
|---|---|---|
| invoice_id | string | |
| name | string | |
| amount_total | number | |
| state | string |
Customer marketing platform with reviews
Notes:
Get customer reviews from Okendo
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | Specific product ID to filter by | |
| page | number | 1 | Page number to retrieve |
| limit | number | 20 | Number of reviews to return (max 250) |
| rating | select | Filter by rating | |
| status | select | Filter by review status | |
| sort | select | created_at_desc | Sort reviews by |
| Name | Type | Description |
|---|---|---|
| reviews | array | Array of review data |
| total_reviews | number | Total number of reviews |
| average_rating | number | Average star rating |
Get reviews for a specific product
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | Product identifier | |
| page | number | 1 | Page number to retrieve |
| limit | number | 20 | Number of reviews to return (max 250) |
| Name | Type | Description |
|---|---|---|
| reviews | array | Array of product review data |
| product_info | object | Product information |
| total_reviews | number | Total number of reviews for this product |
| average_rating | number | Average rating for this product |
Send review request to a customer
| Field | Type | Default | Description |
|---|---|---|---|
| customer_email | text | Customer email address | |
| customer_first_name | text | Customer first name | |
| customer_last_name | text | Customer last name | |
| order_id | text | Order identifier | |
| order_date | text | Order date (YYYY-MM-DD format) | |
| products | textarea | JSON array of products [{\"id\":\"123\",\"name\":\"Product Name\",\"price\":29.99,\"image_url\":\"https://...\"}] | |
| delay_days | number | 7 | Days to wait before sending request |
| Name | Type | Description |
|---|---|---|
| request_created | boolean | Whether request was created successfully |
| request_id | string | Unique request identifier |
Get customer list with review data
| Field | Type | Default | Description |
|---|---|---|---|
| page | number | 1 | Page number to retrieve |
| limit | number | 20 | Number of customers to return (max 250) |
| text | Filter by customer email |
| Name | Type | Description |
|---|---|---|
| customers | array | Array of customer data |
| total_customers | number | Total number of customers |
Get review statistics for a product
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | Product identifier |
| Name | Type | Description |
|---|---|---|
| statistics | object | Product review statistics |
| total_reviews | number | Total number of reviews |
| average_rating | number | Average star rating |
| rating_distribution | object | Distribution of ratings by star count |
| review_velocity | number | Reviews per month average |
Get embeddable widget code
| Field | Type | Default | Description |
|---|---|---|---|
| widget_type | select | Type of widget to generate | |
| product_id | text | Product ID for product-specific widgets | |
| max_reviews | number | 5 | Maximum number of reviews to display |
| Name | Type | Description |
|---|---|---|
| widget_code | string | HTML/JavaScript widget code |
| widget_config | object | Widget configuration details |
Approve, reject, or respond to a review
| Field | Type | Default | Description |
|---|---|---|---|
| review_id | text | ID of the review to moderate | |
| action | select | Action to take on the review | |
| response_text | textarea | Response message (required for respond action) | |
| rejection_reason | text | Reason for rejection (optional for reject action) |
| Name | Type | Description |
|---|---|---|
| moderation_success | boolean | Whether moderation action was successful |
| review_status | string | Updated review status |
Get review analytics and insights
| Field | Type | Default | Description |
|---|---|---|---|
| date_from | text | Start date (YYYY-MM-DD format) | |
| date_to | text | End date (YYYY-MM-DD format) | |
| metric_type | select | overview | Type of analytics to retrieve |
| Name | Type | Description |
|---|---|---|
| analytics | object | Detailed analytics information |
| total_reviews | number | Total reviews in period |
| average_rating | number | Average rating in period |
| response_rate | number | Review request response rate |
Live chat and customer engagement platform
Notes:
Send a message in an Olark chat
| Field | Type | Default | Description |
|---|---|---|---|
| visitor_id | text | ID of the visitor to send message to | |
| body | textarea | Content of the message | |
| nickname | text | Support | Nickname of the operator sending the message |
| Name | Type | Description |
|---|---|---|
| message_id | string | The ID of the sent message |
| body | string | The message content |
| timestamp | string | When the message was sent |
Retrieve details of a specific visitor
| Field | Type | Default | Description |
|---|---|---|---|
| visitor_id | text | ID of the visitor to retrieve |
| Name | Type | Description |
|---|---|---|
| visitor_id | string | The visitor ID |
| fullname | string | Visitor full name |
| string | Visitor email address | |
| phone | string | Visitor phone number |
| city | string | Visitor city |
| region | string | Visitor region/state |
| country_code | string | Visitor country code |
Get a list of chat transcripts
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 25 | Number of chats to retrieve (max 100) |
| start | text | Start date in YYYY-MM-DD format | |
| end | text | End date in YYYY-MM-DD format |
| Name | Type | Description |
|---|---|---|
| chats | array | Array of chat objects |
| total_count | number | Total number of chats |
Retrieve details of a specific chat transcript
| Field | Type | Default | Description |
|---|---|---|---|
| chat_id | text | ID of the chat to retrieve |
| Name | Type | Description |
|---|---|---|
| chat_id | string | The chat ID |
| visitor_nickname | string | Nickname of the visitor |
| visitor_email | string | Email of the visitor |
| started_timestamp | string | When the chat started |
| ended_timestamp | string | When the chat ended |
| messages | array | Array of chat messages |
Update visitor information
| Field | Type | Default | Description |
|---|---|---|---|
| visitor_id | text | ID of the visitor to update | |
| fullname | text | New full name | |
| text | New email address | ||
| phone | text | New phone number |
| Name | Type | Description |
|---|---|---|
| visitor_id | string | The ID of the updated visitor |
| updated_at | string | When the visitor was updated |
Create a note for a visitor
| Field | Type | Default | Description |
|---|---|---|---|
| visitor_id | text | ID of the visitor to add note to | |
| text | textarea | Content of the note |
| Name | Type | Description |
|---|---|---|
| note_id | string | The ID of the created note |
| text | string | The note content |
| created_at | string | When the note was created |
Omnichannel marketing automation platform for e-commerce with email, SMS, push notifications, and customer journey mapping
Notes:
Retrieve contacts from your Omnisend account
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | subscribed | |
| sort | select | createdAt | |
| sort_direction | select | desc | |
| limit | number | 250 | Number of contacts to retrieve (max 250) |
| Name | Type | Description |
|---|---|---|
| contacts | array | Array of contact objects |
| paging | object | Pagination information |
Create a new contact in Omnisend
| Field | Type | Default | Description |
|---|---|---|---|
| text | Contact email address | ||
| first_name | text | Contact first name | |
| last_name | text | Contact last name | |
| phone | text | Contact phone number (international format) | |
| country | text | Country name or ISO code | |
| state | text | State or region | |
| city | text | City name | |
| postal_code | text | Postal or ZIP code | |
| custom_properties | textarea | {} | Custom properties as JSON object (e.g. {"company": "Acme", "role": "Manager"}) |
| tags | textarea | [] | Tags as JSON array (e.g. ["customer", "vip"]) |
| Name | Type | Description |
|---|---|---|
| contact | object | The created contact object |
| contact_id | string | ID of the created contact |
Update an existing contact in Omnisend
| Field | Type | Default | Description |
|---|---|---|---|
| contact_id | text | ID of the contact to update | |
| first_name | text | Updated first name | |
| last_name | text | Updated last name | |
| phone | text | Updated phone number | |
| custom_properties | textarea | {} | Custom properties to update as JSON object |
| Name | Type | Description |
|---|---|---|
| contact | object | The updated contact object |
Retrieve a specific contact by ID
| Field | Type | Default | Description |
|---|---|---|---|
| contact_id | text | ID of the contact to retrieve |
| Name | Type | Description |
|---|---|---|
| contact | object | The contact object |
Add tags to a contact
| Field | Type | Default | Description |
|---|---|---|---|
| contact_id | text | ID of the contact | |
| tags | textarea | Tags to add as JSON array (e.g. ["customer", "vip"]) |
| Name | Type | Description |
|---|---|---|
| contact | object | The contact with added tags |
Remove tags from a contact
| Field | Type | Default | Description |
|---|---|---|---|
| contact_id | text | ID of the contact | |
| tags | textarea | Tags to remove as JSON array (e.g. ["old-customer"]) |
| Name | Type | Description |
|---|---|---|
| contact | object | The contact with removed tags |
Track a custom event for a contact
| Field | Type | Default | Description |
|---|---|---|---|
| contact_id | text | ID of the contact | |
| event_name | text | Name of the custom event | |
| fields | textarea | {} | Event properties as JSON object (e.g. {"product": "Widget", "value": 99.99}) |
| Name | Type | Description |
|---|---|---|
| event_id | string | ID of the tracked event |
Retrieve campaigns from your Omnisend account
| Field | Type | Default | Description |
|---|---|---|---|
| type | select | regular | |
| status | select | ||
| limit | number | 250 | Number of campaigns to retrieve (max 250) |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of campaign objects |
Retrieve a specific campaign by ID
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | ID of the campaign to retrieve |
| Name | Type | Description |
|---|---|---|
| campaign | object | The campaign object |
Start a draft campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | ID of the campaign to start |
| Name | Type | Description |
|---|---|---|
| campaign | object | The started campaign object |
Pause a running campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | ID of the campaign to pause |
| Name | Type | Description |
|---|---|---|
| campaign | object | The paused campaign object |
Retrieve automation workflows from your account
| Field | Type | Default | Description |
|---|---|---|---|
| status | select |
| Name | Type | Description |
|---|---|---|
| automations | array | Array of automation objects |
Start an automation workflow
| Field | Type | Default | Description |
|---|---|---|---|
| automation_id | text | ID of the automation to start |
| Name | Type | Description |
|---|---|---|
| automation | object | The started automation object |
Pause an automation workflow
| Field | Type | Default | Description |
|---|---|---|---|
| automation_id | text | ID of the automation to pause |
| Name | Type | Description |
|---|---|---|
| automation | object | The paused automation object |
Retrieve orders from your Omnisend account
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 250 | Number of orders to retrieve (max 250) |
| sort | select | createdAt |
| Name | Type | Description |
|---|---|---|
| orders | array | Array of order objects |
Create a new order in Omnisend
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | Unique order identifier | |
| text | Customer email address | ||
| order_sum | number | Total order amount | |
| currency | text | Currency code (e.g., USD, EUR) | |
| order_status | select | awaitingPayment | |
| order_url | text | URL to view the order |
| Name | Type | Description |
|---|---|---|
| order | object | The created order object |
Webinar and virtual event platform for interactive digital experiences
Notes:
Create a new ON24 webinar event
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | The title of the webinar event | |
| description | textarea | Event description | |
| start_time | text | ISO 8601 format (e.g., 2024-12-25T14:00:00Z) | |
| duration | number | 60 | Event duration in minutes |
| timezone | text | UTC | e.g., America/New_York, Europe/London |
| presenter_name | text | Main presenter name | |
| presenter_email | text | Main presenter email address | |
| registration_required | checkbox | Require attendees to register |
| Name | Type | Description |
|---|---|---|
| event_id | string | |
| registration_url | string | |
| attendee_url | string | |
| success | boolean |
Retrieve details of a specific ON24 event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event |
| Name | Type | Description |
|---|---|---|
| title | string | |
| description | string | |
| start_time | string | |
| duration | number | |
| registration_url | string | |
| attendee_url | string | |
| status | string | |
| success | boolean |
Register an attendee for an ON24 event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event | |
| first_name | text | Attendee first name | |
| last_name | text | Attendee last name | |
| text | Attendee email address | ||
| company | text | Attendee company name | |
| title | text | Attendee job title | |
| phone | text | Attendee phone number |
| Name | Type | Description |
|---|---|---|
| registrant_id | string | |
| attendee_url | string | |
| success | boolean |
Retrieve list of registrants for an event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event | |
| page_size | number | 100 | Number of registrants per page |
| Name | Type | Description |
|---|---|---|
| registrants | array | |
| total_count | number | |
| success | boolean |
Retrieve list of attendees for a completed event
| Field | Type | Default | Description |
|---|---|---|---|
| event_id | text | The unique ID of the event |
| Name | Type | Description |
|---|---|---|
| attendees | array | |
| total_count | number | |
| success | boolean |
Retrieve list of events for the client
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | active | |
| limit | number | 50 | Maximum number of events to return |
| Name | Type | Description |
|---|---|---|
| events | array | |
| total_count | number | |
| success | boolean |
Microsoft cloud file hosting and synchronization service
Notes:
Upload a file to OneDrive
| Name | Type | Required | Description |
|---|---|---|---|
| fileData | file | Yes | File content to upload |
| Field | Type | Default | Description |
|---|---|---|---|
| fileName | text | Name for the uploaded file | |
| folderPath | text | / | OneDrive folder path (e.g., "/Documents/MyFolder") |
| conflictBehavior | select | rename | What to do if file already exists |
| Name | Type | Description |
|---|---|---|
| fileId | string | OneDrive file ID |
| fileName | string | Name of the uploaded file |
| webUrl | string | URL to view the file online |
| downloadUrl | string | Direct download URL |
| size | number | Size of the file in bytes |
| success | boolean |
Download a file from OneDrive
| Field | Type | Default | Description |
|---|---|---|---|
| fileId | text | OneDrive file ID (use this OR file path) | |
| filePath | text | Full path to file (use this OR file ID) |
| Name | Type | Description |
|---|---|---|
| fileData | binary | Downloaded file content |
| fileName | string | Name of the downloaded file |
| size | number | Size of the file in bytes |
| mimeType | string | File MIME type |
List files and folders in OneDrive
| Field | Type | Default | Description |
|---|---|---|---|
| folderPath | text | / | OneDrive folder path (leave empty for root) |
| filter | text | OData filter (e.g., "name eq 'report.pdf'") | |
| orderBy | select | name | How to sort the results |
| top | number | 100 | Maximum number of items to return |
| Name | Type | Description |
|---|---|---|
| files | array | Array of files and folders |
| totalCount | number | Number of items found |
Create a new folder in OneDrive
| Field | Type | Default | Description |
|---|---|---|---|
| folderName | text | Name of the folder to create | |
| parentPath | text | / | Parent folder path (leave empty for root) |
| conflictBehavior | select | rename | What to do if folder already exists |
| Name | Type | Description |
|---|---|---|
| folderId | string | OneDrive folder ID |
| folderName | string | Name of the created folder |
| webUrl | string | URL to view the folder online |
| success | boolean |
Delete a file or folder from OneDrive
| Field | Type | Default | Description |
|---|---|---|---|
| itemId | text | OneDrive item ID (use this OR item path) | |
| itemPath | text | Full path to item (use this OR item ID) |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| deletedPath | string | Path of the deleted item |
Move a file or folder to another location
| Field | Type | Default | Description |
|---|---|---|---|
| itemId | text | OneDrive item ID (use this OR item path) | |
| itemPath | text | Current path to item (use this OR item ID) | |
| destinationPath | text | New folder path for the item | |
| newName | text | New name for the item (optional) |
| Name | Type | Description |
|---|---|---|
| itemId | string | ID of the moved item |
| newPath | string | New path of the item |
| webUrl | string | URL to view the moved item |
| success | boolean |
Copy a file or folder to another location
| Field | Type | Default | Description |
|---|---|---|---|
| itemId | text | OneDrive item ID (use this OR item path) | |
| itemPath | text | Path to item to copy (use this OR item ID) | |
| destinationPath | text | Destination folder path | |
| newName | text | New name for the copied item (optional) |
| Name | Type | Description |
|---|---|---|
| newItemId | string | ID of the copied item |
| newPath | string | Path of the copied item |
| webUrl | string | URL to view the copied item |
| success | boolean |
Get information about a file or folder
| Field | Type | Default | Description |
|---|---|---|---|
| itemId | text | OneDrive item ID (use this OR item path) | |
| itemPath | text | Full path to item (use this OR item ID) |
| Name | Type | Description |
|---|---|---|
| id | string | OneDrive item ID |
| name | string | Item name |
| size | number | Size in bytes (files only) |
| isFolder | boolean | Whether this is a folder |
| createdDateTime | string | Creation timestamp |
| lastModifiedDateTime | string | Last modification timestamp |
| webUrl | string | URL to view the item online |
| downloadUrl | string | Direct download URL (files only) |
Create a sharing link for a file or folder
| Field | Type | Default | Description |
|---|---|---|---|
| itemId | text | OneDrive item ID (use this OR item path) | |
| itemPath | text | Full path to item (use this OR item ID) | |
| linkType | select | view | Type of sharing link |
| scope | select | anonymous | Who can access the link |
| Name | Type | Description |
|---|---|---|
| shareUrl | string | Sharing link URL |
| linkType | string | Type of the created link |
| scope | string | Access scope of the link |
| success | boolean |
Search for files and folders in OneDrive
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Text to search for in file names and content | |
| top | number | 50 | Maximum number of results to return |
| Name | Type | Description |
|---|---|---|
| results | array | Array of matching files and folders |
| totalCount | number | Number of results found |
Business automation platform combining CRM, email marketing, and e-commerce tools
Notes:
Create or update a contact in Ontraport
| Field | Type | Default | Description |
|---|---|---|---|
| text | Contact email address | ||
| firstname | text | Contact first name | |
| lastname | text | Contact last name | |
| company | text | Contact company name | |
| phone | text | Contact phone number | |
| customFields | textarea | {} | Additional contact fields as JSON object |
| Name | Type | Description |
|---|---|---|
| contactId | number | The Ontraport contact ID |
| status | string | Created or Updated |
Add a contact to an Ontraport sequence
| Field | Type | Default | Description |
|---|---|---|---|
| sequenceId | text | The ID of the sequence | |
| contactId | text | The Ontraport contact ID |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the contact was added to the sequence |
| message | string | Success or error message |
Add a contact to an Ontraport campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | The ID of the campaign | |
| contactId | text | The Ontraport contact ID |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the contact was added to the campaign |
| message | string | Success or error message |
Add a tag to a contact
| Field | Type | Default | Description |
|---|---|---|---|
| tagId | text | The ID of the tag to add | |
| contactId | text | The Ontraport contact ID |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the tag was added successfully |
| message | string | Success or error message |
Retrieve contact information by email or ID
| Field | Type | Default | Description |
|---|---|---|---|
| lookupField | select | Field to use for contact lookup | |
| lookupValue | text | The email address or contact ID to search for |
| Name | Type | Description |
|---|---|---|
| contact | object | Complete contact information from Ontraport |
| found | boolean | Whether the contact was found |
Retrieve all Ontraport campaigns
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of Ontraport campaigns |
| count | number | Number of campaigns returned |
Retrieve all Ontraport sequences
| Name | Type | Description |
|---|---|---|
| sequences | array | Array of Ontraport sequences |
| count | number | Number of sequences returned |
Retrieve all Ontraport tags
| Name | Type | Description |
|---|---|---|
| tags | array | Array of Ontraport tags |
| count | number | Number of tags returned |
Leverage OpenAI's powerful language models to generate text, answer questions, and enhance automation. Integrate AI-driven capabilities into your workflows effortlessly.
Notes:
Generate text using OpenAI GPT models
| Name | Type | Required | Description |
|---|---|---|---|
| prompt | string | Yes |
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Enter your prompt text. You can drag & drop parameters from previous nodes. | |
| model | select | gpt-4o | Select the GPT model to use |
| temperature | float | 0.7 | Controls randomness: 0 = deterministic, 2 = very creative |
| max_tokens | number | 500 | Maximum number of tokens to generate |
| json_schema | code | Define output structure. Response is GUARANTEED to match this schema. Example: {"type": "object", "properties": {"title": {"type": "string"}, "score": {"type": "number"}}, "required": ["title", "score"]} |
| Name | Type | Description |
|---|---|---|
| content | string | |
| data | object | |
| usage | object | |
| model | string | |
| finish_reason | string | |
| success | boolean |
| Name | Type | Required | Description |
|---|---|---|---|
| audioFile | file | Yes |
| Field | Type | Default | Description |
|---|---|---|---|
| language | string |
| Name | Type | Description |
|---|---|---|
| text | string | |
| success | boolean |
Download audio from URL and transcribe using Whisper
| Field | Type | Default | Description |
|---|---|---|---|
| audio_url | text | URL of the audio file to transcribe | |
| auth_header | text | Full Authorization header value if URL requires auth (e.g., "Bearer xxx") | |
| language | text | ISO-639-1 language code (e.g., en, es, fr) |
| Name | Type | Description |
|---|---|---|
| text | string | The transcribed text from the audio |
| success | boolean |
Convert text into spoken audio using OpenAI TTS. Outputs raw audio data.
| Name | Type | Required | Description |
|---|---|---|---|
| text | textarea | Yes | Enter the text to convert into speech. You can use parameters like [[nodes.node_id.output.key]]. |
| Field | Type | Default | Description |
|---|---|---|---|
| text | textarea | Enter text directly, or map an input from a previous node. Input mapping takes precedence if set. | |
| model | select | tts-1 | Choose the TTS model. |
| voice | select | alloy | Choose the voice for the audio. |
| response_format | select | mp3 | The format for the generated audio file. |
| speed | float | 1 |
| Name | Type | Description |
|---|---|---|
| audio_data | binary | The raw binary audio data. |
| content_type | string | The MIME type of the audio data (e.g., audio/mpeg). |
| success | boolean |
Generate images using OpenAI DALL-E 3 or DALL-E 2 models
| Name | Type | Required | Description |
|---|---|---|---|
| prompt | string | Yes |
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Describe the image you want to generate. Be specific about style, composition, and details. | |
| model | select | dall-e-3 | Select the DALL-E model to use |
| size | select | 1024x1024 | Image dimensions (DALL-E 3 supports all sizes) |
| quality | select | standard | Image quality (DALL-E 3 only) |
| style | select | vivid | Image style (DALL-E 3 only) |
| Name | Type | Description |
|---|---|---|
| image_data | binary | The raw binary image data (PNG) |
| content_type | string | The MIME type of the image (e.g., image/png) |
| original_url | string | The temporary OpenAI URL (expires in ~1 hour) |
| revised_prompt | string | The prompt as revised by DALL-E 3 for safety/clarity |
| model | string | |
| size | string | |
| quality | string | |
| style | string | |
| success | boolean |
Analyze an image using GPT-4o Vision. Extract information, describe contents, read text, or answer questions about images.
| Name | Type | Required | Description |
|---|---|---|---|
| image_url | string | Yes | |
| prompt | string | Yes |
| Field | Type | Default | Description |
|---|---|---|---|
| image_url | text | URL of the image to analyze. Supports JPG, PNG, GIF, WEBP. | |
| prompt | textarea | Instructions for what to analyze. Examples: "Describe this image", "Read the text in this image", "What damage do you see?" | |
| model | select | gpt-4o | Select the vision model to use |
| detail | select | auto | Image processing detail level. High uses more tokens but captures fine details. |
| max_tokens | number | 1000 | Maximum tokens for the response |
| Name | Type | Description |
|---|---|---|
| content | string | The AI analysis of the image |
| usage | object | API token usage statistics |
| model | string | |
| finish_reason | string | |
| success | boolean |
Open-source shopping cart system for managing products, orders, and customers
Notes:
Retrieve products from OpenCart store
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Maximum number of products to retrieve |
| filter_name | text | Filter products by name |
| Name | Type | Description |
|---|---|---|
| products | array | List of products |
| total | number | Total number of products |
Get a specific product by ID
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | The ID of the product to retrieve |
| Name | Type | Description |
|---|---|---|
| product | object | Product details |
Create a new product in OpenCart
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the product | |
| description | textarea | Product description | |
| price | number | Product price | |
| quantity | number | 1 | Stock quantity |
| model | text | Product model or SKU |
| Name | Type | Description |
|---|---|---|
| product_id | string | ID of the created product |
| success | boolean | Whether the product was created successfully |
Update an existing product
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | ID of the product to update | |
| name | text | New product name | |
| price | number | New product price | |
| quantity | number | New stock quantity |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the product was updated successfully |
Retrieve orders from OpenCart store
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Maximum number of orders to retrieve |
| order_status_id | text | Filter by order status ID |
| Name | Type | Description |
|---|---|---|
| orders | array | List of orders |
| total | number | Total number of orders |
Get a specific order by ID
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | The ID of the order to retrieve |
| Name | Type | Description |
|---|---|---|
| order | object | Order details |
Update the status of an order
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | ID of the order to update | |
| order_status_id | text | New order status ID | |
| comment | textarea | Optional comment for the status change |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the order status was updated successfully |
Open-source project management software with task tracking and collaboration
Notes:
Create a new work package in OpenProject
| Field | Type | Default | Description |
|---|---|---|---|
| project_id | text | The ID of the project | |
| subject | text | The subject of the work package | |
| type_id | text | 1 | The type ID (e.g., 1 for Task) |
| Name | Type | Description |
|---|---|---|
| work_package_id | string | The unique ID of the created work package |
Get current weather, forecasts, and geocoding for any location worldwide
Notes:
Get current weather data for a location by coordinates
| Field | Type | Default | Description |
|---|---|---|---|
| latitude | text | Latitude coordinate (e.g., 40.7128) | |
| longitude | text | Longitude coordinate (e.g., -74.0060) | |
| units | select | metric | Unit system for temperature and wind speed |
| Name | Type | Description |
|---|---|---|
| temperature | number | Current temperature in selected units |
| feels_like | number | Perceived temperature |
| humidity | number | Humidity percentage |
| pressure | number | Atmospheric pressure |
| description | string | Text description of weather conditions |
| main_weather | string | Main weather category (e.g., Clear, Clouds, Rain) |
| icon | string | Weather icon code |
| wind_speed | number | Wind speed (m/s for metric, mph for imperial) |
| wind_direction | number | Wind direction in degrees |
| visibility | number | Visibility distance in meters |
| clouds | number | Cloudiness percentage |
| sunrise | string | Sunrise time (UTC) |
| sunset | string | Sunset time (UTC) |
| location_name | string | Name of the location |
| country | string | Country code (e.g., US, GB) |
Get 5-day weather forecast with 3-hour intervals
| Field | Type | Default | Description |
|---|---|---|---|
| latitude | text | Latitude coordinate (e.g., 40.7128) | |
| longitude | text | Longitude coordinate (e.g., -74.0060) | |
| units | select | metric | Unit system for temperature and wind speed |
| Name | Type | Description |
|---|---|---|
| forecast | array | Array of forecast items with temperature, weather, and timestamps |
| city_name | string | Name of the city |
| country | string | Country code |
| count | number | Number of forecast items returned |
Get latitude and longitude coordinates from a city name
| Field | Type | Default | Description |
|---|---|---|---|
| city | text | Name of the city (e.g., New York, London, Tokyo) | |
| state_code | text | State code for US cities only (e.g., NY, CA) | |
| country_code | text | ISO 3166 country code (e.g., US, GB, JP) | |
| limit | number | 1 | Number of results to return (1-5) |
| Name | Type | Description |
|---|---|---|
| latitude | number | Latitude coordinate of first result |
| longitude | number | Longitude coordinate of first result |
| name | string | Official name of the location |
| country | string | Country code |
| state | string | State or region name |
| locations | array | Array of all matching locations (if limit > 1) |
Get location name from latitude and longitude coordinates
| Field | Type | Default | Description |
|---|---|---|---|
| latitude | text | Latitude coordinate (e.g., 40.7128) | |
| longitude | text | Longitude coordinate (e.g., -74.0060) | |
| limit | number | 1 | Number of results to return (1-5) |
| Name | Type | Description |
|---|---|---|
| name | string | Name of the location |
| country | string | Country code |
| state | string | State or region name |
| locations | array | Array of all matching locations |
Enterprise resource planning - Comprehensive cloud applications for finance and operations
Notes:
Retrieve customer records from Oracle ERP
| Field | Type | Default | Description |
|---|---|---|---|
| customer_status | select | Filter by customer status | |
| customer_type | select | Filter by customer type | |
| limit | number | 100 | Maximum number of records to retrieve |
| Name | Type | Description |
|---|---|---|
| customers | array | |
| customer_count | number |
Create a new customer record in Oracle ERP
| Field | Type | Default | Description |
|---|---|---|---|
| party_name | text | Customer name | |
| party_type | select | ORGANIZATION | |
| customer_class | text | Customer classification code | |
| primary_email | text | Customer primary email address | |
| primary_phone | text | Customer primary phone number |
| Name | Type | Description |
|---|---|---|
| party_id | string | |
| party_number | string | |
| party_name | string |
Retrieve sales orders from Oracle ERP
| Field | Type | Default | Description |
|---|---|---|---|
| customer_id | text | Filter by customer party ID | |
| business_unit | text | Filter by business unit | |
| from_date | text | Filter orders from this date | |
| to_date | text | Filter orders to this date | |
| order_status | select | Filter by order status |
| Name | Type | Description |
|---|---|---|
| sales_orders | array | |
| order_count | number | |
| total_amount | number |
Create a new sales order in Oracle ERP
| Field | Type | Default | Description |
|---|---|---|---|
| customer_id | text | Oracle customer party ID | |
| business_unit | text | Business unit for the order | |
| order_type | text | STANDARD | Sales order type |
| currency_code | text | USD | Order currency (e.g., USD, EUR) |
| customer_po_number | text | Customer purchase order number |
| Name | Type | Description |
|---|---|---|
| order_number | string | |
| header_id | string | |
| order_amount | number | |
| order_status | string |
Retrieve item master data from Oracle ERP
| Field | Type | Default | Description |
|---|---|---|---|
| item_class | text | Filter by item class | |
| organization_id | text | Filter by inventory organization | |
| enabled_flag | select | Y |
| Name | Type | Description |
|---|---|---|
| items | array | |
| item_count | number |
Create a new item in Oracle ERP
| Field | Type | Default | Description |
|---|---|---|---|
| item_number | text | Unique item number | |
| description | text | Item description | |
| item_type | select | STANDARD | |
| primary_uom | text | Primary unit of measure (e.g., Each, Kg) | |
| item_class | text | Item classification |
| Name | Type | Description |
|---|---|---|
| inventory_item_id | string | |
| item_number | string | |
| description | string |
Retrieve AR invoices from Oracle ERP
| Field | Type | Default | Description |
|---|---|---|---|
| customer_id | text | Filter by customer party ID | |
| business_unit | text | Filter by business unit | |
| from_date | text | Filter invoices from this date | |
| to_date | text | Filter invoices to this date |
| Name | Type | Description |
|---|---|---|
| invoices | array | |
| invoice_count | number | |
| total_amount | number |
Create a new AR invoice in Oracle ERP
| Field | Type | Default | Description |
|---|---|---|---|
| customer_id | text | Oracle customer party ID | |
| business_unit | text | Business unit for the invoice | |
| transaction_type | text | Invoice | Invoice transaction type |
| invoice_currency | text | USD | Invoice currency code |
| terms | text | Payment terms code |
| Name | Type | Description |
|---|---|---|
| transaction_id | string | |
| transaction_number | string | |
| invoice_amount | number | |
| invoice_status | string |
Retrieve payment records from Oracle ERP
| Field | Type | Default | Description |
|---|---|---|---|
| customer_id | text | Filter by customer party ID | |
| payment_method | text | Filter by payment method code | |
| from_date | text | Filter payments from this date | |
| to_date | text | Filter payments to this date |
| Name | Type | Description |
|---|---|---|
| payments | array | |
| payment_count | number | |
| total_amount | number |
Native advertising and content recommendation platform. Create and manage native ad campaigns, get performance analytics, and discover content recommendations for maximum engagement.
Notes:
Retrieve advertising campaigns from Outbrain Amplify
| Field | Type | Default | Description |
|---|---|---|---|
| enabled | select | Filter campaigns by enabled status | |
| archived | select | Filter campaigns by archived status |
| Name | Type | Description |
|---|---|---|
| campaigns | array | List of native advertising campaigns |
| totalCount | number | Total number of campaigns |
Retrieve promoted links (ads) from campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | Filter by specific campaign ID | |
| enabled | select | Filter links by enabled status | |
| archived | select | Filter links by archived status |
| Name | Type | Description |
|---|---|---|
| promotedLinks | array | List of promoted links (ads) |
| totalCount | number |
Get detailed performance analytics and reports
| Field | Type | Default | Description |
|---|---|---|---|
| startDate | text | Start date (YYYY-MM-DD format) | |
| endDate | text | End date (YYYY-MM-DD format) | |
| breakdown | select | How to break down the report data | |
| metrics | textarea | ["impressions", "clicks", "ctr", "spend", "cpc", "conversions"] | Metrics to include (JSON array) |
| Name | Type | Description |
|---|---|---|
| reportData | array | Performance metrics and analytics data |
| totalSpend | number | Total advertising spend for the period |
| totalImpressions | number | |
| totalClicks | number | |
| averageCtr | number | Average click-through rate |
| totalConversions | number |
Create a new native advertising campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignName | text | Name for the new campaign | |
| budget | number | Campaign budget amount | |
| budgetType | select | Type of budget allocation | |
| cpcBid | number | Cost per click bid amount | |
| suffixTrackingCode | text | UTM or tracking parameters to append |
| Name | Type | Description |
|---|---|---|
| campaignId | string | ID of the created campaign |
| campaignName | string | |
| status | string |
Create a new promoted link (ad) within a campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | ID of the campaign to add promoted link to | |
| linkText | text | Headline/title for the promoted link | |
| url | text | URL where users will be directed when clicking | |
| imageUrl | text | URL of the image for the promoted link | |
| sectionId | text | Target section ID for content placement |
| Name | Type | Description |
|---|---|---|
| promotedLinkId | string | ID of the created promoted link |
| linkText | string | |
| status | string |
Update an existing campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | ID of the campaign to update | |
| updates | textarea | Campaign fields to update (JSON format) |
| Name | Type | Description |
|---|---|---|
| campaignId | string | |
| success | boolean |
Get budget and bid optimization recommendations
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | ID of the campaign for recommendations |
| Name | Type | Description |
|---|---|---|
| recommendations | array | Recommended budget and bid optimizations |
| currentBudget | number | |
| recommendedBudget | number | |
| currentCpc | number | |
| recommendedCpc | number |
Get content recommendations based on performance data
| Field | Type | Default | Description |
|---|---|---|---|
| category | text | Content category to get recommendations for | |
| country | text | US | Two-letter country code (e.g., US, UK, CA) |
| limit | number | 20 | Number of content recommendations to retrieve |
| Name | Type | Description |
|---|---|---|
| contentRecommendations | array | List of recommended content based on performance |
| totalCount | number |
Sales engagement and automation platform with email sequences, call automation, and comprehensive sales analytics
Notes:
Create a new prospect in Outreach
| Field | Type | Default | Description |
|---|---|---|---|
| first_name | text | Prospect's first name | |
| last_name | text | Prospect's last name | |
| text | Primary email address | ||
| company_name | text | Company or organization name | |
| title | text | Professional title or role | |
| phone_number | text | Primary phone number | |
| linkedin_url | text | LinkedIn profile URL |
| Name | Type | Description |
|---|---|---|
| prospect_id | number | |
| string | ||
| full_name | string | |
| created_at | string |
Search for prospects by email or other criteria
| Field | Type | Default | Description |
|---|---|---|---|
| text | Search by email address | ||
| first_name | text | Search by first name | |
| last_name | text | Search by last name | |
| company_name | text | Search by company name | |
| limit | number | 10 | Maximum number of results (1-100) |
| Name | Type | Description |
|---|---|---|
| prospects | array | |
| total_count | number |
Add a prospect to an outreach sequence
| Field | Type | Default | Description |
|---|---|---|---|
| prospect_email | text | Email of the prospect to add to sequence | |
| sequence_id | number | ID of the sequence to add prospect to | |
| mailbox_id | number | Mailbox to send from (optional) |
| Name | Type | Description |
|---|---|---|
| sequence_state_id | number | |
| prospect_id | number | |
| sequence_id | number | |
| state | string |
Get list of available outreach sequences
| Field | Type | Default | Description |
|---|---|---|---|
| active_only | checkbox | 1 | Return only active sequences |
| limit | number | 20 | Maximum number of sequences to return |
| Name | Type | Description |
|---|---|---|
| sequences | array | |
| total_count | number |
Create a new account (company) in Outreach
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the company/account | |
| domain | text | Company website domain | |
| industry | text | Company industry | |
| employee_count | number | Number of employees | |
| phone_number | text | Main company phone number |
| Name | Type | Description |
|---|---|---|
| account_id | number | |
| name | string | |
| domain | string | |
| created_at | string |
Retrieve activity history for a specific prospect
| Field | Type | Default | Description |
|---|---|---|---|
| prospect_email | text | Email of the prospect to get activity for | |
| activity_types | textarea | Filter by activity types (one per line: email, call, task, etc.) | |
| limit | number | 50 | Maximum number of activities to return |
| Name | Type | Description |
|---|---|---|
| activities | array | |
| prospect_info | object | |
| total_activities | number |
Extract company profiles, competitive intelligence, and industry data from Owler.com business directory
Notes:
Extract detailed company information from Owler company URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Owler company URLs to scrape (e.g., https://www.owler.com/company/microsoft) |
| Name | Type | Description |
|---|---|---|
| companies | array | Company profiles with competitive intelligence and industry data |
| count | number | Number of company profiles scraped |
Create, send, and manage professional documents with PandaDoc. Automate proposal generation, contracts, and e-signatures.
Notes:
Create a new document from a template with tokens and recipients
| Field | Type | Default | Description |
|---|---|---|---|
| template_uuid | text | The UUID of the PandaDoc template to use | |
| document_name | text | Name for the new document | |
| recipients | textarea | JSON array of recipients. Example: [{"email":"john@example.com","first_name":"John","last_name":"Doe","role":"Client"}] | |
| tokens | textarea | JSON array of tokens to populate in template. Example: [{"name":"Client.Name","value":"John Doe"}] | |
| pricing_tables | textarea | JSON array of pricing table data | |
| metadata | textarea | Optional metadata as JSON object |
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| status | string | |
| date_created | string | |
| uuid | string | |
| success | boolean |
Send a document to recipients for viewing/signing
| Field | Type | Default | Description |
|---|---|---|---|
| document_id | text | The ID of the document to send | |
| message | textarea | Custom message to include in the email | |
| subject | text | Custom email subject | |
| silent | select | false |
| Name | Type | Description |
|---|---|---|
| id | string | |
| status | string | |
| recipients | array | |
| success | boolean |
Retrieve detailed information about a document
| Field | Type | Default | Description |
|---|---|---|---|
| document_id | text | The ID of the document |
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| status | string | |
| date_created | string | |
| date_modified | string | |
| recipients | array | |
| tokens | array | |
| fields | array | |
| metadata | object | |
| data | object | |
| success | boolean |
Retrieve the audit trail (activity history) for a document
| Field | Type | Default | Description |
|---|---|---|---|
| document_id | text | The ID of the document |
| Name | Type | Description |
|---|---|---|
| events | array | |
| count | number | |
| success | boolean |
Send a reminder to recipients who have not completed the document
| Field | Type | Default | Description |
|---|---|---|---|
| document_id | text | The ID of the document | |
| recipient_id | text | Specific recipient ID to remind. Leave empty for all pending recipients. |
| Name | Type | Description |
|---|---|---|
| status | string | |
| success | boolean |
Get the current status of a document
| Field | Type | Default | Description |
|---|---|---|---|
| document_id | text | The ID of the document |
| Name | Type | Description |
|---|---|---|
| id | string | |
| status | string | |
| name | string | |
| success | boolean |
Get a list of available templates
| Field | Type | Default | Description |
|---|---|---|---|
| count | number | 50 | Maximum number of templates to return (1-100) |
| Name | Type | Description |
|---|---|---|
| templates | array | |
| count | number | |
| success | boolean |
Salesforce B2B marketing automation platform for lead generation, nurturing, and scoring
Notes:
Create or update a prospect in Pardot
| Field | Type | Default | Description |
|---|---|---|---|
| text | Prospect email address | ||
| firstName | text | Prospect first name | |
| lastName | text | Prospect last name | |
| company | text | Prospect company name | |
| customFields | textarea | {} | Additional prospect fields as JSON object |
| Name | Type | Description |
|---|---|---|
| prospectId | number | The Pardot prospect ID |
| status | string | Created or Updated |
Add a prospect to a Pardot list
| Field | Type | Default | Description |
|---|---|---|---|
| listId | text | The ID of the Pardot list | |
| prospectId | text | The Pardot prospect ID to add to the list |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the prospect was added successfully |
| message | string | Success or error message |
Retrieve prospect information by email or ID
| Field | Type | Default | Description |
|---|---|---|---|
| lookupField | select | Field to use for prospect lookup | |
| lookupValue | text | The email address or prospect ID to search for |
| Name | Type | Description |
|---|---|---|
| prospect | object | Complete prospect information from Pardot |
| found | boolean | Whether the prospect was found |
Update the score of a Pardot prospect
| Field | Type | Default | Description |
|---|---|---|---|
| prospectId | text | The Pardot prospect ID | |
| score | number | The new score value |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the score was updated successfully |
| newScore | number | The updated score value |
Get activity history for a prospect
| Field | Type | Default | Description |
|---|---|---|---|
| prospectId | text | The Pardot prospect ID to get activities for | |
| limit | number | 50 | Maximum number of activities to return |
| Name | Type | Description |
|---|---|---|
| activities | array | Array of prospect activities |
| count | number | Number of activities returned |
Retrieve all Pardot lists
| Name | Type | Description |
|---|---|---|
| lists | array | Array of Pardot lists |
| count | number | Number of lists returned |
Content analytics and audience insights with detailed performance tracking and trending content analysis
Notes:
Get the most popular content from your site
| Field | Type | Default | Description |
|---|---|---|---|
| timeFrame | select | 7d | Time period for content analysis |
| metric | select | views | Metric to sort content by |
| limit | number | 10 | Maximum number of content pieces to return |
| Name | Type | Description |
|---|---|---|
| content | array | |
| totalViews | number | |
| totalEngagement | number |
Get detailed audience demographics and behavior data
| Field | Type | Default | Description |
|---|---|---|---|
| period | select | 30d | Time period for audience analysis |
| dimensions | textarea | ["referrer_type", "device_type", "country"] | Array of dimensions to analyze |
| Name | Type | Description |
|---|---|---|
| demographics | object | |
| behavior | object | |
| devices | object | |
| geography | array |
Analyze performance of specific content or categories
| Field | Type | Default | Description |
|---|---|---|---|
| contentUrl | text | Specific article URL to analyze (leave empty for all content) | |
| category | text | Filter by content category/tag | |
| author | text | Filter by author name | |
| timeFrame | select | 30d |
| Name | Type | Description |
|---|---|---|
| performance | object | |
| engagement | object | |
| sharing | object | |
| timeOnPage | number |
Get current real-time visitor and content data
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Maximum number of real-time results |
| Name | Type | Description |
|---|---|---|
| currentVisitors | number | |
| topContent | array | |
| referrers | array | |
| timestamp | string |
Analyze search terms bringing traffic to your content
| Field | Type | Default | Description |
|---|---|---|---|
| timeFrame | select | 30d | |
| searchEngine | select | all |
| Name | Type | Description |
|---|---|---|
| searchTerms | array | |
| searchTraffic | number | |
| organicPercentage | number |
Identify content that is currently trending or gaining momentum
| Field | Type | Default | Description |
|---|---|---|---|
| trendType | select | rising | Type of trending analysis |
| minViews | number | 100 | Minimum view threshold for trending content |
| Name | Type | Description |
|---|---|---|
| trendingContent | array | |
| trendScore | number | |
| growthRate | number |
Partner relationship management platform
Notes:
Retrieve partner list and their information
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | Filter partners by status | |
| tier | select | Filter by partner tier | |
| limit | number | 20 | Number of partners to return (max 100) |
| offset | number | 0 | Number of partners to skip |
| Name | Type | Description |
|---|---|---|
| partners | array | Array of partner data |
| total_partners | number | Total number of partners |
| pagination | object | Pagination information |
Retrieve partner rewards and commission data
| Field | Type | Default | Description |
|---|---|---|---|
| partner_id | text | Filter by specific partner ID | |
| start_date | text | Start date for rewards (YYYY-MM-DD format) | |
| end_date | text | End date for rewards (YYYY-MM-DD format) | |
| status | select | Filter by reward status |
| Name | Type | Description |
|---|---|---|
| rewards | array | Array of reward data |
| total_rewards | number | Total number of rewards |
| total_amount | number | Total reward amount |
Retrieve partner transaction history
| Field | Type | Default | Description |
|---|---|---|---|
| partner_id | text | Filter by specific partner ID | |
| start_date | text | Start date for transactions (YYYY-MM-DD format) | |
| end_date | text | End date for transactions (YYYY-MM-DD format) | |
| transaction_type | select | Filter by transaction type |
| Name | Type | Description |
|---|---|---|
| transactions | array | Array of transaction data |
| total_transactions | number | Total number of transactions |
| total_value | number | Total transaction value |
Invite and create a new partner
| Field | Type | Default | Description |
|---|---|---|---|
| text | Partner email address | ||
| first_name | text | Partner first name | |
| last_name | text | Partner last name | |
| company_name | text | Partner company name | |
| partner_type | select | affiliate | Type of partnership |
| send_invite | select | true | Whether to send invitation email |
| Name | Type | Description |
|---|---|---|
| partner_created | boolean | Whether partner was created successfully |
| partner_id | string | ID of the created partner |
| partner_data | object | Created partner information |
| invite_sent | boolean | Whether invitation email was sent |
Update partner information and status
| Field | Type | Default | Description |
|---|---|---|---|
| partner_id | text | ID of the partner to update | |
| status | select | Update partner status | |
| tier | select | Update partner tier | |
| notes | textarea | Internal notes about the partner |
| Name | Type | Description |
|---|---|---|
| partner_updated | boolean | Whether partner was updated successfully |
| partner_data | object | Updated partner information |
Record a new partner transaction or conversion
| Field | Type | Default | Description |
|---|---|---|---|
| partner_id | text | ID of the partner | |
| transaction_type | select | Type of transaction | |
| amount | number | Transaction value (for sales) | |
| currency | select | USD | Transaction currency |
| customer_id | text | Associated customer identifier | |
| description | text | Transaction description |
| Name | Type | Description |
|---|---|---|
| transaction_recorded | boolean | Whether transaction was recorded successfully |
| transaction_id | string | ID of the recorded transaction |
| reward_amount | number | Calculated reward amount for partner |
Retrieve partner program analytics and metrics
| Field | Type | Default | Description |
|---|---|---|---|
| start_date | text | Analytics start date (YYYY-MM-DD format) | |
| end_date | text | Analytics end date (YYYY-MM-DD format) | |
| partner_id | text | Filter by specific partner ID | |
| group_by | select | day | How to group the analytics data |
| Name | Type | Description |
|---|---|---|
| analytics_data | array | Detailed analytics information |
| summary | object | Summary metrics |
| total_partners | number | Total number of active partners |
| total_transactions | number | Total transactions in period |
| total_revenue | number | Total revenue generated |
| total_rewards | number | Total rewards paid out |
Cross-border payment platform for global businesses
Notes:
Create a new payee account
| Field | Type | Default | Description |
|---|---|---|---|
| payee_id | text | Your unique identifier for the payee | |
| first_name | text | Payee first name | |
| last_name | text | Payee last name | |
| text | Payee email address | ||
| date_of_birth | text | Date of birth (YYYY-MM-DD format) | |
| address | text | Street address | |
| city | text | City | |
| country | text | 2-letter country code (e.g., US, GB) |
| Name | Type | Description |
|---|---|---|
| payee_id | string | The created payee ID |
| status | string | |
| payee_data | object |
Check payee account status
| Field | Type | Default | Description |
|---|---|---|---|
| payee_id | text | Payee ID to check status |
| Name | Type | Description |
|---|---|---|
| payee_id | string | |
| status | string | |
| registration_status | string | |
| payee_data | object |
Send payment to a payee
| Field | Type | Default | Description |
|---|---|---|---|
| program_id | text | Your Payoneer program ID | |
| payment_id | text | Your unique payment identifier | |
| payee_id | text | Recipient payee ID | |
| amount | number | Payment amount | |
| currency | text | USD | 3-letter currency code |
| description | text | Payment description |
| Name | Type | Description |
|---|---|---|
| payment_id | string | |
| status | string | |
| amount | number | |
| currency | string | |
| payment_data | object |
Check status of a payment
| Field | Type | Default | Description |
|---|---|---|---|
| payment_id | text | Payment ID to check status |
| Name | Type | Description |
|---|---|---|
| payment_id | string | |
| status | string | |
| amount | number | |
| currency | string | |
| date_executed | string | |
| payment_data | object |
Retrieve account balance information
| Field | Type | Default | Description |
|---|---|---|---|
| program_id | text | Your Payoneer program ID |
| Name | Type | Description |
|---|---|---|
| balance | number | |
| currency | string | |
| balance_data | object |
Digital payment platform for online transactions and money transfers
Notes:
Create a new PayPal order
| Field | Type | Default | Description |
|---|---|---|---|
| amount | text | Order amount (e.g., 19.99) | |
| currency | select | USD | |
| description | text | Order description | |
| return_url | text | URL to redirect after successful payment | |
| cancel_url | text | URL to redirect after cancelled payment |
| Name | Type | Description |
|---|---|---|
| order | object | The created order object |
| id | string | PayPal order ID |
| status | string | |
| approval_url | string | URL for customer to approve payment |
Get details of a PayPal order
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | PayPal order ID to retrieve |
| Name | Type | Description |
|---|---|---|
| order | object | Complete order details |
| id | string | |
| status | string | |
| amount | object | Order amount details |
Capture payment for an approved order
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | PayPal order ID to capture |
| Name | Type | Description |
|---|---|---|
| capture | object | Payment capture details |
| id | string | |
| status | string | |
| amount | object |
Create a direct payment (legacy API)
| Field | Type | Default | Description |
|---|---|---|---|
| amount | text | Payment amount (e.g., 19.99) | |
| currency | select | USD | |
| description | text | Payment description | |
| payment_method | select | paypal |
| Name | Type | Description |
|---|---|---|
| payment | object | The created payment object |
| id | string | |
| state | string | |
| approval_url | string |
Get details of a payment
| Field | Type | Default | Description |
|---|---|---|---|
| payment_id | text | PayPal payment ID to retrieve |
| Name | Type | Description |
|---|---|---|
| payment | object | Complete payment details |
| id | string | |
| state | string | |
| amount | object |
Refund a captured payment
| Field | Type | Default | Description |
|---|---|---|---|
| capture_id | text | PayPal capture ID to refund | |
| amount | text | Amount to refund (leave empty for full refund) | |
| currency | text | Currency code (e.g., USD) |
| Name | Type | Description |
|---|---|---|
| refund | object | Refund transaction details |
| id | string | |
| status | string | |
| amount | object |
Secure cloud storage service with file sharing capabilities
Notes:
Upload a file to pCloud
| Name | Type | Required | Description |
|---|---|---|---|
| file_content | file | Yes | The file content to upload |
| Field | Type | Default | Description |
|---|---|---|---|
| folder_path | text | Path to upload folder (e.g., /Documents/MyFolder). Leave empty for root folder. | |
| file_name | text | Name for the uploaded file including extension |
| Name | Type | Description |
|---|---|---|
| file_id | string | Unique identifier of the uploaded file |
| download_url | string | URL to download the file |
| file_size | number | Size of the uploaded file in bytes |
Download a file from pCloud
| Field | Type | Default | Description |
|---|---|---|---|
| file_id | text | ID of the file to download |
| Name | Type | Description |
|---|---|---|
| file_content | binary | The downloaded file content |
| file_name | string | Original name of the file |
| file_size | number | Size of the file in bytes |
List files and folders in pCloud
| Field | Type | Default | Description |
|---|---|---|---|
| folder_path | text | Path to list files from. Leave empty for root folder. | |
| recursive | checkbox | Include files from subfolders |
| Name | Type | Description |
|---|---|---|
| files | array | List of files and folders |
| total_count | number | Total number of items found |
Delete a file from pCloud
| Field | Type | Default | Description |
|---|---|---|---|
| file_id | text | ID of the file to delete |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the file was successfully deleted |
| message | string | Status message |
Create a new folder in pCloud
| Field | Type | Default | Description |
|---|---|---|---|
| folder_name | text | Name of the folder to create | |
| parent_path | text | Path where to create the folder. Leave empty for root. |
| Name | Type | Description |
|---|---|---|
| folder_id | string | ID of the created folder |
| folder_path | string | Full path of the created folder |
Create a public share link for a file
| Field | Type | Default | Description |
|---|---|---|---|
| file_id | text | ID of the file to share | |
| password | password | Optional password protection for the share |
| Name | Type | Description |
|---|---|---|
| share_url | string | Public URL to access the file |
| share_id | string | ID of the created share |
Generate professional PDF documents from templates with dynamic data. Create invoices, reports, contracts, and more with PDFMonkey.
Notes:
Generate a PDF document from a template with dynamic data
| Field | Type | Default | Description |
|---|---|---|---|
| templateId | text | The UUID of your PDFMonkey template | |
| payload | code_editor | {} | JSON object with the data to populate your template variables |
| meta | code_editor | {} | Optional metadata to attach to the document |
| waitForCompletion | checkbox | 1 | Wait for the PDF to be fully generated before continuing (recommended) |
| Name | Type | Description |
|---|---|---|
| documentId | string | The unique identifier of the generated document |
| status | string | Current status of the document (draft, pending, generating, success, failure) |
| downloadUrl | string | Direct URL to download the generated PDF (available for 30 days) |
| previewUrl | string | URL to preview the PDF in browser |
| filename | string | The filename of the generated PDF |
Retrieve details and download URL of a generated document
| Field | Type | Default | Description |
|---|---|---|---|
| documentId | text | The UUID of the document to retrieve |
| Name | Type | Description |
|---|---|---|
| documentId | string | The document identifier |
| status | string | Current status of the document |
| downloadUrl | string | Direct URL to download the PDF |
| previewUrl | string | URL to preview the PDF |
| filename | string | The filename of the PDF |
| payload | object | The data used to generate this document |
| generationLogs | array | Logs from the PDF generation process |
Get a list of your PDF templates
| Field | Type | Default | Description |
|---|---|---|---|
| workspaceId | text | Your PDFMonkey workspace ID |
| Name | Type | Description |
|---|---|---|
| templates | array | Array of template objects with id, identifier, and name |
| count | number | Number of templates returned |
Delete a generated document
| Field | Type | Default | Description |
|---|---|---|---|
| documentId | text | The UUID of the document to delete |
| Name | Type | Description |
|---|---|---|
| deleted | boolean | Whether the document was successfully deleted |
Extract AI-powered search results and answers from Perplexity.ai with source citations
Notes:
Search Perplexity AI for answers to any prompt or question
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | text | The question or topic you want to search for (e.g., "automation", "AI trends 2025") | |
| country | select | Country context for search results (optional) | |
| index | number | 1 | Index of the result to fetch (optional, default: 1) |
| Name | Type | Description |
|---|---|---|
| results | array | AI-generated answers with sources and related questions |
| count | number | Number of results returned |
Search Perplexity AI Places tab for location-based queries
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | text | Location-based query (e.g., "The best pizza in New York", "Hotels near Times Square") |
| Name | Type | Description |
|---|---|---|
| places | array | Location-based search results with place information |
| count | number | Number of places found |
Free stock photos and videos with high-quality content for commercial and personal use
Notes:
Search for photos on Pexels by query
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Keywords to search for (e.g., "nature", "business", "technology") | |
| per_page | number | 15 | Number of photos to return (max 80) |
| page | number | 1 | Page number for pagination |
| orientation | select | Filter by photo orientation | |
| size | select | Minimum photo resolution | |
| color | select | Filter by dominant color | |
| locale | select | en-US | Language for search results |
| Name | Type | Description |
|---|---|---|
| photos | array | Array of photo objects with URLs and metadata |
| totalResults | number | Total number of photos available for this query |
| page | number | Current page number |
| perPage | number | Number of photos per page |
| nextPage | string | URL for the next page of results |
Get curated photos from Pexels
| Field | Type | Default | Description |
|---|---|---|---|
| per_page | number | 15 | Number of photos to return (max 80) |
| page | number | 1 | Page number for pagination |
| Name | Type | Description |
|---|---|---|
| photos | array | Array of curated photo objects |
| page | number | Current page number |
| perPage | number | Number of photos per page |
| nextPage | string | URL for the next page of results |
Get detailed information about a specific photo
| Field | Type | Default | Description |
|---|---|---|---|
| photo_id | text | Pexels photo ID or URL |
| Name | Type | Description |
|---|---|---|
| photo | object | Complete photo information |
| id | number | Unique photo identifier |
| photographer | string | Name of the photographer |
| photographerUrl | string | URL to photographer profile |
| url | string | URL to the photo page on Pexels |
| src | object | Different sizes and formats of the photo |
| alt | string | Alternative text description |
| avgColor | string | Average color of the photo in hex |
Search for videos on Pexels by query
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Keywords to search for in videos | |
| per_page | number | 15 | Number of videos to return (max 80) |
| page | number | 1 | Page number for pagination |
| min_width | number | Minimum video width in pixels | |
| min_height | number | Minimum video height in pixels | |
| min_duration | number | Minimum video duration in seconds | |
| max_duration | number | Maximum video duration in seconds | |
| orientation | select | Filter by video orientation | |
| locale | select | en-US | Language for search results |
| Name | Type | Description |
|---|---|---|
| videos | array | Array of video objects with URLs and metadata |
| totalResults | number | Total number of videos available for this query |
| page | number | Current page number |
| perPage | number | Number of videos per page |
| nextPage | string | URL for the next page of results |
Get popular videos from Pexels
| Field | Type | Default | Description |
|---|---|---|---|
| per_page | number | 15 | Number of videos to return (max 80) |
| page | number | 1 | Page number for pagination |
| min_width | number | Minimum video width in pixels | |
| min_height | number | Minimum video height in pixels | |
| min_duration | number | Minimum video duration in seconds | |
| max_duration | number | Maximum video duration in seconds | |
| orientation | select | Filter by video orientation |
| Name | Type | Description |
|---|---|---|
| videos | array | Array of popular video objects |
| page | number | Current page number |
| perPage | number | Number of videos per page |
| nextPage | string | URL for the next page of results |
Get detailed information about a specific video
| Field | Type | Default | Description |
|---|---|---|---|
| video_id | text | Pexels video ID or URL |
| Name | Type | Description |
|---|---|---|
| video | object | Complete video information |
| id | number | Unique video identifier |
| user | object | Information about the video creator |
| url | string | URL to the video page on Pexels |
| duration | number | Video duration in seconds |
| videoFiles | array | Different qualities and formats of the video |
| videoPictures | array | Preview images for the video |
Vector database for building knowledgeable AI applications. Store, search, and manage embeddings at scale.
Notes:
List all indexes in your Pinecone project
| Name | Type | Description |
|---|---|---|
| indexes | array | Array of index objects with name, host, dimension, metric |
| count | number | |
| success | boolean |
Get details about a specific index
| Field | Type | Default | Description |
|---|---|---|---|
| index_name | text | Name of the index to describe |
| Name | Type | Description |
|---|---|---|
| name | string | |
| host | string | Data plane endpoint for this index |
| dimension | number | |
| metric | string | |
| status | object | |
| success | boolean |
Insert or update vectors in an index
| Field | Type | Default | Description |
|---|---|---|---|
| index_name | text | Name of the index | |
| namespace | text | Optional namespace to organize vectors | |
| vectors | textarea | JSON array of vectors. Each vector: {"id": "vec1", "values": [0.1, 0.2, ...], "metadata": {...}} |
| Name | Type | Description |
|---|---|---|
| upsertedCount | number | |
| success | boolean |
Search for similar vectors in an index
| Field | Type | Default | Description |
|---|---|---|---|
| index_name | text | Name of the index to query | |
| namespace | text | Namespace to search in | |
| vector | textarea | Query vector as JSON array of numbers, e.g., [0.1, 0.2, 0.3, ...] | |
| topK | number | 10 | Number of results to return (1-10000) |
| includeMetadata | select | true | |
| includeValues | select | false | |
| filter | textarea | Filter by metadata, e.g., {"genre": {"$eq": "comedy"}} |
| Name | Type | Description |
|---|---|---|
| matches | array | Array of matching vectors with id, score, and optionally values/metadata |
| namespace | string | |
| success | boolean |
Delete vectors from an index by IDs, filter, or delete all in namespace
| Field | Type | Default | Description |
|---|---|---|---|
| index_name | text | Name of the index | |
| namespace | text | Namespace to delete from | |
| deleteMode | select | byIds | |
| ids | textarea | JSON array of vector IDs to delete, e.g., ["id1", "id2"] | |
| filter | textarea | Filter to select vectors to delete |
| Name | Type | Description |
|---|---|---|
| deleted | boolean | |
| success | boolean |
Fetch specific vectors by their IDs
| Field | Type | Default | Description |
|---|---|---|---|
| index_name | text | Name of the index | |
| namespace | text | Namespace to fetch from | |
| ids | textarea | JSON array of vector IDs to fetch, e.g., ["id1", "id2"] |
| Name | Type | Description |
|---|---|---|
| vectors | object | Object with vector ID as key and vector data as value |
| namespace | string | |
| success | boolean |
Generate vector embeddings for text using Pinecone Inference API
| Field | Type | Default | Description |
|---|---|---|---|
| model | select | multilingual-e5-large | |
| text | textarea | Text content to generate embeddings for | |
| inputType | select | passage | Passage for documents being indexed, Query for search queries |
| Name | Type | Description |
|---|---|---|
| embedding | array | The generated embedding vector as array of numbers |
| model | string | |
| success | boolean |
Get statistics about vectors in an index
| Field | Type | Default | Description |
|---|---|---|---|
| index_name | text | Name of the index | |
| filter | textarea | Optional filter to get stats for matching vectors only |
| Name | Type | Description |
|---|---|---|
| dimension | number | |
| indexFullness | number | |
| totalVectorCount | number | |
| namespaces | object | |
| success | boolean |
Visual advertising and promoted pins platform for driving traffic, conversions, and brand awareness
Notes:
Retrieve Pinterest advertising accounts accessible to the authenticated user
| Name | Type | Description |
|---|---|---|
| adAccounts | array | Array of Pinterest advertising account objects |
| totalAccounts | number | Number of ad accounts accessible |
Retrieve campaigns from Pinterest Ads account
| Field | Type | Default | Description |
|---|---|---|---|
| entity_statuses | select | Filter campaigns by status | |
| objective_type | select | Filter by campaign objective |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of campaign objects with details and settings |
| totalCampaigns | number | Total number of campaigns retrieved |
Create a new Pinterest Ads campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_name | text | Name for the new campaign | |
| objective_type | select | Marketing objective for the campaign | |
| daily_spend_cap | number | Daily budget limit in cents (e.g., 1000 = $10.00) | |
| lifetime_spend_cap | number | Total campaign budget in cents | |
| start_time | text | Campaign start time in ISO 8601 format | |
| end_time | text | Campaign end time in ISO 8601 format |
| Name | Type | Description |
|---|---|---|
| campaign | object | Details of the newly created campaign |
| campaignId | string | Unique identifier for the created campaign |
| success | boolean | Whether the campaign was created successfully |
Update an existing Pinterest Ads campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | ID of the campaign to update | |
| campaign_name | text | New name for the campaign | |
| entity_status | select | New campaign status | |
| daily_spend_cap | number | New daily budget limit in cents | |
| lifetime_spend_cap | number | New total budget in cents |
| Name | Type | Description |
|---|---|---|
| campaign | object | Details of the updated campaign |
| success | boolean | Whether the campaign was updated successfully |
Retrieve ad groups from Pinterest Ads campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_ids | text | Comma-separated campaign IDs to filter ad groups | |
| entity_statuses | select | Filter by ad group status |
| Name | Type | Description |
|---|---|---|
| adGroups | array | Array of ad group objects |
| totalAdGroups | number | Total number of ad groups retrieved |
Retrieve ads from Pinterest Ads ad groups
| Field | Type | Default | Description |
|---|---|---|---|
| ad_group_ids | text | Comma-separated ad group IDs to filter ads | |
| entity_statuses | select | Filter by ad status |
| Name | Type | Description |
|---|---|---|
| ads | array | Array of ad objects with creative details |
| totalAds | number | Total number of ads retrieved |
Retrieve performance analytics for Pinterest Ads campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_ids | text | Comma-separated campaign IDs (leave empty for all) | |
| start_date | text | Start date in YYYY-MM-DD format | |
| end_date | text | End date in YYYY-MM-DD format | |
| granularity | select | TOTAL | Time granularity for analytics data |
| columns | text | IMPRESSION_1,CLICKTHROUGH_1,SPEND_IN_MICRO_DOLLAR,ENGAGEMENT_1 | Comma-separated list of metric columns |
| Name | Type | Description |
|---|---|---|
| analytics | array | Array of analytics data for campaigns |
| summary | object | Aggregated performance summary across all campaigns |
Retrieve audience insights and demographics data
| Field | Type | Default | Description |
|---|---|---|---|
| audience_type | select | Type of audience insights to retrieve | |
| audience_insight_type | select | Specific type of insights to retrieve |
| Name | Type | Description |
|---|---|---|
| insights | array | Array of audience demographic and behavior insights |
| totalInsights | number | Number of insight data points retrieved |
Retrieve available targeting options for Pinterest Ads
| Field | Type | Default | Description |
|---|---|---|---|
| targeting_type | select | Type of targeting options to retrieve | |
| query | text | Search term to filter targeting options |
| Name | Type | Description |
|---|---|---|
| targetingOptions | array | Array of available targeting options for the specified type |
| totalOptions | number | Number of targeting options available |
Retrieve conversion events and tracking data
| Field | Type | Default | Description |
|---|---|---|---|
| page_size | number | 25 | Number of conversions to return per page |
| Name | Type | Description |
|---|---|---|
| conversions | array | Array of conversion tracking events |
| totalConversions | number | Total number of conversion events retrieved |
Visual marketing, pin management, and advertising platform
Notes:
Create a new pin on Pinterest
| Field | Type | Default | Description |
|---|---|---|---|
| boardId | text | The ID of the board to pin to | |
| title | text | Title for the pin | |
| description | textarea | Description for the pin | |
| mediaUrl | text | URL of the image to pin | |
| link | text | Website URL this pin links to |
| Name | Type | Description |
|---|---|---|
| pinId | string | |
| pinUrl | string | |
| success | boolean |
Get details of a specific pin
| Field | Type | Default | Description |
|---|---|---|---|
| pinId | text | The ID of the pin to retrieve |
| Name | Type | Description |
|---|---|---|
| pin | object | |
| title | string | |
| description | string | |
| imageUrl | string | |
| success | boolean |
Get list of user's boards
| Field | Type | Default | Description |
|---|---|---|---|
| pageSize | number | 25 | Number of boards to return (max 250) |
| Name | Type | Description |
|---|---|---|
| boards | array | |
| count | number | |
| success | boolean |
Create a new Pinterest board
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name for the new board | |
| description | textarea | Description for the board | |
| privacy | select | PUBLIC | Privacy setting for the board |
| Name | Type | Description |
|---|---|---|
| boardId | string | |
| boardUrl | string | |
| success | boolean |
Get pins from a specific board
| Field | Type | Default | Description |
|---|---|---|---|
| boardId | text | The ID of the board | |
| pageSize | number | 25 | Number of pins to return (max 250) |
| Name | Type | Description |
|---|---|---|
| pins | array | |
| count | number | |
| success | boolean |
Get the authenticated user's profile information
| Name | Type | Description |
|---|---|---|
| profile | object | |
| username | string | |
| accountType | string | |
| followerCount | number | |
| success | boolean |
Get analytics data for a specific pin
| Field | Type | Default | Description |
|---|---|---|---|
| pinId | text | The ID of the pin | |
| startDate | text | Start date in YYYY-MM-DD format | |
| endDate | text | End date in YYYY-MM-DD format |
| Name | Type | Description |
|---|---|---|
| analytics | object | |
| impressions | number | |
| saves | number | |
| pinClicks | number | |
| success | boolean |
Extract pins, boards, user profiles, and images from Pinterest with advanced discovery and filtering
Notes:
Extract pin details from Pinterest post URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Pinterest pin URLs to scrape |
| Name | Type | Description |
|---|---|---|
| posts | array | Pin details with images, descriptions, and engagement metrics |
| count | number | Number of pins scraped |
Find pins using keyword search on Pinterest
| Field | Type | Default | Description |
|---|---|---|---|
| keyword | text | Keyword to search for pins (e.g., "food", "DIY", "fashion") |
| Name | Type | Description |
|---|---|---|
| posts | array | Pins matching the search keyword |
| count | number | Number of pins found |
Find pins from specific Pinterest profile URLs with date filtering
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Pinterest profile URLs to scrape pins from | |
| startDate | text | Filter pins from this date onwards (optional) | |
| endDate | text | Filter pins until this date (optional) |
| Name | Type | Description |
|---|---|---|
| posts | array | Pins from the specified profiles |
| count | number | Number of pins found |
Extract detailed profile information from Pinterest profile URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Pinterest profile URLs to scrape |
| Name | Type | Description |
|---|---|---|
| profiles | array | Profile information with follower counts, boards, and details |
| count | number | Number of profiles scraped |
Find Pinterest profiles using keyword search
| Field | Type | Default | Description |
|---|---|---|---|
| keyword | text | Keyword to search for profiles (e.g., "travel blogger", "food") |
| Name | Type | Description |
|---|---|---|
| profiles | array | Profiles matching the search keyword |
| count | number | Number of profiles found |
Serverless integration platform for developers with code and no-code options
Notes:
Retrieve a list of your Pipedream workflows
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 100 | Maximum number of workflows to retrieve |
| status_filter | select |
| Name | Type | Description |
|---|---|---|
| workflows | array | List of Pipedream workflows |
| count | number | Total number of workflows returned |
Get detailed information about a specific workflow
| Field | Type | Default | Description |
|---|---|---|---|
| workflow_id | text | The unique ID of the workflow |
| Name | Type | Description |
|---|---|---|
| workflow_name | string | Display name of the workflow |
| workflow_status | string | Current status of the workflow |
| created_at | string | When the workflow was created |
| updated_at | string | When the workflow was last updated |
| steps_count | number | Number of steps in the workflow |
Activate or deactivate a Pipedream workflow
| Field | Type | Default | Description |
|---|---|---|---|
| workflow_id | text | The unique ID of the workflow | |
| action | select |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the operation was successful |
| workflow_status | string | The new status of the workflow |
| message | string | Details about the operation |
Retrieve execution events for a specific workflow
| Field | Type | Default | Description |
|---|---|---|---|
| workflow_id | text | The unique ID of the workflow | |
| limit | number | 50 | Maximum number of events to retrieve |
| status_filter | select |
| Name | Type | Description |
|---|---|---|
| events | array | List of workflow execution events |
| count | number | Number of events returned |
Retrieve a list of your Pipedream event sources
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 100 | Maximum number of sources to retrieve |
| Name | Type | Description |
|---|---|---|
| sources | array | List of Pipedream event sources |
| count | number | Number of sources returned |
Create a new webhook event source in Pipedream
| Field | Type | Default | Description |
|---|---|---|---|
| source_name | text | A descriptive name for this webhook source | |
| description | textarea | Optional description for the webhook source |
| Name | Type | Description |
|---|---|---|
| source_id | string | Unique identifier for the created source |
| endpoint_url | string | The webhook URL to send events to |
| success | boolean | Whether the source was created successfully |
Emit a custom event to a Pipedream source
| Field | Type | Default | Description |
|---|---|---|---|
| source_id | text | The ID of the event source | |
| event_data | textarea | The event data to emit as JSON | |
| event_name | text | Optional name for the event |
| Name | Type | Description |
|---|---|---|
| event_id | string | Unique identifier for the emitted event |
| success | boolean | Whether the event was emitted successfully |
| message | string | Details about the operation |
Execute custom Node.js code in Pipedream
| Field | Type | Default | Description |
|---|---|---|---|
| code | code_editor | The Node.js code to execute | |
| timeout | number | 30 | Maximum execution time in seconds |
| async_execution | checkbox | Execute code asynchronously |
| Name | Type | Description |
|---|---|---|
| result | object | The result of the code execution |
| logs | array | Console logs from the execution |
| success | boolean | Whether the code executed successfully |
| execution_time | number | Time taken to execute the code |
Sales-focused CRM with pipeline management, deal tracking, and sales automation
Notes:
Retrieve deals from your Pipedrive pipeline
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | open | |
| sort | select | update_time DESC | |
| limit | number | 100 | Number of deals to retrieve (max 500) |
| Name | Type | Description |
|---|---|---|
| deals | array | |
| total | number |
Get details of a specific deal
| Field | Type | Default | Description |
|---|---|---|---|
| dealId | text | The ID of the deal to retrieve |
| Name | Type | Description |
|---|---|---|
| deal | object | |
| title | string | |
| value | number | |
| status | string |
Create a new deal in Pipedrive
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | The name/title of the deal | |
| value | number | The monetary value of the deal | |
| currency | text | USD | Currency code (e.g., USD, EUR, GBP) |
| personId | text | ID of the person associated with this deal | |
| orgId | text | ID of the organization associated with this deal | |
| stageId | text | ID of the pipeline stage (leave empty for default) |
| Name | Type | Description |
|---|---|---|
| deal | object | |
| id | number | |
| success | boolean |
Update an existing deal in Pipedrive
| Field | Type | Default | Description |
|---|---|---|---|
| dealId | text | The ID of the deal to update | |
| title | text | Updated deal title | |
| value | number | Updated deal value | |
| stageId | text | Move deal to this pipeline stage | |
| status | select |
| Name | Type | Description |
|---|---|---|
| deal | object | |
| success | boolean |
Retrieve contacts/people from Pipedrive
| Field | Type | Default | Description |
|---|---|---|---|
| searchTerm | text | Search by name, email, or phone | |
| sort | select | update_time DESC | |
| limit | number | 100 | Number of persons to retrieve (max 500) |
| Name | Type | Description |
|---|---|---|
| persons | array | |
| total | number |
Create a new contact/person in Pipedrive
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Full name of the person | |
| text | Primary email address | ||
| phone | text | Primary phone number | |
| orgId | text | ID of the organization this person belongs to | |
| visibleTo | select | 3 |
| Name | Type | Description |
|---|---|---|
| person | object | |
| id | number | |
| success | boolean |
Retrieve organizations/companies from Pipedrive
| Field | Type | Default | Description |
|---|---|---|---|
| searchTerm | text | Search by organization name | |
| sort | select | update_time DESC | |
| limit | number | 100 | Number of organizations to retrieve (max 500) |
| Name | Type | Description |
|---|---|---|
| organizations | array | |
| total | number |
Create a new organization/company in Pipedrive
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the organization/company | |
| address | text | Physical address of the organization | |
| visibleTo | select | 3 |
| Name | Type | Description |
|---|---|---|
| organization | object | |
| id | number | |
| success | boolean |
Retrieve activities (calls, meetings, etc.) from Pipedrive
| Field | Type | Default | Description |
|---|---|---|---|
| type | select | ||
| done | select | ||
| limit | number | 100 | Number of activities to retrieve (max 500) |
| Name | Type | Description |
|---|---|---|
| activities | array | |
| total | number |
Create a new activity in Pipedrive
| Field | Type | Default | Description |
|---|---|---|---|
| subject | text | Subject/title of the activity | |
| type | select | call | |
| dueDate | text | Due date in YYYY-MM-DD format | |
| dueTime | text | Due time in HH:MM format (24-hour) | |
| dealId | text | ID of the deal this activity is related to | |
| personId | text | ID of the person this activity is related to | |
| orgId | text | ID of the organization this activity is related to | |
| note | textarea | Additional notes for the activity |
| Name | Type | Description |
|---|---|---|
| activity | object | |
| id | number | |
| success | boolean |
Retrieve leads from Pipedrive
| Field | Type | Default | Description |
|---|---|---|---|
| archived | select | false | |
| limit | number | 100 | Number of leads to retrieve (max 500) |
| Name | Type | Description |
|---|---|---|
| leads | array | |
| total | number |
Create a new lead in Pipedrive
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | Title/name of the lead | |
| personId | text | ID of the person associated with this lead | |
| orgId | text | ID of the organization associated with this lead | |
| value | number | Expected monetary value of the lead | |
| expectedCloseDate | text | Expected close date in YYYY-MM-DD format |
| Name | Type | Description |
|---|---|---|
| lead | object | |
| id | string | |
| success | boolean |
Get all sales pipelines and their stages
| Name | Type | Description |
|---|---|---|
| pipelines | array | |
| total | number |
People search and identity resolution platform with deep web data mining and comprehensive person intelligence
Notes:
Search for detailed person information using various identifiers
| Field | Type | Default | Description |
|---|---|---|---|
| text | Email address to search for | ||
| phone | text | Phone number to search for (international format) | |
| first_name | text | Person's first name | |
| last_name | text | Person's last name | |
| middle_name | text | Person's middle name or initial | |
| city | text | City where person lives or lived | |
| state | text | State or province | |
| country | text | Country (2-letter ISO code) | |
| username | text | Social media or online username | |
| age | number | Approximate age of person | |
| minimum_probability | number | 0.5 | Minimum match probability (0.0-1.0, default: 0.5) |
| minimum_match | number | 0.7 | Minimum match score (0.0-1.0, default: 0.7) |
| Name | Type | Description |
|---|---|---|
| person | object | Comprehensive person profile and identity information |
| possible_persons | array | Additional possible matches with lower confidence |
| search_id | string | Unique identifier for this search |
| match_requirements | object | Information about search criteria and matches |
Search for multiple people in a single batch request
| Field | Type | Default | Description |
|---|---|---|---|
| queries | textarea | [{"email": "john@example.com"}, {"first_name": "Jane", "last_name": "Smith", "city": "New York"}] | Array of search objects with person identifiers |
| minimum_probability | number | 0.5 | Minimum match probability for all searches (0.0-1.0) |
| webhook_url | text | Webhook URL to receive results (for async processing) |
| Name | Type | Description |
|---|---|---|
| bulk_id | string | Unique identifier for the bulk search job |
| status | string | Status of the bulk search: pending, processing, completed |
| total_queries | number | Total number of search queries submitted |
| estimated_completion | string | Estimated completion time for bulk search |
Search for person information using social profile URLs
| Field | Type | Default | Description |
|---|---|---|---|
| url | text | Social profile URL (LinkedIn, Facebook, Twitter, etc.) | |
| minimum_probability | number | 0.5 | Minimum match probability (0.0-1.0, default: 0.5) |
| Name | Type | Description |
|---|---|---|
| person | object | Person profile derived from URL analysis |
| url_data | object | Information extracted from the profile URL |
| confidence_score | number | Confidence score for the URL-based match |
Generate thumbnail image for a person profile
| Field | Type | Default | Description |
|---|---|---|---|
| search_id | text | Search ID from previous person search | |
| text | Email address to generate thumbnail for | ||
| width | number | 200 | Thumbnail width in pixels (default: 200) |
| height | number | 200 | Thumbnail height in pixels (default: 200) |
| favicon | checkbox | 1 | Include social network favicons |
| Name | Type | Description |
|---|---|---|
| thumbnail_url | string | URL of the generated thumbnail image |
| image_data | string | Base64 encoded image data |
| width | number | Actual width of generated thumbnail |
| height | number | Actual height of generated thumbnail |
Get additional search suggestions and data sources
| Field | Type | Default | Description |
|---|---|---|---|
| search_pointer_id | text | Search pointer ID from previous search result |
| Name | Type | Description |
|---|---|---|
| additional_sources | array | Additional data sources and search suggestions |
| suggested_searches | array | Suggested search queries for better results |
| search_pointer_id | string | The search pointer that was queried |
Verify if two person profiles refer to the same individual
| Field | Type | Default | Description |
|---|---|---|---|
| person1 | textarea | {"email": "john@example.com", "first_name": "John", "last_name": "Doe"} | First person's identifying information |
| person2 | textarea | {"phone": "+1-555-123-4567", "first_name": "John", "last_name": "Doe"} | Second person's identifying information |
| Name | Type | Description |
|---|---|---|
| is_match | boolean | Whether the two profiles refer to the same person |
| match_probability | number | Probability that profiles match (0.0-1.0) |
| matching_fields | array | Fields that contributed to the match decision |
| confidence_factors | object | Detailed confidence analysis |
Voice and SMS communication platform with global carrier connectivity
Notes:
Send SMS messages via Plivo
| Field | Type | Default | Description |
|---|---|---|---|
| text | textarea | SMS message content | |
| dst | text | Recipient phone number with country code (e.g., 1234567890) | |
| src | text | Sender phone number or ID | |
| type | select | sms | Type of message to send |
| media_urls | textarea | URLs of media files for MMS (one per line) |
| Name | Type | Description |
|---|---|---|
| message_uuid | string | Unique identifier for the sent message |
| api_id | string | API request identifier |
| success | boolean | Whether the SMS was sent successfully |
Make voice calls via Plivo
| Field | Type | Default | Description |
|---|---|---|---|
| to | text | Recipient phone number with country code | |
| from | text | Your Plivo phone number | |
| answer_url | text | Webhook URL that returns XML for call flow | |
| hangup_url | text | Webhook URL for call end events (optional) | |
| machine_detection | select | false | Enable answering machine detection |
| Name | Type | Description |
|---|---|---|
| call_uuid | string | Unique identifier for the call |
| api_id | string | API request identifier |
| success | boolean | Whether the call was initiated successfully |
Make a call and speak text using TTS
| Field | Type | Default | Description |
|---|---|---|---|
| to | text | Recipient phone number with country code | |
| from | text | Your Plivo phone number | |
| text | textarea | Text to be converted to speech | |
| voice | select | WOMAN | Voice for text-to-speech |
| language | select | en-US | Language for text-to-speech |
| Name | Type | Description |
|---|---|---|
| call_uuid | string | Unique identifier for the call |
| api_id | string | API request identifier |
| success | boolean | Whether the call was initiated successfully |
Get Plivo account information and balance
| Name | Type | Description |
|---|---|---|
| name | string | Account name |
| cash_credits | string | Available cash credits |
| postpaid | boolean | Whether account is postpaid |
| success | boolean | Whether the account info was retrieved successfully |
Check the delivery status of a message
| Field | Type | Default | Description |
|---|---|---|---|
| message_uuid | text | UUID of the message to check status for |
| Name | Type | Description |
|---|---|---|
| message_state | string | Current state of the message |
| total_rate | string | Cost of the message |
| message_time | string | When the message was sent |
| success | boolean | Whether the status check was successful |
Messaging and review management platform
Notes:
Send a text message to a customer
| Field | Type | Default | Description |
|---|---|---|---|
| phone_number | text | Customer phone number (with country code) | |
| message | textarea | Message text to send | |
| location_uid | text | Specific location UID (optional) |
| Name | Type | Description |
|---|---|---|
| message_sent | boolean | Whether message was sent successfully |
| message_uid | string | Unique message identifier |
| conversation_uid | string | Conversation identifier |
Get list of customer conversations
| Field | Type | Default | Description |
|---|---|---|---|
| page | number | 1 | Page number to retrieve |
| limit | number | 20 | Number of conversations to return (max 100) |
| status | select | Filter by conversation status | |
| location_uid | text | Filter by specific location |
| Name | Type | Description |
|---|---|---|
| conversations | array | Array of conversation data |
| total_count | number | Total number of conversations |
Get messages from a specific conversation
| Field | Type | Default | Description |
|---|---|---|---|
| conversation_uid | text | Unique conversation identifier | |
| page | number | 1 | Page number to retrieve |
| limit | number | 50 | Number of messages to return (max 100) |
| Name | Type | Description |
|---|---|---|
| messages | array | Array of message data |
| conversation_info | object | Conversation metadata |
Send review invitation to a customer
| Field | Type | Default | Description |
|---|---|---|---|
| phone_number | text | Customer phone number (with country code) | |
| customer_name | text | Customer full name | |
| template_uid | text | Review invitation template UID | |
| location_uid | text | Specific location UID |
| Name | Type | Description |
|---|---|---|
| invite_sent | boolean | Whether invitation was sent successfully |
| invite_uid | string | Unique invitation identifier |
Get reviews managed by Podium
| Field | Type | Default | Description |
|---|---|---|---|
| page | number | 1 | Page number to retrieve |
| limit | number | 20 | Number of reviews to return (max 100) |
| location_uid | text | Filter by specific location | |
| rating_filter | select | Filter by rating range |
| Name | Type | Description |
|---|---|---|
| reviews | array | Array of review data |
| total_count | number | Total number of reviews |
| average_rating | number | Average star rating |
Get list of business locations
| Field | Type | Default | Description |
|---|---|---|---|
| active_only | checkbox | 1 | Only return active locations |
| Name | Type | Description |
|---|---|---|
| locations | array | Array of business locations |
| total_count | number | Total number of locations |
Connect to Port.io internal developer portal to access AI agents with full software catalog context. Query services, repos, documentation, dependencies, and more.
Notes:
Invoke Port AI with access to your software catalog context
| Field | Type | Default | Description |
|---|---|---|---|
| userPrompt | textarea | The prompt to send to Port AI. It will have access to your software catalog. | |
| systemPrompt | textarea | You are a helpful assistant | System instructions for the AI |
| tools | text | ["^(list|get|search|track|describe)_.*"] | JSON array of regex patterns to filter available tools (e.g., ["^list_.*", "^get_.*"]) |
| provider | select | port | The AI provider to use |
| model | text | gpt-4o | The model to use (e.g., gpt-4o, gpt-5, claude-sonnet-4-20250514) |
| waitForResult | select | true | Whether to wait for the AI response or return immediately with invocation ID |
| maxWaitSeconds | number | 120 | Maximum time to wait for AI response (only if Wait for Result is Yes) |
| Name | Type | Description |
|---|---|---|
| invocationIdentifier | string | Unique identifier for the invocation |
| status | string | Status of the invocation (pending, completed, failed) |
| result | object | The AI response result object |
| message | string | The AI generated message/response |
Retrieve the result of a previous AI invocation
| Field | Type | Default | Description |
|---|---|---|---|
| invocationId | text | The invocation identifier returned from a previous AI invocation | |
| waitForCompletion | select | true | Whether to poll until the invocation completes |
| maxWaitSeconds | number | 120 | Maximum time to wait for completion |
| Name | Type | Description |
|---|---|---|
| status | string | Status of the invocation |
| result | object | The complete result object |
| message | string | The AI generated message/response |
Invoke a specific Port AI agent by identifier
| Field | Type | Default | Description |
|---|---|---|---|
| agentIdentifier | text | The identifier of the Port AI agent to invoke | |
| prompt | textarea | The prompt to send to the agent | |
| context | textarea | Additional context to provide to the agent as JSON | |
| waitForResult | select | true | Whether to wait for the AI response |
| Name | Type | Description |
|---|---|---|
| invocationIdentifier | string | Unique identifier for the invocation |
| status | string | Status of the invocation |
| result | object | The AI response result object |
| message | string | The AI generated message/response |
Connect to PostgreSQL databases to query and manage data
Notes:
Execute a raw SQL query (SELECT, INSERT, UPDATE, DELETE)
| Field | Type | Default | Description |
|---|---|---|---|
| query | textarea | The SQL query to execute. Use parameterized values with [[nodes.x.field]] syntax. |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the query executed successfully |
| rows | array | Array of rows returned by the query (for SELECT statements) |
| rowCount | number | Number of rows returned or affected |
| lastInsertId | string | The ID of the last inserted row (for INSERT with RETURNING) |
Insert a single row into a table
| Field | Type | Default | Description |
|---|---|---|---|
| table | text | The table to insert into (e.g., users or schema.table_name) | |
| data | textarea | JSON object with column names as keys. Example: {"name": "John", "email": "john@example.com"} | |
| returningColumn | text | Column to return after insert (usually "id"). Leave empty to skip. |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the insert succeeded |
| lastInsertId | string | The ID of the inserted row (if RETURNING used) |
| rowCount | number | Number of rows inserted (should be 1) |
Insert multiple rows into a table in a single operation
| Field | Type | Default | Description |
|---|---|---|---|
| table | text | The table to insert into | |
| data | textarea | JSON array of objects. Example: [{"name": "John"}, {"name": "Jane"}] |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether all inserts succeeded |
| rowCount | number | Total number of rows inserted |
Update rows in a table matching a WHERE condition
| Field | Type | Default | Description |
|---|---|---|---|
| table | text | The table to update | |
| data | textarea | JSON object with columns to update. Example: {"status": "active", "updated_at": "NOW()"} | |
| where | textarea | SQL WHERE condition (without the WHERE keyword). Example: id = 123 AND status = 'pending' |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the update succeeded |
| rowCount | number | Number of rows affected by the update |
Delete rows from a table matching a WHERE condition
| Field | Type | Default | Description |
|---|---|---|---|
| table | text | The table to delete from | |
| where | textarea | SQL WHERE condition (required to prevent accidental full table delete). Example: id = 123 |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the delete succeeded |
| rowCount | number | Number of rows deleted |
Social media scheduling and management platform. Post to TikTok, X, LinkedIn, Instagram, and 27+ platforms.
Notes:
Get all connected social media channels from your Postiz account
| Name | Type | Description |
|---|---|---|
| integrations | array | Array of connected social media channels with id, name, identifier, picture, profile |
| success | boolean |
Upload a media file (image or video) from URL for use in posts
| Field | Type | Default | Description |
|---|---|---|---|
| url | text | URL of the media file to upload (image or video) |
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the uploaded file |
| path | string | URL path to access the uploaded file |
| name | string | |
| success | boolean |
Create and schedule a post to one or more social media channels
| Field | Type | Default | Description |
|---|---|---|---|
| integration_id | text | The Postiz integration/channel ID to post to (from List Connected Channels) | |
| content | textarea | The text content of your post | |
| post_type | select | now | |
| schedule_date | text | Required for scheduled posts. Format: 2024-12-25T10:00:00Z | |
| media_id | text | ID of uploaded media file (from Upload Media File node) | |
| media_path | text | Path of uploaded media file (from Upload Media File node) | |
| platform | select | x | The social media platform (used for platform-specific settings) |
| short_link | checkbox | 1 | Shorten URLs in the post content |
| Name | Type | Description |
|---|---|---|
| post_id | string | ID of the created post |
| integration | string | Channel the post was created on |
| success | boolean |
Retrieve posts within a date range
| Field | Type | Default | Description |
|---|---|---|---|
| start_date | text | Start of date range. Format: 2024-12-01T00:00:00Z | |
| end_date | text | End of date range. Format: 2024-12-31T23:59:59Z |
| Name | Type | Description |
|---|---|---|
| posts | array | Array of posts with id, content, publishDate, state, integration |
| success | boolean |
Delete a scheduled or published post
| Field | Type | Default | Description |
|---|---|---|---|
| post_id | text | ID of the post to delete |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string |
Get the next available time slot for posting to a specific channel
| Field | Type | Default | Description |
|---|---|---|---|
| channel_id | text | The Postiz integration/channel ID |
| Name | Type | Description |
|---|---|---|
| next_slot | string | ISO 8601 timestamp of next available posting time |
| success | boolean |
Modern workflow orchestration platform with Python-based task definitions
Notes:
Retrieve a list of flows in your Prefect workspace
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 100 | Maximum number of flows to retrieve |
| Name | Type | Description |
|---|---|---|
| flows | array | List of Prefect flows |
| count | number | Total number of flows returned |
Get detailed information about a specific flow
| Field | Type | Default | Description |
|---|---|---|---|
| flow_id | text | The unique ID of the flow |
| Name | Type | Description |
|---|---|---|
| flow_name | string | Display name of the flow |
| created | string | When the flow was created |
| updated | string | When the flow was last updated |
| tags | array | Tags associated with the flow |
Retrieve a list of deployments in your workspace
| Field | Type | Default | Description |
|---|---|---|---|
| flow_id | text | Filter by specific flow ID (optional) | |
| limit | number | 100 | Maximum number of deployments to retrieve |
| Name | Type | Description |
|---|---|---|
| deployments | array | List of Prefect deployments |
| count | number | Total number of deployments returned |
Create and optionally start a new flow run
| Field | Type | Default | Description |
|---|---|---|---|
| deployment_id | text | The unique ID of the deployment to run | |
| flow_run_name | text | Custom name for the flow run (optional) | |
| parameters | textarea | {} | Parameters to pass to the flow as JSON |
| tags | text | Comma-separated tags for the flow run |
| Name | Type | Description |
|---|---|---|
| flow_run_id | string | Unique identifier for the created flow run |
| flow_run_name | string | Name of the created flow run |
| state | string | Initial state of the flow run |
| success | boolean | Whether the flow run was created successfully |
Retrieve flow run history and status
| Field | Type | Default | Description |
|---|---|---|---|
| flow_id | text | Filter by specific flow ID (optional) | |
| deployment_id | text | Filter by specific deployment ID (optional) | |
| state_filter | select | ||
| limit | number | 50 | Maximum number of flow runs to retrieve |
| Name | Type | Description |
|---|---|---|
| flow_runs | array | List of flow run records |
| count | number | Number of flow runs returned |
Get detailed information about a specific flow run
| Field | Type | Default | Description |
|---|---|---|---|
| flow_run_id | text | The unique ID of the flow run |
| Name | Type | Description |
|---|---|---|
| flow_run_name | string | Name of the flow run |
| state_name | string | Current state of the flow run |
| start_time | string | When the flow run started |
| end_time | string | When the flow run ended |
| total_run_time | number | Total execution time in seconds |
Cancel a running or scheduled flow run
| Field | Type | Default | Description |
|---|---|---|---|
| flow_run_id | text | The unique ID of the flow run to cancel |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the cancellation was successful |
| state | string | The new state of the flow run |
| message | string | Details about the operation |
Retrieve a list of work pools in your workspace
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 100 | Maximum number of work pools to retrieve |
| Name | Type | Description |
|---|---|---|
| work_pools | array | List of work pools |
| count | number | Number of work pools returned |
Open-source e-commerce solution for creating and managing online stores
Notes:
Retrieve products from your PrestaShop store
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Number of products to retrieve |
| active | select | 1 |
| Name | Type | Description |
|---|---|---|
| products | array | Array of product objects |
| total | number | Total number of products found |
Get a specific product by ID
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | number | The ID of the product to retrieve |
| Name | Type | Description |
|---|---|---|
| product | object | Complete product details |
| id | number | |
| name | string | |
| price | string | |
| reference | string |
Create a new product in your PrestaShop store
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | The name of the product | |
| reference | text | Product reference/SKU | |
| price | text | Product price (e.g., 19.99) | |
| description | textarea | Product description | |
| weight | text | Product weight for shipping | |
| active | checkbox | 1 | Make product active |
| Name | Type | Description |
|---|---|---|
| product | object | The created product object |
| id | number | ID of the created product |
Update an existing product
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | number | ID of the product to update | |
| name | text | New product name | |
| price | text | New price | |
| active | select |
| Name | Type | Description |
|---|---|---|
| product | object | The updated product object |
| id | number |
Retrieve orders from your PrestaShop store
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Number of orders to retrieve |
| Name | Type | Description |
|---|---|---|
| orders | array | Array of order objects |
| total | number | Total number of orders found |
Get a specific order by ID
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | number | The ID of the order to retrieve |
| Name | Type | Description |
|---|---|---|
| order | object | Complete order details |
| id | number | |
| reference | string | |
| total_paid | string | |
| current_state | number |
Retrieve customers from your PrestaShop store
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Number of customers to retrieve |
| active | select | 1 |
| Name | Type | Description |
|---|---|---|
| customers | array | Array of customer objects |
| total | number | Total number of customers found |
SMS marketing and mass texting platform with automation and analytics
Notes:
Send SMS messages to single or multiple recipients
| Field | Type | Default | Description |
|---|---|---|---|
| message_text | textarea | SMS message content | |
| phone_numbers | textarea | Phone numbers separated by commas (e.g., 1234567890, 0987654321) | |
| sender_id | text | Custom sender ID (optional) | |
| delivery_time | text | Schedule delivery (YYYY-MM-DD HH:MM:SS format, optional) |
| Name | Type | Description |
|---|---|---|
| batch_id | string | Unique identifier for the message batch |
| message_count | number | Number of messages sent |
| cost | number | Total cost of sending messages |
| success | boolean | Whether the SMS was sent successfully |
Send SMS to a contact group
| Field | Type | Default | Description |
|---|---|---|---|
| message_text | textarea | SMS message content | |
| group_id | text | ID of the contact group to send to | |
| sender_id | text | Custom sender ID (optional) |
| Name | Type | Description |
|---|---|---|
| batch_id | string | Unique identifier for the group message batch |
| recipients_count | number | Number of recipients in the group |
| success | boolean | Whether the group message was sent successfully |
Add a contact to your address book
| Field | Type | Default | Description |
|---|---|---|---|
| phone_number | text | Contact phone number (10 digits) | |
| first_name | text | Contact first name | |
| last_name | text | Contact last name | |
| text | Contact email address | ||
| group_id | text | ID of the group to add contact to |
| Name | Type | Description |
|---|---|---|
| contact_id | string | ID of the added contact |
| phone_number | string | Contact phone number |
| success | boolean | Whether the contact was added successfully |
Create a new contact group
| Field | Type | Default | Description |
|---|---|---|---|
| group_name | text | Name for the new group | |
| description | textarea | Description of the group |
| Name | Type | Description |
|---|---|---|
| group_id | string | ID of the created group |
| group_name | string | Name of the created group |
| success | boolean | Whether the group was created successfully |
Get delivery report for a message batch
| Field | Type | Default | Description |
|---|---|---|---|
| batch_id | text | ID of the message batch to get report for |
| Name | Type | Description |
|---|---|---|
| total_sent | number | Total messages sent |
| delivered | number | Messages successfully delivered |
| failed | number | Messages that failed to deliver |
| pending | number | Messages pending delivery |
| delivery_rate | number | Delivery success rate percentage |
| success | boolean | Whether the report was retrieved successfully |
Retrieve all contact groups
| Name | Type | Description |
|---|---|---|
| groups | array | List of contact groups |
| total_count | number | Total number of groups |
| success | boolean | Whether groups were retrieved successfully |
Check account balance and credits
| Name | Type | Description |
|---|---|---|
| balance | number | Current account balance |
| credits_remaining | number | SMS credits remaining |
| success | boolean | Whether balance was retrieved successfully |
Accounting software - Comprehensive business accounting and financial management
Notes:
Get information about the QuickBooks company
| Name | Type | Description |
|---|---|---|
| company_name | string | |
| legal_name | string | |
| address | object | |
| phone | string | |
| string |
Create a new customer in QuickBooks
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Customer or company name | |
| company_name | text | Company name if different from customer name | |
| text | Customer email address | ||
| phone | text | Customer phone number |
| Name | Type | Description |
|---|---|---|
| customer_id | string | |
| name | string | |
| string |
Get all customers from QuickBooks
| Field | Type | Default | Description |
|---|---|---|---|
| active_only | checkbox | 1 | Show only active customers |
| Name | Type | Description |
|---|---|---|
| customers | array | |
| customer_count | number |
Create a new invoice in QuickBooks
| Field | Type | Default | Description |
|---|---|---|---|
| customer_id | text | QuickBooks Customer ID | |
| due_date | text | Invoice due date | |
| memo | textarea | Invoice memo or notes |
| Name | Type | Description |
|---|---|---|
| invoice_id | string | |
| doc_number | string | |
| total_amount | number | |
| balance | number |
Add a line item to an existing invoice
| Field | Type | Default | Description |
|---|---|---|---|
| invoice_id | text | QuickBooks Invoice ID | |
| description | text | Line item description | |
| quantity | number | 1 | Quantity of items |
| unit_price | number | Price per unit |
| Name | Type | Description |
|---|---|---|
| line_id | string | |
| description | string | |
| amount | number |
Get invoices from QuickBooks
| Field | Type | Default | Description |
|---|---|---|---|
| customer_id | text | Filter by specific customer | |
| date_from | text | Filter invoices from this date | |
| date_to | text | Filter invoices to this date |
| Name | Type | Description |
|---|---|---|
| invoices | array | |
| invoice_count | number | |
| total_amount | number |
Record a payment received from a customer
| Field | Type | Default | Description |
|---|---|---|---|
| customer_id | text | Customer making the payment | |
| amount | number | Amount received | |
| payment_method | select | Cash |
| Name | Type | Description |
|---|---|---|
| payment_id | string | |
| amount | number | |
| payment_method | string |
Create a new expense entry
| Field | Type | Default | Description |
|---|---|---|---|
| amount | number | Expense amount | |
| description | text | Expense description | |
| account_ref | text | QuickBooks account ID for the expense | |
| payee_name | text | Who the expense was paid to |
| Name | Type | Description |
|---|---|---|
| expense_id | string | |
| amount | number | |
| description | string |
Get all items (products/services) from QuickBooks
| Field | Type | Default | Description |
|---|---|---|---|
| active_only | checkbox | 1 | Show only active items |
| Name | Type | Description |
|---|---|---|
| items | array | |
| item_count | number |
Question and answer platform advertising. Target audiences based on topics and specific questions, reach knowledge-seekers, and create contextual ads that fit naturally into Q&A discussions.
Global e-commerce marketplace for managing products and sales across multiple countries
Notes:
Search for products on Rakuten Ichiba marketplace
| Field | Type | Default | Description |
|---|---|---|---|
| keyword | text | Keyword to search for products | |
| shop_code | text | Specific shop code to search within | |
| genre_id | text | Product category/genre ID | |
| hits | number | 30 | Number of results to return (max 100) |
| page | number | 1 | Page number for pagination |
| sort | select | standard |
| Name | Type | Description |
|---|---|---|
| items | array | Array of product items |
| count | number | Number of items returned |
| page | number | |
| first | number | |
| last | number |
Get details of a specific Rakuten Ichiba item
| Field | Type | Default | Description |
|---|---|---|---|
| item_code | text | Rakuten item code (format: shopcode:itemcode) |
| Name | Type | Description |
|---|---|---|
| item | object | Complete item information |
| item_name | string | |
| item_price | number | |
| item_url | string | |
| shop_name | string |
Search for hotels and accommodations
| Field | Type | Default | Description |
|---|---|---|---|
| large_class_code | text | Large area classification code | |
| middle_class_code | text | Middle area classification code | |
| checkin_date | text | Check-in date (YYYY-MM-DD) | |
| checkout_date | text | Check-out date (YYYY-MM-DD) | |
| adult_num | number | 1 | Number of adult guests |
| hits | number | 30 | Number of results to return (max 100) |
| Name | Type | Description |
|---|---|---|
| hotels | array | Array of hotel objects |
| count | number | Number of hotels returned |
Search for books on Rakuten Books
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | Search by book title | |
| author | text | Search by author name | |
| publisher | text | Search by publisher name | |
| isbn | text | Search by ISBN | |
| booksGenreId | text | Book genre ID | |
| hits | number | 30 | Number of results to return (max 100) |
| Name | Type | Description |
|---|---|---|
| books | array | Array of book objects |
| count | number | Number of books returned |
Get product rankings from Rakuten
| Field | Type | Default | Description |
|---|---|---|---|
| genre_id | text | Product category/genre ID for ranking | |
| age | select | 30 | |
| sex | select | 0 |
| Name | Type | Description |
|---|---|---|
| ranking_items | array | Array of ranked items |
| title | string | |
| last_build_date | string |
Indian payment gateway for accepting payments, managing orders, and processing refunds
Notes:
Retrieve all payments with optional filtering by date range
| Field | Type | Default | Description |
|---|---|---|---|
| from | text | Unix timestamp in seconds from when payments are to be fetched | |
| to | text | Unix timestamp in seconds till when payments are to be fetched | |
| count | number | 10 | Number of payments to fetch (max 100) |
| skip | number | 0 | Number of records to skip for pagination |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the request was successful |
| count | number | Number of payments returned |
| items | array | Array of payment objects |
Retrieve all orders with optional filtering by date range
| Field | Type | Default | Description |
|---|---|---|---|
| from | text | Unix timestamp in seconds from when orders are to be fetched | |
| to | text | Unix timestamp in seconds till when orders are to be fetched | |
| count | number | 10 | Number of orders to fetch (max 100) |
| skip | number | 0 | Number of records to skip for pagination |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the request was successful |
| count | number | Number of orders returned |
| items | array | Array of order objects |
Retrieve all refunds with optional filtering by date range
| Field | Type | Default | Description |
|---|---|---|---|
| from | text | Unix timestamp in seconds from when refunds are to be fetched | |
| to | text | Unix timestamp in seconds till when refunds are to be fetched | |
| count | number | 10 | Number of refunds to fetch (max 100) |
| skip | number | 0 | Number of records to skip for pagination |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the request was successful |
| count | number | Number of refunds returned |
| items | array | Array of refund objects |
Retrieve details of a specific payment by ID
| Field | Type | Default | Description |
|---|---|---|---|
| payment_id | text | The unique payment ID (e.g., pay_FgR9UMzgmKDJRi) |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the request was successful |
| id | string | Unique payment identifier |
| amount | number | Payment amount in smallest currency unit |
| currency | string | Payment currency code |
| status | string | Payment status (captured, failed, etc.) |
| method | string | Payment method used |
| payment | object | Complete payment details |
Retrieve details of a specific order by ID
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | The unique order ID (e.g., order_DBJOWzybf0sJbb) |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the request was successful |
| id | string | Unique order identifier |
| amount | number | Order amount in smallest currency unit |
| currency | string | Order currency code |
| status | string | Order status (created, attempted, paid) |
| order | object | Complete order details |
Retrieve all payments made for a specific order
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | The unique order ID to fetch payments for |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the request was successful |
| count | number | Number of payments returned |
| items | array | Array of payment objects for this order |
Connect to Reddit for reading and posting content
Notes:
Fetch posts from a specific subreddit
| Field | Type | Default | Description |
|---|---|---|---|
| subreddit | text | Name of the subreddit (without r/) | |
| sort | select | hot | |
| limit | text | 10 | Maximum number of posts to fetch (1-100) |
| Name | Type | Description |
|---|---|---|
| posts | array | Array of Reddit posts |
| success | boolean |
Fetch details of a specific Reddit post
| Field | Type | Default | Description |
|---|---|---|---|
| post_url | text | Reddit post URL or post ID |
| Name | Type | Description |
|---|---|---|
| post | object | Reddit post details |
| success | boolean |
Fetch comments from a Reddit post
| Field | Type | Default | Description |
|---|---|---|---|
| post_id | text | Reddit post ID or full URL | |
| limit | text | 20 | Maximum number of top-level comments (1-100) |
| Name | Type | Description |
|---|---|---|
| comments | array | Array of comments from the post |
| post_title | string | |
| success | boolean |
Submit a new post to a subreddit
| Field | Type | Default | Description |
|---|---|---|---|
| subreddit | text | Target subreddit (without r/) | |
| title | text | Title of your post | |
| content | textarea | Text content or URL (leave empty for title-only post) | |
| kind | select | self |
| Name | Type | Description |
|---|---|---|
| post_id | string | |
| url | string | |
| success | boolean |
Fetch both post details and comments in a single operation
| Field | Type | Default | Description |
|---|---|---|---|
| post_url | text | Reddit post URL or post ID | |
| comment_limit | text | 20 | Maximum number of top-level comments (1-100) |
| Name | Type | Description |
|---|---|---|
| post | object | Complete Reddit post details |
| comments | array | Array of comments from the post |
| comment_count | integer | Total number of comments on the post |
| success | boolean |
Reply to a Reddit post or comment
| Field | Type | Default | Description |
|---|---|---|---|
| parent_id | text | Reddit URL, post ID, or full ID (e.g., https://reddit.com/r/test/comments/abc123 or t3_abc123) | |
| text | textarea | Your comment content |
| Name | Type | Description |
|---|---|---|
| comment_id | string | |
| success | boolean |
Fetch posts saved by the authenticated user
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 25 | Maximum number of saved posts to fetch (1-100) |
| type | select | all |
| Name | Type | Description |
|---|---|---|
| posts | array | Array of saved posts/comments |
| count | number | Number of items returned |
| success | boolean |
Community-based advertising platform. Create targeted campaigns using subreddit communities and interests, track engagement metrics like upvotes and comments, and reach Reddit's unique audience.
Notes:
Retrieve advertising campaigns from Reddit Ads Manager
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | Filter campaigns by status |
| Name | Type | Description |
|---|---|---|
| campaigns | array | List of Reddit advertising campaigns |
| totalCount | number | Total number of campaigns |
Retrieve ad groups from Reddit advertising campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | Filter by specific campaign ID | |
| status | select | Filter ad groups by status |
| Name | Type | Description |
|---|---|---|
| adGroups | array | List of ad groups |
| totalCount | number |
Retrieve promoted posts (ads) from Reddit campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| adGroupId | text | Filter by specific ad group ID | |
| status | select | Filter promoted posts by status |
| Name | Type | Description |
|---|---|---|
| promotedPosts | array | List of promoted posts (ads) |
| totalCount | number |
Get advertising performance reports and analytics
| Field | Type | Default | Description |
|---|---|---|---|
| reportType | select | Type of report to generate | |
| startDate | text | Start date (YYYY-MM-DD format) | |
| endDate | text | End date (YYYY-MM-DD format) | |
| metrics | textarea | ["impressions", "clicks", "ctr", "spend", "cpm", "upvotes", "downvotes", "comments"] | Metrics to include (JSON array) |
| Name | Type | Description |
|---|---|---|
| reportData | array | Performance metrics and analytics data |
| totalSpend | number | Total advertising spend for the period |
| totalImpressions | number | |
| totalClicks | number | |
| totalUpvotes | number | Total upvotes received on promoted posts |
| totalComments | number | Total comments on promoted posts |
Create a new Reddit advertising campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignName | text | Name for the new campaign | |
| objective | select | Campaign objective | |
| dailyBudget | number | Daily budget for the campaign in USD | |
| startDate | text | Campaign start date (YYYY-MM-DD) | |
| endDate | text | Campaign end date (YYYY-MM-DD) |
| Name | Type | Description |
|---|---|---|
| campaignId | string | ID of the created campaign |
| campaignName | string | |
| status | string |
Create a new ad group within a campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | ID of the campaign to create ad group in | |
| adGroupName | text | Name for the new ad group | |
| bidStrategy | select | Bidding strategy for the ad group | |
| bidAmount | number | Bid amount (required for manual bidding) | |
| subreddits | textarea | Subreddits to target (JSON array, e.g., ["technology", "programming"]) |
| Name | Type | Description |
|---|---|---|
| adGroupId | string | ID of the created ad group |
| adGroupName | string | |
| status | string |
Create a new promoted post (ad) within an ad group
| Field | Type | Default | Description |
|---|---|---|---|
| adGroupId | text | ID of the ad group to create promoted post in | |
| postTitle | text | Title for the promoted post | |
| postText | textarea | Text content for the promoted post | |
| destinationUrl | text | URL where users will be directed when clicking | |
| mediaUrl | text | URL of image or video for the promoted post | |
| postType | select | Type of promoted post |
| Name | Type | Description |
|---|---|---|
| promotedPostId | string | ID of the created promoted post |
| postTitle | string | |
| status | string |
Update an existing campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | ID of the campaign to update | |
| updates | textarea | Campaign fields to update (JSON format) |
| Name | Type | Description |
|---|---|---|
| campaignId | string | |
| success | boolean |
Search and discover subreddits for targeting
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Search term to find relevant subreddits | |
| category | text | Category to filter subreddits | |
| minSubscribers | number | Minimum number of subscribers for targeting |
| Name | Type | Description |
|---|---|---|
| subreddits | array | List of available subreddits for targeting |
| totalCount | number |
Get available interest categories for audience targeting
| Field | Type | Default | Description |
|---|---|---|---|
| parentCategory | text | Parent interest category to get subcategories |
| Name | Type | Description |
|---|---|---|
| interests | array | List of available interest categories |
| totalCount | number |
Pay per result unlimited Reddit web scraper to crawl posts, comments, communities, and users without login. Comprehens ive Reddit data extraction with advanced filtering and search capabilities.
Notes:
Execute Reddit scraper and return dataset items directly
| Field | Type | Default | Description |
|---|---|---|---|
| startUrls | textarea | Direct Reddit URLs to scrape (one per line). Leave empty to use search terms below. | |
| searches | textarea | Search queries for Reddit content (one per line). Used when Start URLs are empty. | |
| searchPosts | checkbox | 1 | Include posts in search results |
| searchComments | checkbox | Include comments in search results | |
| searchCommunities | checkbox | Include communities/subreddits in search results | |
| searchUsers | checkbox | Include user profiles in search results | |
| sort | select | new | Sort search results by relevance, popularity, or recency |
| time | select | Filter posts by time period | |
| includeNSFW | checkbox | 1 | Include or exclude NSFW (Not Safe For Work) content |
| maxItems | number | 10 | Maximum total number of items to save in dataset |
| maxPostCount | number | 10 | Maximum posts to scrape per page or community |
| maxComments | number | 10 | Maximum comments to scrape per page (set to 0 to skip comments) |
| skipComments | checkbox | Skip scraping comments when going through posts | |
| skipUserPosts | checkbox | Skip scraping user posts when going through user activity | |
| skipCommunity | checkbox | Skip scraping community info but still get community posts | |
| postDateLimit | text | Get only posts after this date (YYYY-MM-DD format) |
| Name | Type | Description |
|---|---|---|
| data | array | Array of scraped Reddit items (posts, comments, communities, users) |
| count | number | Number of items successfully scraped |
| metadata | object | Additional information about the scraping operation |
Start async Reddit scraping run and return run information
| Field | Type | Default | Description |
|---|---|---|---|
| startUrls | textarea | Direct Reddit URLs to scrape (one per line) | |
| searches | textarea | Search queries for Reddit content (one per line) | |
| searchPosts | checkbox | 1 | Include posts in search results |
| searchComments | checkbox | Include comments in search results | |
| searchCommunities | checkbox | Include communities in search results | |
| searchUsers | checkbox | Include user profiles in search results | |
| sort | select | new | Sort search results |
| maxItems | number | 10 | Maximum total items to save |
| Name | Type | Description |
|---|---|---|
| runId | string | Unique identifier for the scraping run |
| status | string | Current status of the scraping run |
| datasetId | string | ID of the dataset where results will be stored |
Execute Reddit scraper and return key-value store output
| Field | Type | Default | Description |
|---|---|---|---|
| startUrls | textarea | Direct Reddit URLs to scrape (one per line) | |
| searches | textarea | Search queries for Reddit content (one per line) | |
| maxItems | number | 10 | Maximum total items to process |
| Name | Type | Description |
|---|---|---|
| output | object | Key-value store output from the Reddit scraper |
| summary | object | Summary information about the scraping operation |
Flexible project management web application with issue tracking and wiki
Notes:
Create a new issue in Redmine
| Field | Type | Default | Description |
|---|---|---|---|
| project_id | text | The ID of the project | |
| subject | text | The subject of the issue | |
| description | textarea | Description of the issue | |
| tracker_id | text | 1 | The tracker ID (default: 1 for Bug) |
| Name | Type | Description |
|---|---|---|
| issue_id | string | The unique ID of the created issue |
Sales automation and email sequence platform with multi-channel outreach, A/B testing, and performance analytics
Notes:
Create a new contact in Reply.io
| Field | Type | Default | Description |
|---|---|---|---|
| text | Contact's email address | ||
| first_name | text | Contact's first name | |
| last_name | text | Contact's last name | |
| company | text | Company name | |
| phone | text | Contact's phone number | |
| title | text | Contact's job title | |
| linkedin_url | text | LinkedIn profile URL |
| Name | Type | Description |
|---|---|---|
| contact_id | number | |
| string | ||
| full_name | string | |
| created_at | string |
Add a contact to an email campaign sequence
| Field | Type | Default | Description |
|---|---|---|---|
| text | Email of the contact to add to campaign | ||
| campaign_id | number | ID of the campaign to add contact to | |
| first_name | text | Contact's first name (if not already in system) | |
| last_name | text | Contact's last name (if not already in system) | |
| company | text | Company name (if not already in system) |
| Name | Type | Description |
|---|---|---|
| contact_id | number | |
| campaign_id | number | |
| status | string |
Get list of available email campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| active_only | checkbox | 1 | Return only active campaigns |
| limit | number | 20 | Maximum number of campaigns to return |
| Name | Type | Description |
|---|---|---|
| campaigns | array | |
| total_count | number |
Retrieve performance statistics for a campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | number | ID of the campaign to get stats for |
| Name | Type | Description |
|---|---|---|
| campaign_id | number | |
| total_contacts | number | |
| emails_sent | number | |
| emails_opened | number | |
| emails_clicked | number | |
| replies_received | number | |
| open_rate | number | |
| click_rate | number | |
| reply_rate | number |
Search for contacts by email or other criteria
| Field | Type | Default | Description |
|---|---|---|---|
| text | Search by email address | ||
| first_name | text | Search by first name | |
| last_name | text | Search by last name | |
| company | text | Search by company name | |
| limit | number | 10 | Maximum number of results (1-100) |
| Name | Type | Description |
|---|---|---|
| contacts | array | |
| total_count | number |
Remove a contact from an active campaign
| Field | Type | Default | Description |
|---|---|---|---|
| text | Email of the contact to remove from campaign | ||
| campaign_id | number | ID of the campaign to remove contact from |
| Name | Type | Description |
|---|---|---|
| contact_id | number | |
| campaign_id | number | |
| status | string |
Retrieve activity history for a contact
| Field | Type | Default | Description |
|---|---|---|---|
| text | Email of the contact to get activity for | ||
| activity_types | textarea | Filter by activity types (one per line: email, click, reply, open) | |
| limit | number | 50 | Maximum number of activities to return |
| Name | Type | Description |
|---|---|---|
| activities | array | |
| contact_info | object | |
| total_activities | number |
Online reputation management platform
Notes:
Get reviews from all connected platforms
| Field | Type | Default | Description |
|---|---|---|---|
| location_id | text | Specific location ID to filter by | |
| page | number | 1 | Page number to retrieve |
| limit | number | 20 | Number of reviews to return (max 100) |
| rating_filter | select | Filter by rating | |
| platform | select | Filter by review platform | |
| date_from | text | Start date (YYYY-MM-DD format) | |
| date_to | text | End date (YYYY-MM-DD format) |
| Name | Type | Description |
|---|---|---|
| reviews | array | Array of review data |
| total_count | number | Total number of reviews |
| average_rating | number | Average star rating |
Send review invitation to a customer
| Field | Type | Default | Description |
|---|---|---|---|
| customer_email | text | Customer email address | |
| customer_name | text | Customer full name | |
| location_id | text | Business location ID | |
| phone | text | Customer phone number | |
| custom_fields | textarea | Additional custom fields as JSON object | |
| template_id | text | Email template ID to use |
| Name | Type | Description |
|---|---|---|
| invite_sent | boolean | Whether invitation was sent successfully |
| invite_id | string | Unique invitation identifier |
Get list of business locations
| Field | Type | Default | Description |
|---|---|---|---|
| active_only | checkbox | 1 | Only return active locations |
| Name | Type | Description |
|---|---|---|
| locations | array | Array of business locations |
| total_count | number | Total number of locations |
Get business listings across platforms
| Field | Type | Default | Description |
|---|---|---|---|
| location_id | text | Specific location ID to filter by | |
| platform | select | Filter by specific platform | |
| status | select | Filter by listing status |
| Name | Type | Description |
|---|---|---|
| listings | array | Array of business listings |
| total_count | number | Total number of listings |
Get reputation analytics and insights
| Field | Type | Default | Description |
|---|---|---|---|
| location_id | text | Specific location ID to analyze | |
| date_from | text | Start date (YYYY-MM-DD format) | |
| date_to | text | End date (YYYY-MM-DD format) | |
| metric | select | overview | Type of analytics to retrieve |
| Name | Type | Description |
|---|---|---|
| analytics | object | Detailed analytics information |
| total_reviews | number | Total number of reviews in period |
| average_rating | number | Average rating in period |
| sentiment_score | number | Overall sentiment score |
Post a response to a customer review
| Field | Type | Default | Description |
|---|---|---|---|
| review_id | text | ID of the review to respond to | |
| response_text | textarea | Your response to the review | |
| author_name | text | Name to display as response author |
| Name | Type | Description |
|---|---|---|
| response_posted | boolean | Whether response was posted successfully |
| response_id | string | ID of the posted response |
Time tracking and productivity analysis - Automatically track time spent on applications and websites
Notes:
Retrieve productivity score and time data for a specific day
| Field | Type | Default | Description |
|---|---|---|---|
| date | text | today | Date to get data for (default: today) |
| Name | Type | Description |
|---|---|---|
| productivity_score | number | |
| total_time | number | |
| productive_time | number | |
| neutral_time | number | |
| distracting_time | number |
Get the most time-consuming activities for a date range
| Field | Type | Default | Description |
|---|---|---|---|
| date_from | text | today | Start date for the range |
| date_to | text | today | End date for the range |
| limit | number | 10 | Number of top activities to return |
| Name | Type | Description |
|---|---|---|
| activities | array | |
| total_time | number |
Get time spent on different productivity categories
| Field | Type | Default | Description |
|---|---|---|---|
| date_from | text | today | Start date for the range |
| date_to | text | today | End date for the range |
| Name | Type | Description |
|---|---|---|
| categories | array | |
| productivity_score | number |
Get comprehensive productivity report for the past week
| Field | Type | Default | Description |
|---|---|---|---|
| weeks_back | number | 0 | Number of weeks back from current week (0 = current week) |
| Name | Type | Description |
|---|---|---|
| week_start | string | |
| week_end | string | |
| total_time | number | |
| avg_productivity_score | number | |
| daily_breakdown | array |
Multi-platform live streaming service to broadcast to multiple destinations
Notes:
Create a new multi-platform stream
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | The title of the stream | |
| description | textarea | Stream description | |
| channels | textarea | [] | JSON array of channel IDs to stream to |
| scheduled_at | text | ISO 8601 format (e.g., 2024-12-25T14:00:00Z). Leave empty for immediate stream. | |
| privacy | select | public | |
| record_stream | checkbox | Record the stream for later use |
| Name | Type | Description |
|---|---|---|
| stream_id | string | |
| stream_key | string | |
| rtmp_url | string | |
| dashboard_url | string | |
| success | boolean |
Retrieve details of a specific stream
| Field | Type | Default | Description |
|---|---|---|---|
| stream_id | text | The unique ID of the stream |
| Name | Type | Description |
|---|---|---|
| title | string | |
| description | string | |
| scheduled_at | string | |
| status | string | |
| channels | array | |
| viewer_count | number | |
| duration | number | |
| success | boolean |
Retrieve list of connected streaming channels
| Field | Type | Default | Description |
|---|---|---|---|
| platform | select |
| Name | Type | Description |
|---|---|---|
| channels | array | |
| total_count | number | |
| success | boolean |
Start a scheduled stream
| Field | Type | Default | Description |
|---|---|---|---|
| stream_id | text | The unique ID of the stream |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| status | string | |
| live_urls | array |
Stop an active stream
| Field | Type | Default | Description |
|---|---|---|---|
| stream_id | text | The unique ID of the stream |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| status | string | |
| recording_urls | array |
Retrieve list of streams
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | ||
| limit | number | 50 | Maximum number of streams to return |
| Name | Type | Description |
|---|---|---|
| streams | array | |
| total_count | number | |
| success | boolean |
Retrieve analytics data for a stream
| Field | Type | Default | Description |
|---|---|---|---|
| stream_id | text | The unique ID of the stream |
| Name | Type | Description |
|---|---|---|
| total_viewers | number | |
| peak_viewers | number | |
| average_watch_time | number | |
| platform_breakdown | array | |
| engagement_metrics | object | |
| success | boolean |
Review collection and management platform
Notes:
Get reviews from Reviews.io
| Field | Type | Default | Description |
|---|---|---|---|
| page | number | 1 | Page number to retrieve |
| per_page | number | 20 | Number of reviews to return (max 100) |
| min_rating | number | Minimum star rating (1-5) | |
| max_rating | number | Maximum star rating (1-5) | |
| date_from | text | Start date (YYYY-MM-DD format) | |
| date_to | text | End date (YYYY-MM-DD format) |
| Name | Type | Description |
|---|---|---|
| reviews | array | Array of reviews |
| total_reviews | number | Total number of reviews |
| average_rating | number | Average star rating |
Get reviews for a specific product
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | Product identifier or SKU | |
| page | number | 1 | Page number to retrieve |
| per_page | number | 20 | Number of reviews to return (max 100) |
| Name | Type | Description |
|---|---|---|
| reviews | array | Array of product reviews |
| total_reviews | number | Total number of product reviews |
| average_rating | number | Average product rating |
Send review invitation to a customer
| Field | Type | Default | Description |
|---|---|---|---|
| text | Customer email address | ||
| name | text | Customer full name | |
| order_id | text | Order reference number | |
| products | textarea | JSON array of products [{\"name\": \"Product\", \"sku\": \"SKU123\"}] | |
| delay_days | number | 0 | Days to delay sending invitation |
| Name | Type | Description |
|---|---|---|
| invitation_sent | boolean | Whether invitation was sent successfully |
| invitation_id | string | Unique invitation identifier |
Get review statistics and metrics
| Field | Type | Default | Description |
|---|---|---|---|
| date_from | text | Start date (YYYY-MM-DD format) | |
| date_to | text | End date (YYYY-MM-DD format) |
| Name | Type | Description |
|---|---|---|
| total_reviews | number | Total number of reviews |
| average_rating | number | Overall average rating |
| rating_breakdown | object | Breakdown by star ratings |
| response_rate | number | Percentage of customers who left reviews |
Review monitoring and management
Notes:
Get reviews from tracked businesses
| Field | Type | Default | Description |
|---|---|---|---|
| business_id | text | Specific business ID to filter by | |
| page | number | 1 | Page number to retrieve |
| per_page | number | 20 | Number of reviews to return (max 100) |
| rating_filter | select | Filter by rating | |
| site | select | Filter by review platform | |
| date_from | text | Start date (YYYY-MM-DD format) | |
| date_to | text | End date (YYYY-MM-DD format) | |
| has_response | select | Filter by response status |
| Name | Type | Description |
|---|---|---|
| reviews | array | Array of review data |
| total_count | number | Total number of reviews |
| average_rating | number | Average star rating |
Get list of tracked businesses
| Field | Type | Default | Description |
|---|---|---|---|
| search | text | Search businesses by name or location | |
| active_only | checkbox | 1 | Only return active businesses |
| Name | Type | Description |
|---|---|---|
| businesses | array | Array of business data |
| total_count | number | Total number of businesses |
Get review alerts and notifications
| Field | Type | Default | Description |
|---|---|---|---|
| business_id | text | Specific business ID to filter by | |
| alert_type | select | Filter by alert type | |
| status | select | Filter by alert status | |
| page | number | 1 | Page number to retrieve |
| per_page | number | 20 | Number of alerts to return (max 100) |
| Name | Type | Description |
|---|---|---|
| alerts | array | Array of alert data |
| total_count | number | Total number of alerts |
Get review analytics and insights
| Field | Type | Default | Description |
|---|---|---|---|
| business_id | text | Specific business ID to analyze | |
| date_from | text | Start date (YYYY-MM-DD format) | |
| date_to | text | End date (YYYY-MM-DD format) | |
| metric | select | overview | Type of analytics to retrieve |
| Name | Type | Description |
|---|---|---|
| analytics | object | Detailed analytics information |
| total_reviews | number | Total number of reviews in period |
| average_rating | number | Average rating in period |
| sentiment_score | number | Overall sentiment score |
Get competitor analysis data
| Field | Type | Default | Description |
|---|---|---|---|
| business_id | text | Business ID to analyze competitors for | |
| include_ratings | checkbox | 1 | Include competitor rating data |
| include_volume | checkbox | 1 | Include review volume data |
| Name | Type | Description |
|---|---|---|
| competitors | array | Array of competitor data |
| total_count | number | Total number of competitors |
Mark an alert as read or resolved
| Field | Type | Default | Description |
|---|---|---|---|
| alert_id | text | ID of the alert to mark | |
| status | select | read | Status to set for the alert |
| Name | Type | Description |
|---|---|---|
| status_updated | boolean | Whether status was updated successfully |
| alert_id | string | ID of the updated alert |
Monitor RSS and XML feeds for new items
Notes:
Triggers when new items appear in an RSS/XML feed
| Field | Type | Default | Description |
|---|---|---|---|
| feed_url | text | URL of the RSS/XML feed to monitor | |
| item_identifier | select | guid | Field used to identify unique items |
| max_items_per_trigger | number | 10 | Maximum new items to process per trigger |
| Name | Type | Description |
|---|---|---|
| events | array | Array of new feed items (each with title, link, description, pubDate, guid) |
| feed_metadata | object | Feed metadata (title, description, etc.) |
Fetch and parse an RSS/Atom feed, returning all items
| Field | Type | Default | Description |
|---|---|---|---|
| feed_url | text | URL of the RSS/Atom feed to fetch | |
| max_items | number | 50 | Maximum number of items to return (default: 50) |
| Name | Type | Description |
|---|---|---|
| items | array | Array of all feed items with title, link, description, pubDate, etc. |
| feed_title | string | Title of the RSS/Atom feed |
| feed_description | string | Description of the RSS/Atom feed |
| feed_link | string | Website link of the feed source |
| item_count | number | Number of items returned |
Business management software - Accounting, payroll, and business management solutions
Notes:
Get list of businesses accessible via the API
| Name | Type | Description |
|---|---|---|
| businesses | array | |
| business_count | number |
Create a new contact (customer/supplier) in Sage
| Field | Type | Default | Description |
|---|---|---|---|
| business_id | text | Sage Business ID | |
| name | text | Name of the contact | |
| contact_type | select | CUSTOMER | |
| text | Contact email address | ||
| telephone | text | Contact telephone number |
| Name | Type | Description |
|---|---|---|
| contact_id | string | |
| name | string | |
| contact_type | string |
Get all contacts from Sage
| Field | Type | Default | Description |
|---|---|---|---|
| business_id | text | Sage Business ID | |
| contact_type | select | Filter by contact type |
| Name | Type | Description |
|---|---|---|
| contacts | array | |
| contact_count | number |
Create a new sales invoice in Sage
| Field | Type | Default | Description |
|---|---|---|---|
| business_id | text | Sage Business ID | |
| contact_id | text | Customer Contact ID | |
| date | text | today | Invoice date |
| due_date | text | Invoice due date | |
| reference | text | Invoice reference |
| Name | Type | Description |
|---|---|---|
| invoice_id | string | |
| invoice_number | string | |
| total_amount | number | |
| status | string |
Add a line item to an existing sales invoice
| Field | Type | Default | Description |
|---|---|---|---|
| business_id | text | Sage Business ID | |
| invoice_id | text | Sales Invoice ID | |
| description | text | Line item description | |
| quantity | number | 1 | Quantity of items |
| unit_price | number | Price per unit |
| Name | Type | Description |
|---|---|---|
| line_item_id | string | |
| description | string | |
| total_amount | number |
Get sales invoices from Sage
| Field | Type | Default | Description |
|---|---|---|---|
| business_id | text | Sage Business ID | |
| contact_id | text | Filter by specific contact | |
| from_date | text | Filter invoices from this date | |
| to_date | text | Filter invoices to this date |
| Name | Type | Description |
|---|---|---|
| invoices | array | |
| invoice_count | number | |
| total_amount | number |
Create a new product/service in Sage
| Field | Type | Default | Description |
|---|---|---|---|
| business_id | text | Sage Business ID | |
| item_code | text | Unique item code | |
| description | text | Product description | |
| sales_price | number | Default sales price | |
| purchase_price | number | Default purchase price |
| Name | Type | Description |
|---|---|---|
| product_id | string | |
| item_code | string | |
| description | string |
Get all products/services from Sage
| Field | Type | Default | Description |
|---|---|---|---|
| business_id | text | Sage Business ID |
| Name | Type | Description |
|---|---|---|
| products | array | |
| product_count | number |
Create a new purchase invoice in Sage
| Field | Type | Default | Description |
|---|---|---|---|
| business_id | text | Sage Business ID | |
| contact_id | text | Supplier Contact ID | |
| date | text | today | Invoice date |
| due_date | text | Invoice due date | |
| supplier_reference | text | Supplier invoice reference |
| Name | Type | Description |
|---|---|---|
| invoice_id | string | |
| invoice_number | string | |
| total_amount | number | |
| status | string |
Modern headless e-commerce platform built with Python and GraphQL
Notes:
Retrieve products from Saleor store
| Field | Type | Default | Description |
|---|---|---|---|
| first | number | 20 | Number of products to retrieve |
| channel | text | Sales channel slug (optional) |
| Name | Type | Description |
|---|---|---|
| products | array | List of products |
| totalCount | number | Total number of products |
Get a specific product by ID
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | The ID of the product to retrieve | |
| channel | text | Sales channel slug (optional) |
| Name | Type | Description |
|---|---|---|
| product | object | Product details |
Create a new product in Saleor
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the product | |
| slug | text | URL slug for the product | |
| description | textarea | Product description (JSON format) | |
| product_type_id | text | ID of the product type | |
| category_id | text | ID of the product category |
| Name | Type | Description |
|---|---|---|
| product | object | Details of the created product |
| errors | array | Any errors that occurred |
| success | boolean | Whether the product was created successfully |
Update an existing product
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | ID of the product to update | |
| name | text | New product name | |
| description | textarea | New product description (JSON format) |
| Name | Type | Description |
|---|---|---|
| product | object | Updated product details |
| errors | array | Any errors that occurred |
| success | boolean | Whether the product was updated successfully |
Retrieve orders from Saleor store
| Field | Type | Default | Description |
|---|---|---|---|
| first | number | 20 | Number of orders to retrieve |
| status | select | Filter by order status |
| Name | Type | Description |
|---|---|---|
| orders | array | List of orders |
| totalCount | number | Total number of orders |
Get a specific order by ID
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | The ID of the order to retrieve |
| Name | Type | Description |
|---|---|---|
| order | object | Order details |
Create a fulfillment for an order
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | ID of the order to fulfill | |
| tracking_number | text | Shipping tracking number | |
| notify_customer | checkbox | 1 | Send notification to customer |
| Name | Type | Description |
|---|---|---|
| fulfillment | object | Created fulfillment details |
| errors | array | Any errors that occurred |
| success | boolean | Whether the fulfillment was created successfully |
Retrieve product categories
| Field | Type | Default | Description |
|---|---|---|---|
| first | number | 20 | Number of categories to retrieve |
| Name | Type | Description |
|---|---|---|
| categories | array | List of categories |
Enterprise CRM platform with leads, contacts, accounts, opportunities, and campaign management
Notes:
Retrieve leads from Salesforce CRM
| Field | Type | Default | Description |
|---|---|---|---|
| text | Optional: Filter by specific email address | ||
| status | select | ||
| limit | number | 20 | Number of leads to retrieve (max 200) |
| Name | Type | Description |
|---|---|---|
| leads | array | Array of lead objects |
| total | number |
Create a new lead in Salesforce CRM
| Field | Type | Default | Description |
|---|---|---|---|
| firstName | text | Lead's first name | |
| lastName | text | Lead's last name | |
| text | Lead's email address | ||
| phone | text | Lead's phone number | |
| company | text | Lead's company name | |
| status | select | Open - Not Contacted |
| Name | Type | Description |
|---|---|---|
| lead | object | |
| leadId | string |
Convert a lead to contact, account, and opportunity
| Field | Type | Default | Description |
|---|---|---|---|
| leadId | text | Salesforce Lead ID to convert | |
| convertedStatus | text | Closed - Converted | Status to set after conversion |
| createOpportunity | select | true |
| Name | Type | Description |
|---|---|---|
| contactId | string | |
| accountId | string | |
| opportunityId | string |
Retrieve contacts from Salesforce CRM
| Field | Type | Default | Description |
|---|---|---|---|
| text | Optional: Filter by specific email address | ||
| accountId | text | Optional: Filter by specific account | |
| limit | number | 20 | Number of contacts to retrieve (max 200) |
| Name | Type | Description |
|---|---|---|
| contacts | array | |
| total | number |
Create a new contact in Salesforce CRM
| Field | Type | Default | Description |
|---|---|---|---|
| firstName | text | Contact's first name | |
| lastName | text | Contact's last name | |
| text | Contact's email address | ||
| phone | text | Contact's phone number | |
| accountId | text | Associated account ID |
| Name | Type | Description |
|---|---|---|
| contact | object | |
| contactId | string |
Retrieve accounts from Salesforce CRM
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Optional: Filter by account name | |
| type | select | ||
| limit | number | 20 | Number of accounts to retrieve (max 200) |
| Name | Type | Description |
|---|---|---|
| accounts | array | |
| total | number |
Create a new account in Salesforce CRM
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Account name | |
| type | select | Prospect | |
| industry | text | Account industry | |
| website | text | Account website URL | |
| phone | text | Account phone number |
| Name | Type | Description |
|---|---|---|
| account | object | |
| accountId | string |
Retrieve opportunities from Salesforce CRM
| Field | Type | Default | Description |
|---|---|---|---|
| stageName | select | ||
| accountId | text | Optional: Filter by specific account | |
| limit | number | 20 | Number of opportunities to retrieve (max 200) |
| Name | Type | Description |
|---|---|---|
| opportunities | array | |
| total | number |
Create a new opportunity in Salesforce CRM
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Opportunity name | |
| accountId | text | Associated account ID | |
| stageName | select | Prospecting | |
| amount | number | Opportunity value | |
| closeDate | text | Expected close date (YYYY-MM-DD format) | |
| probability | number | Win probability (0-100) |
| Name | Type | Description |
|---|---|---|
| opportunity | object | |
| opportunityId | string |
Retrieve marketing campaigns from Salesforce
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | ||
| type | select | ||
| limit | number | 20 | Number of campaigns to retrieve (max 200) |
| Name | Type | Description |
|---|---|---|
| campaigns | array | |
| total | number |
Create a new marketing campaign in Salesforce
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Campaign name | |
| type | select | ||
| status | select | Planned | |
| startDate | text | Campaign start date (YYYY-MM-DD format) | |
| endDate | text | Campaign end date (YYYY-MM-DD format) |
| Name | Type | Description |
|---|---|---|
| campaign | object | |
| campaignId | string |
Execute a custom SOQL query against Salesforce
| Field | Type | Default | Description |
|---|---|---|---|
| query | textarea | The SOQL query to execute (e.g., SELECT Id, Name FROM Opportunity WHERE StageName = 'Prospecting') |
| Name | Type | Description |
|---|---|---|
| records | array | Array of matching records |
| totalSize | number | Total number of records matching the query |
| done | boolean | Whether all records have been retrieved |
Retrieve any Salesforce record by its ID and object type
| Field | Type | Default | Description |
|---|---|---|---|
| objectType | select | The Salesforce object type | |
| recordId | text | The 15 or 18 character Salesforce record ID | |
| fields | text | Comma-separated list of fields to retrieve (leave empty for all accessible fields) |
| Name | Type | Description |
|---|---|---|
| record | object | The retrieved record data |
| Id | string |
Create a new task in Salesforce, optionally linked to a record
| Field | Type | Default | Description |
|---|---|---|---|
| subject | text | Task subject/title | |
| description | textarea | Task description/comments | |
| whatId | text | ID of related record (Opportunity, Account, Campaign, etc.) | |
| whoId | text | ID of related Contact or Lead | |
| ownerId | text | User ID to assign the task to (defaults to current user) | |
| status | select | Not Started | |
| priority | select | Normal | |
| activityDate | text | Task due date (YYYY-MM-DD format) |
| Name | Type | Description |
|---|---|---|
| task | object | |
| taskId | string |
Retrieve a Salesforce user by ID
| Field | Type | Default | Description |
|---|---|---|---|
| sfUserId | text | The Salesforce User ID (e.g., from Opportunity Owner) |
| Name | Type | Description |
|---|---|---|
| user | object | The user record |
| Id | string | |
| Name | string | |
| string | ||
| Username | string |
Retrieve notes attached to a Salesforce record
| Field | Type | Default | Description |
|---|---|---|---|
| parentId | text | ID of the record to get notes for (Opportunity, Account, Contact, etc.) | |
| limit | number | 50 | Maximum number of notes to retrieve |
| Name | Type | Description |
|---|---|---|
| notes | array | Array of note objects |
| total | number |
Sales engagement and cadence management platform with multi-channel outreach, analytics, and conversation intelligence
Notes:
Create a new person in SalesLoft
| Field | Type | Default | Description |
|---|---|---|---|
| first_name | text | Person's first name | |
| last_name | text | Person's last name | |
| email_address | text | Primary email address | |
| title | text | Professional title or role | |
| phone | text | Primary phone number | |
| mobile_phone | text | Mobile phone number | |
| linkedin_url | text | LinkedIn profile URL | |
| company_name | text | Company or organization name |
| Name | Type | Description |
|---|---|---|
| person_id | number | |
| email_address | string | |
| full_name | string | |
| created_at | string |
Search for people by email or other criteria
| Field | Type | Default | Description |
|---|---|---|---|
| email_address | text | Search by email address | |
| first_name | text | Search by first name | |
| last_name | text | Search by last name | |
| company_name | text | Search by company name | |
| limit | number | 10 | Maximum number of results (1-100) |
| Name | Type | Description |
|---|---|---|
| people | array | |
| total_count | number |
Add a person to a SalesLoft cadence
| Field | Type | Default | Description |
|---|---|---|---|
| person_email | text | Email of the person to add to cadence | |
| cadence_id | number | ID of the cadence to add person to | |
| user_id | number | SalesLoft user ID to assign the cadence to |
| Name | Type | Description |
|---|---|---|
| cadence_membership_id | number | |
| person_id | number | |
| cadence_id | number | |
| current_step | number |
Get list of available cadences
| Field | Type | Default | Description |
|---|---|---|---|
| team_cadences | checkbox | Include team-wide cadences (requires admin access) | |
| limit | number | 20 | Maximum number of cadences to return |
| Name | Type | Description |
|---|---|---|
| cadences | array | |
| total_count | number |
Retrieve performance statistics for a cadence
| Field | Type | Default | Description |
|---|---|---|---|
| cadence_id | number | ID of the cadence to get stats for |
| Name | Type | Description |
|---|---|---|
| cadence_id | number | |
| people_count | number | |
| views_count | number | |
| clicks_count | number | |
| replies_count | number | |
| calls_count | number | |
| success_count | number |
Create a new account (company) in SalesLoft
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the company/account | |
| domain | text | Company website domain | |
| industry | text | Company industry | |
| size | text | Company size category | |
| phone | text | Main company phone number |
| Name | Type | Description |
|---|---|---|
| account_id | number | |
| name | string | |
| domain | string | |
| created_at | string |
Retrieve activity history for a specific person
| Field | Type | Default | Description |
|---|---|---|---|
| person_email | text | Email of the person to get activities for | |
| activity_types | textarea | Filter by activity types (one per line: call, email, other) | |
| limit | number | 50 | Maximum number of activities to return |
| Name | Type | Description |
|---|---|---|
| activities | array | |
| person_info | object | |
| total_activities | number |
Structured content platform with real-time collaboration, GROQ queries, and flexible content modeling for modern applications
Notes:
Query documents using GROQ (Graph-Relational Object Queries)
| Field | Type | Default | Description |
|---|---|---|---|
| query | code_editor | GROQ query to fetch documents (e.g., *[_type == "post"]) | |
| params | code_editor | Parameters for the GROQ query as JSON object |
| Name | Type | Description |
|---|---|---|
| documents | array | Array of documents matching the query |
| totalDocuments | number | Number of documents returned |
Retrieve a specific document by its ID
| Field | Type | Default | Description |
|---|---|---|---|
| document_id | text | ID of the document to retrieve |
| Name | Type | Description |
|---|---|---|
| document | object | The requested document with all fields |
| id | string | ID of the document |
| type | string | Type of the document |
| createdAt | string | Document creation timestamp |
| updatedAt | string | Document last update timestamp |
Create a new document in Sanity
| Field | Type | Default | Description |
|---|---|---|---|
| document_type | text | Type of document to create (e.g., post, page) | |
| document_data | code_editor | Document fields as JSON object | |
| document_id | text | Custom ID for the document (auto-generated if empty) |
| Name | Type | Description |
|---|---|---|
| documentId | string | ID of the created document |
| document | object | The complete created document |
| revision | string | Revision ID of the created document |
Update an existing document in Sanity
| Field | Type | Default | Description |
|---|---|---|---|
| document_id | text | ID of the document to update | |
| document_data | code_editor | Updated document fields as JSON object | |
| update_method | select | merge | How to apply the update |
| Name | Type | Description |
|---|---|---|
| documentId | string | ID of the updated document |
| document | object | The complete updated document |
| revision | string | New revision ID of the updated document |
Delete a document from Sanity
| Field | Type | Default | Description |
|---|---|---|---|
| document_id | text | ID of the document to delete |
| Name | Type | Description |
|---|---|---|
| deletedId | string | ID of the deleted document |
| success | boolean | Whether the deletion was successful |
Upload a file asset to Sanity
| Field | Type | Default | Description |
|---|---|---|---|
| file_url | text | URL of the file to upload | |
| filename | text | Name for the uploaded file | |
| asset_type | select | image | Type of asset to upload |
| title | text | Title for the asset | |
| alt_text | text | Alternative text for images |
| Name | Type | Description |
|---|---|---|
| assetId | string | ID of the uploaded asset |
| assetUrl | string | Public URL of the uploaded asset |
| mimeType | string | MIME type of the uploaded asset |
| size | number | Size of the uploaded file in bytes |
Retrieve assets from Sanity using GROQ query
| Field | Type | Default | Description |
|---|---|---|---|
| asset_type | select | all | Filter by asset type |
| limit | number | 50 | Maximum number of assets to retrieve |
| Name | Type | Description |
|---|---|---|
| assets | array | Array of asset documents |
| totalAssets | number | Number of assets returned |
Retrieve schema type definitions from Sanity
| Name | Type | Description |
|---|---|---|
| schemas | array | Array of schema type definitions |
| totalSchemas | number | Number of schema types |
Set up a listener for real-time document updates
| Field | Type | Default | Description |
|---|---|---|---|
| query | code_editor | GROQ query to listen for updates (e.g., *[_type == "post"]) | |
| include_result | select | true | Include the updated document in the response |
| Name | Type | Description |
|---|---|---|
| listenerId | string | ID of the created listener |
| query | string | The GROQ query being listened to |
| success | boolean | Whether the listener was set up successfully |
Enterprise software and services - Complete business process management and analytics
Notes:
Retrieve customer master data from SAP
| Field | Type | Default | Description |
|---|---|---|---|
| customer_group | text | Filter by customer group | |
| sales_organization | text | Filter by sales organization | |
| max_results | number | 100 | Maximum number of customers to retrieve |
| Name | Type | Description |
|---|---|---|
| customers | array | |
| customer_count | number |
Create a new customer master record in SAP
| Field | Type | Default | Description |
|---|---|---|---|
| customer_name | text | Customer name (Name 1) | |
| customer_name2 | text | Additional customer name (Name 2) | |
| customer_group | text | Customer group code | |
| sales_organization | text | Sales organization code | |
| distribution_channel | text | Distribution channel code | |
| division | text | Division code | |
| country | text | Country code (e.g., US, DE) |
| Name | Type | Description |
|---|---|---|
| customer_number | string | |
| customer_name | string | |
| customer_group | string |
Retrieve sales orders from SAP
| Field | Type | Default | Description |
|---|---|---|---|
| customer_number | text | Filter by customer number | |
| sales_organization | text | Filter by sales organization | |
| from_date | text | Filter orders from this date | |
| to_date | text | Filter orders to this date | |
| max_results | number | 100 | Maximum number of orders to retrieve |
| Name | Type | Description |
|---|---|---|
| sales_orders | array | |
| order_count | number | |
| total_value | number |
Create a new sales order in SAP
| Field | Type | Default | Description |
|---|---|---|---|
| customer_number | text | SAP customer number | |
| sales_organization | text | Sales organization code | |
| distribution_channel | text | Distribution channel code | |
| division | text | Division code | |
| order_type | text | OR | Sales order type (e.g., OR, TA) |
| purchase_order_number | text | Customer purchase order number |
| Name | Type | Description |
|---|---|---|
| sales_order_number | string | |
| order_type | string | |
| total_value | number | |
| currency | string |
Retrieve material master data from SAP
| Field | Type | Default | Description |
|---|---|---|---|
| material_type | text | Filter by material type (e.g., FERT, HAWA) | |
| plant | text | Filter by plant code | |
| material_group | text | Filter by material group | |
| max_results | number | 100 | Maximum number of materials to retrieve |
| Name | Type | Description |
|---|---|---|
| materials | array | |
| material_count | number |
Create a new material master record in SAP
| Field | Type | Default | Description |
|---|---|---|---|
| material_description | text | Material description (short text) | |
| material_type | text | Material type (e.g., FERT, HAWA, ROH) | |
| material_group | text | Material group code | |
| base_unit | text | Base unit of measure (e.g., EA, KG, M) | |
| plant | text | Plant code for material creation |
| Name | Type | Description |
|---|---|---|
| material_number | string | |
| material_description | string | |
| material_type | string |
Retrieve financial documents (invoices, credits) from SAP
| Field | Type | Default | Description |
|---|---|---|---|
| company_code | text | SAP company code | |
| document_type | select | Filter by document type | |
| customer_vendor | text | Filter by customer or vendor number | |
| from_date | text | Filter documents from this posting date | |
| to_date | text | Filter documents to this posting date |
| Name | Type | Description |
|---|---|---|
| financial_documents | array | |
| document_count | number | |
| total_amount | number |
Retrieve current inventory levels from SAP
| Field | Type | Default | Description |
|---|---|---|---|
| plant | text | Plant code for inventory query | |
| material_number | text | Specific material number (leave empty for all) | |
| storage_location | text | Filter by storage location | |
| show_zero_stock | select | false |
| Name | Type | Description |
|---|---|---|
| inventory_levels | array | |
| material_count | number |
Customer data platform and analytics orchestration for unified data collection and distribution
Notes:
Send a track event to Segment for analytics
| Field | Type | Default | Description |
|---|---|---|---|
| userId | text | Unique identifier for the user | |
| event | text | Name of the event to track | |
| properties | textarea | {} | Additional properties for the event |
| context | textarea | {} | Context information (device, location, etc.) |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| messageId | string | |
| timestamp | string |
Send an identify call to update user traits
| Field | Type | Default | Description |
|---|---|---|---|
| userId | text | Unique identifier for the user | |
| traits | textarea | {} | User traits to set (name, email, etc.) |
| context | textarea | {} | Context information |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| messageId | string | |
| timestamp | string |
Send a page view event to Segment
| Field | Type | Default | Description |
|---|---|---|---|
| userId | text | Unique identifier for the user | |
| name | text | Name of the page viewed | |
| category | text | Category of the page | |
| properties | textarea | {} | Additional page properties |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| messageId | string | |
| timestamp | string |
Send a screen view event to Segment (mobile)
| Field | Type | Default | Description |
|---|---|---|---|
| userId | text | Unique identifier for the user | |
| name | text | Name of the screen viewed | |
| category | text | Category of the screen | |
| properties | textarea | {} | Additional screen properties |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| messageId | string | |
| timestamp | string |
Associate a user with a group or organization
| Field | Type | Default | Description |
|---|---|---|---|
| userId | text | Unique identifier for the user | |
| groupId | text | Unique identifier for the group | |
| traits | textarea | {} | Group traits (name, plan, etc.) |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| messageId | string | |
| timestamp | string |
Link a new user identity to an existing user
| Field | Type | Default | Description |
|---|---|---|---|
| userId | text | Current user identifier | |
| previousId | text | Previous identifier to link |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| messageId | string | |
| timestamp | string |
Retrieve list of sources in the workspace
| Name | Type | Description |
|---|---|---|
| sources | array | |
| sourceCount | number |
Retrieve list of destinations in the workspace
| Name | Type | Description |
|---|---|---|
| destinations | array | |
| destinationCount | number |
Retrieve list of users in the workspace
| Name | Type | Description |
|---|---|---|
| users | array | |
| userCount | number |
Create a new tracking plan for data governance
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the tracking plan | |
| description | textarea | Description of the tracking plan | |
| rules | textarea | [] | Tracking plan rules and events |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| planId | string | |
| planDetails | object |
SEO and competitive intelligence with keyword analysis, backlink tracking, competitor research, and ranking insights
Notes:
Get comprehensive SEO overview for a domain
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | Domain to analyze (e.g., example.com) | |
| database | select | us | SEMrush database region |
| Name | Type | Description |
|---|---|---|
| organicKeywords | number | |
| organicTraffic | number | |
| organicCost | number | |
| adwordsKeywords | number | |
| adwordsTraffic | number | |
| adwordsBudget | number |
Get organic search keywords for a domain
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | Domain to analyze | |
| database | select | us | |
| limit | number | 100 | Maximum number of keywords to return |
| position | select | all |
| Name | Type | Description |
|---|---|---|
| keywords | array | |
| totalKeywords | number | |
| averagePosition | number |
Get backlink data for a domain
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | Domain to analyze | |
| limit | number | 100 | Maximum number of backlinks to return |
| backlinkType | select | all |
| Name | Type | Description |
|---|---|---|
| backlinks | array | |
| totalBacklinks | number | |
| uniqueDomains | number | |
| averageAuthorityScore | number |
Analyze competitors for a given domain
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | Domain to find competitors for | |
| database | select | us | |
| limit | number | 20 | Maximum number of competitors to return |
| Name | Type | Description |
|---|---|---|
| competitors | array | |
| competitorCount | number | |
| commonKeywords | array |
Analyze keyword difficulty and competition
| Field | Type | Default | Description |
|---|---|---|---|
| keywords | textarea | List of keywords to analyze, one per line | |
| database | select | us |
| Name | Type | Description |
|---|---|---|
| keywordData | array | |
| averageDifficulty | number | |
| totalVolume | number |
Get top performing pages for a domain
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | Domain to analyze | |
| database | select | us | |
| limit | number | 50 | Maximum number of pages to return |
| Name | Type | Description |
|---|---|---|
| pages | array | |
| totalPages | number | |
| totalTraffic | number |
Get keyword suggestions and related terms
| Field | Type | Default | Description |
|---|---|---|---|
| keyword | text | Base keyword to generate ideas from | |
| database | select | us | |
| matchType | select | phrase | |
| limit | number | 100 | Maximum number of keyword ideas |
| Name | Type | Description |
|---|---|---|
| keywordIdeas | array | |
| totalIdeas | number | |
| averageVolume | number |
Cross-platform file sharing service
Notes:
Upload a file and generate a 6-digit share code
| Name | Type | Required | Description |
|---|---|---|---|
| file_content | file | Yes | The file content to send |
| Field | Type | Default | Description |
|---|---|---|---|
| file_name | text | Name for the file including extension |
| Name | Type | Description |
|---|---|---|
| share_key | string | 6-digit code to receive the file |
| share_url | string | URL to receive the file |
| expires_at | string | When the file expires |
| file_size | number | Size of the uploaded file in bytes |
Download a file using a 6-digit share code
| Field | Type | Default | Description |
|---|---|---|---|
| share_key | text | 6-digit code to receive the file |
| Name | Type | Description |
|---|---|---|
| file_content | binary | The downloaded file content |
| file_name | string | Original name of the file |
| file_size | number | Size of the file in bytes |
Get information about a shared file
| Field | Type | Default | Description |
|---|---|---|---|
| share_key | text | 6-digit code of the shared file |
| Name | Type | Description |
|---|---|---|
| file_name | string | Name of the shared file |
| file_size | number | Size of the file in bytes |
| expires_at | string | When the file expires |
| available | boolean | Whether the file is still available for download |
Business text messaging platform for team communication and customer engagement
Notes:
Send SMS messages to contacts
| Field | Type | Default | Description |
|---|---|---|---|
| message | textarea | SMS message content | |
| contacts | textarea | Phone numbers separated by commas (e.g., +1234567890, +0987654321) | |
| from_number | text | Sender phone number (optional, uses default) |
| Name | Type | Description |
|---|---|---|
| message_id | string | Unique identifier for the sent message |
| recipients_count | number | Number of recipients |
| success | boolean | Whether the SMS was sent successfully |
Send SMS to a contact group
| Field | Type | Default | Description |
|---|---|---|---|
| message | textarea | SMS message content | |
| group_id | text | ID of the contact group to send to | |
| from_number | text | Sender phone number (optional, uses default) |
| Name | Type | Description |
|---|---|---|
| message_id | string | Unique identifier for the group message |
| recipients_count | number | Number of recipients in the group |
| success | boolean | Whether the group message was sent successfully |
Create a new contact in SendHub
| Field | Type | Default | Description |
|---|---|---|---|
| phone_number | text | Contact phone number with country code | |
| first_name | text | Contact first name | |
| last_name | text | Contact last name | |
| text | Contact email address | ||
| company | text | Contact company name |
| Name | Type | Description |
|---|---|---|
| contact_id | string | ID of the created contact |
| phone_number | string | Contact phone number |
| full_name | string | Contact full name |
| success | boolean | Whether the contact was created successfully |
Create a new contact group
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name for the new group | |
| description | textarea | Description of the group |
| Name | Type | Description |
|---|---|---|
| group_id | string | ID of the created group |
| group_name | string | Name of the created group |
| success | boolean | Whether the group was created successfully |
Retrieve message history
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 100 | Maximum number of messages to retrieve (default: 100) |
| offset | number | 0 | Number of messages to skip (for pagination) |
| Name | Type | Description |
|---|---|---|
| messages | array | List of messages |
| total_count | number | Total number of messages |
| success | boolean | Whether messages were retrieved successfully |
Retrieve contacts from SendHub
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 100 | Maximum number of contacts to retrieve (default: 100) |
| offset | number | 0 | Number of contacts to skip (for pagination) |
| Name | Type | Description |
|---|---|---|
| contacts | array | List of contacts |
| total_count | number | Total number of contacts |
| success | boolean | Whether contacts were retrieved successfully |
Retrieve contact groups
| Name | Type | Description |
|---|---|---|
| groups | array | List of contact groups |
| count | number | Number of groups |
| success | boolean | Whether groups were retrieved successfully |
Social media management platform for agencies
Notes:
Get list of connected social media services
| Name | Type | Description |
|---|---|---|
| services | array | |
| count | number | |
| success | boolean |
Create and schedule a social media post
| Field | Type | Default | Description |
|---|---|---|---|
| serviceIds | textarea | Social service IDs separated by commas | |
| content | textarea | Content of the social media post | |
| scheduledTime | text | Schedule post for specific time (ISO 8601 format). Leave empty for immediate posting. | |
| mediaUrls | textarea | Image/video URLs separated by commas | |
| linkUrl | text | URL to include in the post | |
| tags | text | Comma-separated tags for organization |
| Name | Type | Description |
|---|---|---|
| postId | string | |
| post | object | |
| status | string | |
| success | boolean |
Get list of scheduled and published posts
| Field | Type | Default | Description |
|---|---|---|---|
| serviceId | text | Filter by specific social service ID | |
| status | select | Filter by post status | |
| startDate | text | Start date in YYYY-MM-DD format | |
| endDate | text | End date in YYYY-MM-DD format | |
| limit | number | 50 | Maximum number of posts to return |
| Name | Type | Description |
|---|---|---|
| posts | array | |
| count | number | |
| success | boolean |
Get details of a specific post
| Field | Type | Default | Description |
|---|---|---|---|
| postId | text | The ID of the post to retrieve |
| Name | Type | Description |
|---|---|---|
| post | object | |
| content | string | |
| status | string | |
| scheduledAt | string | |
| success | boolean |
Update a scheduled or draft post
| Field | Type | Default | Description |
|---|---|---|---|
| postId | text | The ID of the post to update | |
| content | textarea | New content for the post | |
| scheduledTime | text | New scheduled time (ISO 8601 format) | |
| linkUrl | text | New URL to include in the post |
| Name | Type | Description |
|---|---|---|
| post | object | |
| updated | boolean | |
| success | boolean |
Delete a scheduled or draft post
| Field | Type | Default | Description |
|---|---|---|---|
| postId | text | The ID of the post to delete |
| Name | Type | Description |
|---|---|---|
| deleted | boolean | |
| postId | string | |
| success | boolean |
Get analytics data for social media performance
| Field | Type | Default | Description |
|---|---|---|---|
| serviceIds | textarea | Social service IDs separated by commas | |
| startDate | text | Start date in YYYY-MM-DD format | |
| endDate | text | End date in YYYY-MM-DD format | |
| metrics | select | engagement | Type of metrics to retrieve |
| Name | Type | Description |
|---|---|---|
| analytics | object | |
| totalEngagement | number | |
| totalReach | number | |
| totalClicks | number | |
| success | boolean |
Get list of client accounts (for agencies)
| Name | Type | Description |
|---|---|---|
| clients | array | |
| count | number | |
| success | boolean |
Get content queues for automated posting
| Field | Type | Default | Description |
|---|---|---|---|
| serviceId | text | Filter by specific social service ID |
| Name | Type | Description |
|---|---|---|
| queues | array | |
| count | number | |
| success | boolean |
Add a post to a content queue for automated posting
| Field | Type | Default | Description |
|---|---|---|---|
| queueId | text | The ID of the content queue | |
| content | textarea | Content of the social media post | |
| mediaUrls | textarea | Image/video URLs separated by commas | |
| linkUrl | text | URL to include in the post |
| Name | Type | Description |
|---|---|---|
| queuePostId | string | |
| queuePost | object | |
| success | boolean |
Get messages from social media inbox
| Field | Type | Default | Description |
|---|---|---|---|
| serviceId | text | Filter by specific social service ID | |
| status | select | Filter by message status | |
| limit | number | 50 | Maximum number of messages to return |
| Name | Type | Description |
|---|---|---|
| messages | array | |
| count | number | |
| success | boolean |
Email marketing, SMS, chat, CRM automation platform (now Brevo)
Notes:
Send a transactional email through SendinBlue
| Field | Type | Default | Description |
|---|---|---|---|
| to_email | text | Recipient email address | |
| to_name | text | Recipient name (optional) | |
| subject | text | Email subject line | |
| html_content | textarea | HTML email content | |
| text_content | textarea | Plain text email content | |
| sender_name | text | Sender name (optional) | |
| sender_email | text | Sender email address (optional) |
| Name | Type | Description |
|---|---|---|
| message_id | string | Unique identifier for the sent email |
| success | boolean |
Create a new contact in SendinBlue
| Field | Type | Default | Description |
|---|---|---|---|
| text | Contact email address | ||
| first_name | text | Contact first name | |
| last_name | text | Contact last name | |
| phone | text | Contact phone number | |
| list_ids | text | Comma-separated list of list IDs to add contact to |
| Name | Type | Description |
|---|---|---|
| contact_id | number | ID of the created contact |
| success | boolean |
Update an existing contact in SendinBlue
| Field | Type | Default | Description |
|---|---|---|---|
| text | Contact email address to update | ||
| first_name | text | Updated first name | |
| last_name | text | Updated last name | |
| phone | text | Updated phone number |
| Name | Type | Description |
|---|---|---|
| success | boolean |
Retrieve contact information from SendinBlue
| Field | Type | Default | Description |
|---|---|---|---|
| text | Contact email address to retrieve |
| Name | Type | Description |
|---|---|---|
| contact_id | number | |
| string | ||
| first_name | string | |
| last_name | string | |
| phone | string | |
| success | boolean |
Send an SMS message through SendinBlue
| Field | Type | Default | Description |
|---|---|---|---|
| recipient | text | Phone number with country code (e.g., +1234567890) | |
| content | textarea | SMS message content | |
| sender | text | Sender name or phone number |
| Name | Type | Description |
|---|---|---|
| reference | string | Reference ID for the sent SMS |
| success | boolean |
Retrieve all contact lists from SendinBlue
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of lists to retrieve (default: 50) |
| Name | Type | Description |
|---|---|---|
| lists | array | Array of contact lists |
| count | number | |
| success | boolean |
Affiliate marketing network and tracking platform
Notes:
Retrieve available merchants and programs
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | Filter merchants by status | |
| category | text | Filter by merchant category | |
| limit | number | 100 | Number of merchants to return (max 1000) |
| Name | Type | Description |
|---|---|---|
| merchants | array | Array of merchant data |
| total_merchants | number | Total number of merchants |
Retrieve affiliate transactions and commissions
| Field | Type | Default | Description |
|---|---|---|---|
| start_date | text | Start date for transactions (MM/DD/YYYY format) | |
| end_date | text | End date for transactions (MM/DD/YYYY format) | |
| merchant_id | text | Filter by specific merchant ID | |
| status | select | Filter by transaction status |
| Name | Type | Description |
|---|---|---|
| transactions | array | Array of transaction data |
| total_transactions | number | Total number of transactions |
| total_commission | number | Total commission earned |
Generate and retrieve affiliate tracking links
| Field | Type | Default | Description |
|---|---|---|---|
| merchant_id | text | Merchant ID to create links for | |
| product_url | text | Specific product URL to link to | |
| creative_id | text | Specific creative/banner ID |
| Name | Type | Description |
|---|---|---|
| affiliate_link | string | Generated affiliate tracking link |
| short_link | string | Shortened version of affiliate link |
| tracking_id | string | Unique tracking identifier |
Retrieve banners and promotional materials
| Field | Type | Default | Description |
|---|---|---|---|
| merchant_id | text | Merchant ID to get creatives for | |
| creative_type | select | Type of creative material | |
| size | text | Banner size filter (e.g., 728x90) |
| Name | Type | Description |
|---|---|---|
| creatives | array | Array of creative materials |
| total_creatives | number | Total number of creatives |
Retrieve merchant product catalogs
| Field | Type | Default | Description |
|---|---|---|---|
| merchant_id | text | Merchant ID to get products for | |
| search_term | text | Search products by keyword | |
| category | text | Filter by product category | |
| min_price | number | Minimum product price | |
| max_price | number | Maximum product price | |
| limit | number | 50 | Number of products to return (max 500) |
| Name | Type | Description |
|---|---|---|
| products | array | Array of product data |
| total_products | number | Total number of products |
Generate affiliate performance reports
| Field | Type | Default | Description |
|---|---|---|---|
| report_type | select | Type of report to generate | |
| start_date | text | Report start date (MM/DD/YYYY format) | |
| end_date | text | Report end date (MM/DD/YYYY format) | |
| merchant_id | text | Filter by specific merchant ID |
| Name | Type | Description |
|---|---|---|
| report_data | array | Generated report data |
| summary | object | Summary statistics |
| total_clicks | number | Total clicks in report period |
| total_sales | number | Total sales in report period |
| total_commission | number | Total commission earned |
Marketplace platform for building peer-to-peer marketplaces
Notes:
Retrieve listings from Sharetribe marketplace
| Field | Type | Default | Description |
|---|---|---|---|
| per_page | number | 100 | Number of listings per page (max 100) |
| states | select | Filter by listing state | |
| include | text | Comma-separated list of relations to include (e.g., author,images) |
| Name | Type | Description |
|---|---|---|
| listings | array | List of marketplace listings |
| meta | object | Pagination and other metadata |
Get a specific listing by ID
| Field | Type | Default | Description |
|---|---|---|---|
| listing_id | text | The UUID of the listing to retrieve | |
| include | text | Comma-separated list of relations to include |
| Name | Type | Description |
|---|---|---|
| listing | object | Listing details |
Create a new listing in the marketplace
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | Listing title | |
| description | textarea | Listing description | |
| price_amount | number | Price amount in cents | |
| price_currency | text | USD | Currency code (e.g., USD, EUR) |
| author_id | text | UUID of the listing author (user) | |
| state | select | draft | Initial listing state |
| Name | Type | Description |
|---|---|---|
| listing | object | Details of the created listing |
| success | boolean | Whether the listing was created successfully |
Update an existing listing
| Field | Type | Default | Description |
|---|---|---|---|
| listing_id | text | UUID of the listing to update | |
| title | text | New listing title | |
| description | textarea | New listing description | |
| state | select | New listing state |
| Name | Type | Description |
|---|---|---|
| listing | object | Updated listing details |
| success | boolean | Whether the listing was updated successfully |
Retrieve transactions from the marketplace
| Field | Type | Default | Description |
|---|---|---|---|
| per_page | number | 100 | Number of transactions per page (max 100) |
| states | select | Filter by transaction state |
| Name | Type | Description |
|---|---|---|
| transactions | array | List of marketplace transactions |
| meta | object | Pagination and other metadata |
Get a specific transaction by ID
| Field | Type | Default | Description |
|---|---|---|---|
| transaction_id | text | The UUID of the transaction to retrieve | |
| include | text | Comma-separated list of relations to include |
| Name | Type | Description |
|---|---|---|
| transaction | object | Transaction details |
Retrieve users from the marketplace
| Field | Type | Default | Description |
|---|---|---|---|
| per_page | number | 100 | Number of users per page (max 100) |
| include | text | Comma-separated list of relations to include |
| Name | Type | Description |
|---|---|---|
| users | array | List of marketplace users |
| meta | object | Pagination and other metadata |
Get a specific user by ID
| Field | Type | Default | Description |
|---|---|---|---|
| user_id | text | The UUID of the user to retrieve |
| Name | Type | Description |
|---|---|---|
| user | object | User details |
Affordable marketing automation and CRM platform for agencies and businesses
Notes:
Create or update a lead in SharpSpring
| Field | Type | Default | Description |
|---|---|---|---|
| emailAddress | text | Lead email address | |
| firstName | text | Lead first name | |
| lastName | text | Lead last name | |
| companyName | text | Lead company name | |
| phoneNumber | text | Lead phone number | |
| customFields | textarea | {} | Additional lead fields as JSON object |
| Name | Type | Description |
|---|---|---|
| leadId | string | The SharpSpring lead ID |
| status | string | Created or Updated |
Update an existing lead in SharpSpring
| Field | Type | Default | Description |
|---|---|---|---|
| leadId | text | The SharpSpring lead ID to update | |
| updates | textarea | Lead updates as JSON object (e.g., {"firstName": "John", "lastName": "Doe"}) |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the lead was updated successfully |
| message | string | Success or error message |
Retrieve lead information by email or ID
| Field | Type | Default | Description |
|---|---|---|---|
| lookupField | select | Field to use for lead lookup | |
| lookupValue | text | The email address or lead ID to search for |
| Name | Type | Description |
|---|---|---|
| lead | object | Complete lead information from SharpSpring |
| found | boolean | Whether the lead was found |
Retrieve multiple leads based on criteria
| Field | Type | Default | Description |
|---|---|---|---|
| where | textarea | {} | Where conditions as JSON object (e.g., {"companyName": "Acme Corp"}) |
| limit | number | 50 | Maximum number of leads to return |
| Name | Type | Description |
|---|---|---|
| leads | array | Array of leads matching criteria |
| count | number | Number of leads returned |
Create a sales opportunity in SharpSpring
| Field | Type | Default | Description |
|---|---|---|---|
| primaryContactID | text | The lead ID to associate with this opportunity | |
| description | text | Opportunity description | |
| value | number | Opportunity value in dollars | |
| stage | text | Opportunity stage |
| Name | Type | Description |
|---|---|---|
| opportunityId | string | The created opportunity ID |
| success | boolean | Whether the opportunity was created successfully |
Retrieve activities for a lead
| Field | Type | Default | Description |
|---|---|---|---|
| leadId | text | The lead ID to get activities for | |
| limit | number | 50 | Maximum number of activities to return |
| Name | Type | Description |
|---|---|---|
| activities | array | Array of lead activities |
| count | number | Number of activities returned |
Connect to your Shopify store to manage products, orders, customers, and automate e-commerce workflows.
Notes:
Retrieve products from your Shopify store
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of products to retrieve (1-250) |
| status | select | ||
| product_type | text | Filter by product type |
| Name | Type | Description |
|---|---|---|
| products | array | Array of product objects |
| count | number | Number of products returned |
Create a new product in your Shopify store
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | The name of the product | |
| body_html | textarea | The description of the product (HTML allowed) | |
| vendor | text | The name of the vendor of the product | |
| product_type | text | A categorization that a product can be tagged with | |
| price | text | The price of the product variant | |
| inventory_quantity | number | The number of items in stock |
| Name | Type | Description |
|---|---|---|
| product | object | The created product object |
| product_id | string | The ID of the created product |
Update an existing product in your Shopify store
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | The ID of the product to update | |
| title | text | The name of the product | |
| body_html | textarea | The description of the product (HTML allowed) | |
| status | select |
| Name | Type | Description |
|---|---|---|
| product | object | The updated product object |
Retrieve orders from your Shopify store
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of orders to retrieve (1-250) |
| status | select | ||
| financial_status | select |
| Name | Type | Description |
|---|---|---|
| orders | array | Array of order objects |
| count | number | Number of orders returned |
Retrieve a specific order by its ID
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | The ID of the order to retrieve |
| Name | Type | Description |
|---|---|---|
| order | object | The order object |
| order_number | string | The order number |
| total_price | string | The total price of the order |
Retrieve customers from your Shopify store
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of customers to retrieve (1-250) |
| text | Filter customers by email address |
| Name | Type | Description |
|---|---|---|
| customers | array | Array of customer objects |
| count | number | Number of customers returned |
Create a new customer in your Shopify store
| Field | Type | Default | Description |
|---|---|---|---|
| text | The email address of the customer | ||
| first_name | text | The first name of the customer | |
| last_name | text | The last name of the customer | |
| phone | text | The phone number of the customer |
| Name | Type | Description |
|---|---|---|
| customer | object | The created customer object |
| customer_id | string | The ID of the created customer |
Triggered when a new order is created
| Field | Type | Default | Description |
|---|---|---|---|
| webhook_url | text | Use this URL in your Shopify webhook settings |
| Name | Type | Description |
|---|---|---|
| order | object | The created order object |
| order_id | string | The ID of the created order |
| customer_email | string | Email of the customer who placed the order |
Customer review and rating platform
Notes:
Get customer reviews and ratings
| Field | Type | Default | Description |
|---|---|---|---|
| page | number | 1 | Page number to retrieve |
| per_page | number | 20 | Number of reviews to return (max 100) |
| rating_filter | select | Filter by rating | |
| review_type | select | Type of review to retrieve | |
| date_from | text | Start date (YYYY-MM-DD format) | |
| date_to | text | End date (YYYY-MM-DD format) | |
| has_comment | select | Filter by comment presence |
| Name | Type | Description |
|---|---|---|
| reviews | array | Array of review data |
| total_count | number | Total number of reviews |
| average_rating | number | Average star rating |
Get reviews for a specific product
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | Product identifier or SKU | |
| page | number | 1 | Page number to retrieve |
| per_page | number | 20 | Number of reviews to return (max 100) |
| rating_filter | select | Filter by rating |
| Name | Type | Description |
|---|---|---|
| reviews | array | Array of product review data |
| total_count | number | Total number of product reviews |
| average_rating | number | Average product rating |
| product_info | object | Product information |
Send review survey invitation to customer
| Field | Type | Default | Description |
|---|---|---|---|
| customer_email | text | Customer email address | |
| customer_name | text | Customer full name | |
| order_id | text | Order or transaction ID | |
| order_date | text | Order date (YYYY-MM-DD format) | |
| products | textarea | JSON array of products [{"id":"123","name":"Product Name","price":"29.99"}] | |
| delay_days | number | 0 | Days to delay sending invitation |
| survey_type | select | merchant | Type of survey to send |
| Name | Type | Description |
|---|---|---|
| invite_sent | boolean | Whether invitation was sent successfully |
| invite_id | string | Unique invitation identifier |
| survey_url | string | Direct survey URL for customer |
Get review statistics and metrics
| Field | Type | Default | Description |
|---|---|---|---|
| date_from | text | Start date (YYYY-MM-DD format) | |
| date_to | text | End date (YYYY-MM-DD format) | |
| metric_type | select | overview | Type of statistics to retrieve |
| Name | Type | Description |
|---|---|---|
| statistics | object | Detailed statistics information |
| total_reviews | number | Total number of reviews |
| average_rating | number | Overall average rating |
| response_rate | number | Survey response rate percentage |
| satisfaction_score | number | Customer satisfaction score |
Get embeddable widget code for reviews
| Field | Type | Default | Description |
|---|---|---|---|
| widget_type | select | seal | Type of widget to generate |
| max_reviews | number | 5 | Maximum number of reviews to display |
| theme | select | light | Widget theme/style |
| width | number | Widget width in pixels | |
| height | number | Widget height in pixels |
| Name | Type | Description |
|---|---|---|
| widget_code | string | HTML/JavaScript widget code |
| widget_url | string | Direct URL to widget |
| preview_url | string | URL to preview widget |
Get survey responses and completion data
| Field | Type | Default | Description |
|---|---|---|---|
| survey_id | text | Specific survey ID to filter by | |
| status | select | Filter by response status | |
| page | number | 1 | Page number to retrieve |
| per_page | number | 20 | Number of responses to return (max 100) |
| Name | Type | Description |
|---|---|---|
| responses | array | Array of survey response data |
| total_count | number | Total number of responses |
| completion_rate | number | Survey completion rate percentage |
Professional cloud-based video editing and rendering API. Create videos programmatically with transitions, effects, text overlays, and audio mixing.
Notes:
Create a video from timeline configuration with clips, transitions, and effects
| Field | Type | Default | Description |
|---|---|---|---|
| timeline | code_editor | { "tracks": [ { "clips": [ { "asset": { "type": "video", "src": "https:\/\/example.com\/video.mp4" }, "start": 0, "length": 5 } ] } ] } | JSON configuration for video timeline including tracks, clips, and assets |
| output_format | select | mp4 | |
| resolution | select | hd | |
| fps | select | 25 | |
| aspectRatio | select | 16:9 | |
| webhook_url | text | URL to receive render completion notification | |
| upload_to_google_drive | checkbox | Upload rendered video directly to Google Drive | |
| drive_folder_id | text | Folder ID from Google Drive URL. Leave empty for root folder. | |
| drive_filename | text | Custom filename for Google Drive (without extension) | |
| exclude_shotstack_hosting | checkbox | Only upload to Google Drive, skip Shotstack temporary hosting |
| Name | Type | Description |
|---|---|---|
| render_id | string | Unique ID for tracking render status |
| status | string | Initial render status (usually "queued") |
| google_drive_upload | boolean | Whether video will be uploaded to Google Drive |
| success | boolean |
Check the status of a video render and download when complete
| Field | Type | Default | Description |
|---|---|---|---|
| render_id | text | The render ID from a previous render operation | |
| wait_for_completion | checkbox | 1 | Poll until render is complete (max 5 minutes) |
| download_on_complete | checkbox | 1 | Download the video to local storage when rendering is complete |
| Name | Type | Description |
|---|---|---|
| status | string | Current status: queued, fetching, rendering, saving, done, failed |
| url | string | Temporary URL to the rendered video (valid for 24 hours) |
| video_data | binary | Downloaded video file (if download enabled) |
| poster | string | URL to video thumbnail |
| duration | number | Video duration in seconds |
| success | boolean |
Create a video using a predefined template with simple replacements
| Field | Type | Default | Description |
|---|---|---|---|
| template_type | select | ||
| media_urls | textarea | URLs to videos/images (one per line) | |
| text_content | textarea | Text for overlays, titles, or captions (one per line) | |
| duration_per_clip | number | 3 | How long each clip/image should display |
| transition_type | select | fade | |
| background_music_url | text | URL to background music file | |
| output_resolution | select | hd |
| Name | Type | Description |
|---|---|---|
| render_id | string | |
| status | string | |
| success | boolean |
Create a video slideshow from multiple images with transitions
| Field | Type | Default | Description |
|---|---|---|---|
| image_urls | textarea | URLs to images (one per line) | |
| duration_per_image | number | 3 | How long each image displays |
| transition_duration | number | 0.5 | Duration of transitions between images |
| transition_type | select | fade | |
| zoom_effect | checkbox | Add subtle zoom/pan effect to images | |
| background_music_url | text | ||
| output_resolution | select | hd |
| Name | Type | Description |
|---|---|---|
| render_id | string | |
| status | string | |
| success | boolean |
Upload a file from URL to Shotstack storage for reliable access in renders
| Field | Type | Default | Description |
|---|---|---|---|
| source_url | text | URL to the video, audio, or image file to ingest | |
| wait_for_completion | checkbox | 1 | Poll until ingestion is complete (max 5 minutes) |
| Name | Type | Description |
|---|---|---|
| source_id | string | Unique ID for the ingested source |
| status | string | Current status: queued, fetching, ingesting, ready, failed |
| shotstack_url | string | Shotstack-hosted URL for use in renders |
| success | boolean |
Overlay audio track on an existing video
| Field | Type | Default | Description |
|---|---|---|---|
| video_url | text | URL to the source video | |
| audio_url | text | URL to the audio track | |
| audio_volume | number | 1 | Volume level (0 to 1) |
| video_volume | number | 0.5 | Volume of original video audio (0 to 1) |
| audio_start_time | number | 0 | When to start playing the audio |
| fade_in_duration | number | 0 | Audio fade in duration |
| fade_out_duration | number | 0 | Audio fade out duration |
| output_resolution | select | hd |
| Name | Type | Description |
|---|---|---|
| render_id | string | |
| status | string | |
| success | boolean |
SMS marketing platform with automation, scheduling, and contact management
Notes:
Send SMS messages to contacts or phone numbers
| Field | Type | Default | Description |
|---|---|---|---|
| message | textarea | SMS message content | |
| phone | text | Recipient phone number (e.g., 1234567890) | |
| scheduled_date | text | Schedule message (YYYY-MM-DD HH:MM format, optional) |
| Name | Type | Description |
|---|---|---|
| message_id | string | Unique identifier for the sent message |
| status | string | Message sending status |
| success | boolean | Whether the SMS was sent successfully |
Send SMS campaign to a contact list
| Field | Type | Default | Description |
|---|---|---|---|
| message | textarea | Campaign message content | |
| list_id | text | ID of the contact list to send to | |
| name | text | Name for this campaign | |
| scheduled_date | text | Schedule campaign (YYYY-MM-DD HH:MM format, optional) |
| Name | Type | Description |
|---|---|---|
| campaign_id | string | Unique identifier for the campaign |
| status | string | Campaign status |
| recipient_count | number | Number of recipients |
| success | boolean | Whether the campaign was created successfully |
Add a contact to a list
| Field | Type | Default | Description |
|---|---|---|---|
| phone | text | Contact phone number | |
| list_id | text | ID of the contact list to add to | |
| first_name | text | Contact first name | |
| last_name | text | Contact last name | |
| text | Contact email address |
| Name | Type | Description |
|---|---|---|
| contact_id | string | ID of the added contact |
| phone | string | Contact phone number |
| success | boolean | Whether the contact was added successfully |
Create a new contact list
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name for the contact list | |
| description | textarea | Description of the contact list |
| Name | Type | Description |
|---|---|---|
| list_id | string | ID of the created list |
| name | string | Name of the created list |
| success | boolean | Whether the list was created successfully |
Retrieve contacts from a list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | ID of the contact list to retrieve from | |
| limit | number | 100 | Maximum number of contacts to retrieve (default: 100) |
| Name | Type | Description |
|---|---|---|
| contacts | array | List of contacts |
| total_count | number | Total number of contacts in the list |
| success | boolean | Whether the contacts were retrieved successfully |
Get account information and credits
| Name | Type | Description |
|---|---|---|
| credits | number | Available SMS credits |
| phone_number | string | Account phone number |
| company_name | string | Account company name |
| success | boolean | Whether the account info was retrieved successfully |
Send messages, manage channels, and automate workflows in Slack workspaces
Notes:
Triggered when a message is posted in a channel
| Field | Type | Default | Description |
|---|---|---|---|
| webhook_url | text | Configure this URL in your Slack app's Event Subscriptions settings |
| Name | Type | Description |
|---|---|---|
| channel | string | ID of the channel where the message was posted |
| user | string | ID of the user who posted the message |
| text | string | The content of the message |
| ts | string | Unique message timestamp (use as message ID) |
| thread_ts | string | Parent message timestamp if in a thread |
| attachments | array | Message attachments |
| team | string | Workspace ID |
Triggered when your bot is @mentioned in a message
| Field | Type | Default | Description |
|---|---|---|---|
| webhook_url | text | Configure this URL in your Slack app's Event Subscriptions settings |
| Name | Type | Description |
|---|---|---|
| channel | string | ID of the channel where the mention occurred |
| user | string | ID of the user who mentioned the bot |
| text | string | Full message text including the mention |
| ts | string | Message timestamp |
| thread_ts | string | Parent message timestamp if in a thread |
| team | string | Workspace ID |
Triggered when an emoji reaction is added to a message
| Field | Type | Default | Description |
|---|---|---|---|
| webhook_url | text | Configure this URL in your Slack app's Event Subscriptions settings |
| Name | Type | Description |
|---|---|---|
| reaction | string | Name of the emoji reaction (without colons) |
| user | string | ID of the user who added the reaction |
| item_user | string | ID of the user who authored the reacted message |
| item_channel | string | Channel where the reacted message is located |
| item_ts | string | Timestamp of the message that received the reaction |
| team | string | Workspace ID |
Post a message to a Slack channel
| Field | Type | Default | Description |
|---|---|---|---|
| channel | text | Channel ID or name (e.g., #general or C1234567890) | |
| text | textarea | The message to send (supports Slack markdown) | |
| threadTs | text | Reply to a thread by providing the parent message timestamp | |
| blocks | code_editor | Block Kit formatted message (JSON array) |
| Name | Type | Description |
|---|---|---|
| ts | string | Timestamp of the posted message (use as message ID) |
| channel | string | ID of the channel where the message was posted |
| message | object | Complete message object |
Edit an existing message in a Slack channel
| Field | Type | Default | Description |
|---|---|---|---|
| channel | text | Channel ID where the message is located | |
| ts | text | Timestamp of the message to update | |
| text | textarea | The updated message content | |
| blocks | code_editor | Block Kit formatted message (JSON array) |
| Name | Type | Description |
|---|---|---|
| ts | string | Timestamp of the updated message |
| channel | string | ID of the channel |
| text | string | The new message text |
Retrieve a list of channels in the Slack workspace
| Field | Type | Default | Description |
|---|---|---|---|
| types | select | public_channel,private_channel | Types of channels to retrieve |
| limit | number | 100 | Maximum number of channels to retrieve (1-1000) |
| Name | Type | Description |
|---|---|---|
| channels | array | Array of channel objects with id, name, and other properties |
| count | number | Number of channels returned |
Retrieve a list of users in the Slack workspace
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 100 | Maximum number of users to retrieve (1-1000) |
| Name | Type | Description |
|---|---|---|
| users | array | Array of user objects (excluding bots and deleted users) |
| count | number | Number of users returned |
Add an emoji reaction to a message
| Field | Type | Default | Description |
|---|---|---|---|
| channel | text | Channel ID where the message is located | |
| timestamp | text | Timestamp of the message to react to | |
| emojiName | text | Emoji name without colons (e.g., thumbsup, rocket, heart) |
| Name | Type | Description |
|---|---|---|
| ok | boolean | Whether the reaction was added successfully |
| reaction | string | The emoji name that was added |
SMS marketing and automation platform with keyword campaigns and analytics
Notes:
Send SMS messages to subscribers
| Field | Type | Default | Description |
|---|---|---|---|
| message | textarea | SMS message content | |
| textword | text | SlickText textword/keyword to send to | |
| scheduled_time | text | Schedule message (YYYY-MM-DD HH:MM:SS format, optional) |
| Name | Type | Description |
|---|---|---|
| campaign_id | string | Unique identifier for the campaign |
| message_count | number | Number of messages sent |
| success | boolean | Whether the SMS was sent successfully |
Add a subscriber to a textword
| Field | Type | Default | Description |
|---|---|---|---|
| textword | text | SlickText textword/keyword | |
| phone_number | text | Subscriber phone number (10 digits) | |
| first_name | text | Subscriber first name | |
| last_name | text | Subscriber last name | |
| text | Subscriber email address |
| Name | Type | Description |
|---|---|---|
| subscriber_id | string | ID of the added subscriber |
| phone_number | string | Subscriber phone number |
| success | boolean | Whether the subscriber was added successfully |
Remove a subscriber from a textword
| Field | Type | Default | Description |
|---|---|---|---|
| textword | text | SlickText textword/keyword | |
| phone_number | text | Subscriber phone number to remove |
| Name | Type | Description |
|---|---|---|
| phone_number | string | Removed subscriber phone number |
| success | boolean | Whether the subscriber was removed successfully |
Get subscribers for a textword
| Field | Type | Default | Description |
|---|---|---|---|
| textword | text | SlickText textword/keyword | |
| limit | number | 100 | Maximum number of subscribers to retrieve (default: 100) |
| Name | Type | Description |
|---|---|---|
| subscribers | array | List of subscribers |
| total_count | number | Total number of subscribers |
| success | boolean | Whether the subscribers were retrieved successfully |
Get all textwords/keywords for the account
| Name | Type | Description |
|---|---|---|
| textwords | array | List of textwords/keywords |
| count | number | Number of textwords |
| success | boolean | Whether the textwords were retrieved successfully |
Get campaign history
| Field | Type | Default | Description |
|---|---|---|---|
| textword | text | Filter by textword (optional) | |
| limit | number | 50 | Maximum number of campaigns to retrieve (default: 50) |
| Name | Type | Description |
|---|---|---|
| campaigns | array | List of campaigns |
| count | number | Number of campaigns returned |
| success | boolean | Whether the campaigns were retrieved successfully |
Enterprise work management platform for project planning and collaboration
Notes:
Add a new row to a Smartsheet
| Field | Type | Default | Description |
|---|---|---|---|
| sheet_id | text | The ID of the sheet to add the row to | |
| cells | textarea | JSON array of cell objects with columnId and value |
| Name | Type | Description |
|---|---|---|
| row_id | string | The unique ID of the created row |
| row_number | number | The row number in the sheet |
Update an existing row in a Smartsheet
| Field | Type | Default | Description |
|---|---|---|---|
| sheet_id | text | The ID of the sheet containing the row | |
| row_id | text | The ID of the row to update | |
| cells | textarea | JSON array of cell objects with columnId and value |
| Name | Type | Description |
|---|---|---|
| row_id | string | The unique ID of the updated row |
| success | boolean | Whether the update was successful |
Retrieve data from a Smartsheet
| Field | Type | Default | Description |
|---|---|---|---|
| sheet_id | text | The ID of the sheet to retrieve |
| Name | Type | Description |
|---|---|---|
| sheet_id | string | |
| name | string | |
| columns | array | |
| rows | array | |
| total_row_count | number |
List all sheets accessible to the user
| Name | Type | Description |
|---|---|---|
| sheets | array | Array of sheet objects |
| count | number | Number of sheets returned |
SMS and MMS messaging platform with global reach and delivery tracking
Notes:
Send SMS messages via SMSGlobal
| Field | Type | Default | Description |
|---|---|---|---|
| message | textarea | SMS message content | |
| destination | text | Recipient phone number with country code (e.g., 61412345678) | |
| origin | text | Custom sender ID or phone number | |
| scheduledDateTime | text | Schedule message (ISO 8601 format, optional) |
| Name | Type | Description |
|---|---|---|
| message_id | string | Unique identifier for the sent message |
| outgoing_id | number | SMSGlobal outgoing ID |
| status | string | Message sending status |
| success | boolean | Whether the SMS was sent successfully |
Send MMS messages with media via SMSGlobal
| Field | Type | Default | Description |
|---|---|---|---|
| message | textarea | MMS message text (optional) | |
| destination | text | Recipient phone number with country code | |
| origin | text | Custom sender ID or phone number | |
| media_url | text | URL of the media file to send | |
| subject | text | MMS subject line (optional) |
| Name | Type | Description |
|---|---|---|
| message_id | string | Unique identifier for the sent MMS |
| outgoing_id | number | SMSGlobal outgoing ID |
| success | boolean | Whether the MMS was sent successfully |
Check your SMSGlobal account balance
| Name | Type | Description |
|---|---|---|
| balance | number | Current account balance |
| currency | string | Account currency |
| success | boolean | Whether the balance check was successful |
Check the delivery status of a message
| Field | Type | Default | Description |
|---|---|---|---|
| message_id | text | ID of the message to check status for |
| Name | Type | Description |
|---|---|---|
| status | string | Message delivery status |
| delivered_at | string | When the message was delivered |
| cost | number | Cost of the message |
| success | boolean | Whether the status check was successful |
Add a new contact to your SMSGlobal address book
| Field | Type | Default | Description |
|---|---|---|---|
| mobile_number | text | Contact mobile number with country code | |
| first_name | text | Contact first name | |
| last_name | text | Contact last name | |
| text | Contact email address |
| Name | Type | Description |
|---|---|---|
| contact_id | number | ID of the created contact |
| mobile_number | string | Contact mobile number |
| success | boolean | Whether the contact was created successfully |
Snap advertising and audience targeting platform
Notes:
Get list of ad accounts in your organization
| Name | Type | Description |
|---|---|---|
| adAccounts | array | |
| count | number | |
| success | boolean |
Get campaigns from a specific ad account
| Field | Type | Default | Description |
|---|---|---|---|
| adAccountId | text | The ID of the ad account |
| Name | Type | Description |
|---|---|---|
| campaigns | array | |
| count | number | |
| success | boolean |
Create a new advertising campaign
| Field | Type | Default | Description |
|---|---|---|---|
| adAccountId | text | The ID of the ad account | |
| name | text | Name for the campaign | |
| objective | select | The objective for this campaign | |
| status | select | PAUSED | Initial status of the campaign |
| Name | Type | Description |
|---|---|---|
| campaignId | string | |
| campaign | object | |
| success | boolean |
Get ad sets from a specific campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | The ID of the campaign |
| Name | Type | Description |
|---|---|---|
| adSets | array | |
| count | number | |
| success | boolean |
Create a new ad set within a campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | The ID of the campaign | |
| name | text | Name for the ad set | |
| dailyBudgetMicro | number | Daily budget in micros (1 USD = 1,000,000 micros) | |
| startTime | text | Start time in ISO 8601 format (YYYY-MM-DDTHH:MM:SS.sssZ) | |
| bidMicro | number | Bid amount in micros for manual bidding | |
| optimizationGoal | select | IMPRESSIONS | What to optimize for |
| Name | Type | Description |
|---|---|---|
| adSetId | string | |
| adSet | object | |
| success | boolean |
Get ads from a specific ad set
| Field | Type | Default | Description |
|---|---|---|---|
| adSetId | text | The ID of the ad set |
| Name | Type | Description |
|---|---|---|
| ads | array | |
| count | number | |
| success | boolean |
Get performance statistics for campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| campaignIds | textarea | Campaign IDs separated by commas | |
| startTime | text | Start time in YYYY-MM-DD format | |
| endTime | text | End time in YYYY-MM-DD format | |
| granularity | select | DAY | Time granularity for the stats |
| Name | Type | Description |
|---|---|---|
| stats | array | |
| totalImpressions | number | |
| totalSwipes | number | |
| totalSpend | number | |
| success | boolean |
Get saved audiences for targeting
| Field | Type | Default | Description |
|---|---|---|---|
| adAccountId | text | The ID of the ad account |
| Name | Type | Description |
|---|---|---|
| audiences | array | |
| count | number | |
| success | boolean |
Manage Snapchat advertising campaigns with AR-enabled features. Create campaigns, track performance, and leverage unique Snapchat advertising formats including AR Lenses.
Notes:
Retrieve advertising campaigns from Snapchat Ads Manager
| Field | Type | Default | Description |
|---|---|---|---|
| adAccountId | text | Specific ad account ID to filter campaigns | |
| status | select | Filter by campaign status |
| Name | Type | Description |
|---|---|---|
| campaigns | array | List of advertising campaigns |
| totalCount | number | Total number of campaigns |
Retrieve ad sets from Snapchat Ads Manager
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | Filter by specific campaign ID | |
| status | select | Filter by ad set status |
| Name | Type | Description |
|---|---|---|
| adSets | array | List of ad sets |
| totalCount | number |
Retrieve individual ads from Snapchat Ads Manager
| Field | Type | Default | Description |
|---|---|---|---|
| adSetId | text | Filter by specific ad set ID | |
| status | select | Filter by ad status |
| Name | Type | Description |
|---|---|---|
| ads | array | List of individual ads |
| totalCount | number |
Get advertising performance statistics and analytics
| Field | Type | Default | Description |
|---|---|---|---|
| granularity | select | Time granularity for statistics | |
| startTime | text | Start time (YYYY-MM-DD format) | |
| endTime | text | End time (YYYY-MM-DD format) | |
| entityIds | textarea | Campaign, Ad Set, or Ad IDs to get stats for (JSON array) | |
| entityType | select | Type of entity to get statistics for |
| Name | Type | Description |
|---|---|---|
| stats | array | Performance statistics and metrics |
| totalSpend | number | Total advertising spend for the period |
| totalImpressions | number | |
| totalSwipes | number | Total swipe-ups (Snapchat equivalent of clicks) |
Create a new advertising campaign
| Field | Type | Default | Description |
|---|---|---|---|
| adAccountId | text | Ad account to create campaign in | |
| campaignName | text | Name for the new campaign | |
| objective | select | Campaign objective | |
| status | select | Initial campaign status |
| Name | Type | Description |
|---|---|---|
| campaignId | string | ID of the created campaign |
| campaignName | string | |
| status | string |
Update an existing advertising campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | ID of the campaign to update | |
| updates | textarea | Campaign fields to update (JSON format) |
| Name | Type | Description |
|---|---|---|
| campaignId | string | |
| success | boolean |
Retrieve custom audiences and segments
| Field | Type | Default | Description |
|---|---|---|---|
| adAccountId | text | Ad account to get audiences from | |
| audienceType | select | Filter by audience type |
| Name | Type | Description |
|---|---|---|
| audiences | array | List of custom audiences |
| totalCount | number |
Retrieve advertising creatives and media assets
| Field | Type | Default | Description |
|---|---|---|---|
| adAccountId | text | Ad account to get creatives from | |
| creativeType | select | Filter by creative type |
| Name | Type | Description |
|---|---|---|
| creatives | array | List of advertising creatives |
| totalCount | number |
Retrieve AR Lens creatives for advertising
| Field | Type | Default | Description |
|---|---|---|---|
| adAccountId | text | Ad account to get lenses from | |
| status | select | Filter by lens status |
| Name | Type | Description |
|---|---|---|
| lenses | array | List of AR Lens creatives |
| totalCount | number |
Email finder and outreach automation platform with lead generation, email verification, and automated drip campaigns
Notes:
Find email address for a person at a specific company
| Field | Type | Default | Description |
|---|---|---|---|
| first_name | text | Person's first name | |
| last_name | text | Person's last name | |
| domain | text | Company domain (e.g., google.com) |
| Name | Type | Description |
|---|---|---|
| string | Found email address | |
| first_name | string | Person's first name |
| last_name | string | Person's last name |
| success | boolean | Whether email was found successfully |
Find all email addresses associated with a domain
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | Company domain to search (e.g., google.com) | |
| type | select | all | Filter emails by type |
| limit | number | 100 | Maximum number of emails to return (default: 100) |
| last_id | number | Last ID from previous request for pagination |
| Name | Type | Description |
|---|---|---|
| emails | array | List of found email addresses with contact details |
| domain | string | The domain that was searched |
| companyName | string | Company name associated with the domain |
| last_id | number | Last ID for pagination of next request |
Verify if an email address is valid and deliverable
| Field | Type | Default | Description |
|---|---|---|---|
| emails | textarea | Email addresses to verify (one per line or JSON array) |
| Name | Type | Description |
|---|---|---|
| results | array | Array of email verification results |
| valid_emails | array | List of verified valid email addresses |
| invalid_emails | array | List of invalid email addresses |
Add a prospect to a specific prospect list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | number | ID of the prospect list to add to | |
| emails | textarea | [{"email": "john@example.com", "firstName": "John", "lastName": "Doe"}] | Array of prospect objects with email and optional name fields |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether prospects were added successfully |
| added_count | number | Number of prospects successfully added |
| duplicates_count | number | Number of duplicate prospects skipped |
| invalid_count | number | Number of invalid prospects |
Retrieve all prospect lists in your account
| Name | Type | Description |
|---|---|---|
| lists | array | Array of prospect lists with details |
| total_count | number | Total number of prospect lists |
Create a new prospect list
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name for the new prospect list |
| Name | Type | Description |
|---|---|---|
| list_id | number | ID of the created prospect list |
| name | string | Name of the created list |
| creationDate | string | Date when the list was created |
Retrieve prospects from a specific list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | number | ID of the prospect list to retrieve from | |
| limit | number | 100 | Maximum number of prospects to return (default: 100) |
| last_id | number | Last ID from previous request for pagination |
| Name | Type | Description |
|---|---|---|
| prospects | array | Array of prospects from the list |
| list_id | number | ID of the list that was queried |
| last_id | number | Last ID for pagination of next request |
Get current account balance and usage statistics
| Name | Type | Description |
|---|---|---|
| searches | number | Number of email searches available |
| verifications | number | Number of email verifications available |
| emails_sent | number | Number of emails that can be sent |
| drip_campaigns | number | Number of active drip campaigns allowed |
Add emails to verification queue for processing
| Field | Type | Default | Description |
|---|---|---|---|
| emails | textarea | ["john@example.com", "jane@company.org", "support@business.net"] | Array of email addresses to add to verification queue |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether emails were added to verification queue |
| identifier | string | Unique identifier for this verification batch |
| emails_count | number | Number of emails added to verification |
Check the status of email verification batch
| Field | Type | Default | Description |
|---|---|---|---|
| identifier | text | Verification batch identifier |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether verification status was retrieved |
| identifier | string | Verification batch identifier |
| total | number | Total number of emails in the batch |
| processed | number | Number of emails processed |
| status | string | Overall status of the verification batch |
Social media analytics and influencer insights platform with competitive analysis
Notes:
Get analytics for influencers
| Field | Type | Default | Description |
|---|---|---|---|
| username | text |
| Name | Type | Description |
|---|---|---|
| analytics | object |
Social media automation and content categorization platform
Notes:
Get list of SocialBee workspaces
| Name | Type | Description |
|---|---|---|
| workspaces | array | |
| count | number | |
| success | boolean |
Get connected social media profiles in a workspace
| Field | Type | Default | Description |
|---|---|---|---|
| workspaceId | text | The ID of the workspace |
| Name | Type | Description |
|---|---|---|
| profiles | array | |
| count | number | |
| success | boolean |
Get content categories for organizing posts
| Field | Type | Default | Description |
|---|---|---|---|
| workspaceId | text | The ID of the workspace |
| Name | Type | Description |
|---|---|---|
| categories | array | |
| count | number | |
| success | boolean |
Create a new content category for organizing posts
| Field | Type | Default | Description |
|---|---|---|---|
| workspaceId | text | The ID of the workspace | |
| name | text | Name for the new category | |
| color | text | Hex color code for the category (e.g., #FF5733) | |
| postingSchedule | textarea | JSON configuration for automated posting schedule |
| Name | Type | Description |
|---|---|---|
| categoryId | string | |
| category | object | |
| success | boolean |
Create and schedule a social media post
| Field | Type | Default | Description |
|---|---|---|---|
| workspaceId | text | The ID of the workspace | |
| categoryId | text | Content category ID for the post | |
| content | textarea | Content of the social media post | |
| profileIds | textarea | Social profile IDs separated by commas | |
| scheduledAt | text | Schedule post for specific time (ISO 8601 format). Leave empty for immediate posting. | |
| mediaUrls | textarea | Image/video URLs separated by commas | |
| isEvergreen | select | false | Whether this post should be recycled automatically |
| Name | Type | Description |
|---|---|---|
| postId | string | |
| post | object | |
| status | string | |
| success | boolean |
Get posts from a workspace
| Field | Type | Default | Description |
|---|---|---|---|
| workspaceId | text | The ID of the workspace | |
| categoryId | text | Filter by specific category ID | |
| status | select | Filter by post status | |
| limit | number | 50 | Maximum number of posts to return |
| Name | Type | Description |
|---|---|---|
| posts | array | |
| count | number | |
| success | boolean |
Get details of a specific post
| Field | Type | Default | Description |
|---|---|---|---|
| postId | text | The ID of the post to retrieve |
| Name | Type | Description |
|---|---|---|
| post | object | |
| content | string | |
| status | string | |
| category | string | |
| success | boolean |
Update a scheduled or draft post
| Field | Type | Default | Description |
|---|---|---|---|
| postId | text | The ID of the post to update | |
| content | textarea | New content for the post | |
| scheduledAt | text | New scheduled time (ISO 8601 format) | |
| categoryId | text | Move post to different category |
| Name | Type | Description |
|---|---|---|
| post | object | |
| updated | boolean | |
| success | boolean |
Delete a scheduled or draft post
| Field | Type | Default | Description |
|---|---|---|---|
| postId | text | The ID of the post to delete |
| Name | Type | Description |
|---|---|---|
| deleted | boolean | |
| postId | string | |
| success | boolean |
Get analytics data for workspace performance
| Field | Type | Default | Description |
|---|---|---|---|
| workspaceId | text | The ID of the workspace | |
| startDate | text | Start date in YYYY-MM-DD format | |
| endDate | text | End date in YYYY-MM-DD format |
| Name | Type | Description |
|---|---|---|
| analytics | object | |
| totalPosts | number | |
| totalEngagement | number | |
| topPerformingCategory | string | |
| success | boolean |
Manually trigger recycling of an evergreen post
| Field | Type | Default | Description |
|---|---|---|---|
| postId | text | The ID of the evergreen post to recycle | |
| scheduledAt | text | When to recycle the post (ISO 8601 format). Leave empty for next available slot. |
| Name | Type | Description |
|---|---|---|
| recycledPostId | string | |
| scheduledAt | string | |
| success | boolean |
Modern open-source e-commerce platform for high-volume retailers
Notes:
Retrieve products from Solidus store
| Field | Type | Default | Description |
|---|---|---|---|
| per_page | number | 25 | Number of products per page |
| page | number | 1 | Page number to retrieve |
| show_deleted | checkbox | Include deleted products in results |
| Name | Type | Description |
|---|---|---|
| products | array | List of products |
| total_count | number | Total number of products |
| current_page | number | Current page number |
Get a specific product by ID
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | The ID of the product to retrieve |
| Name | Type | Description |
|---|---|---|
| product | object | Product details |
Create a new product in Solidus
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the product | |
| description | textarea | Product description | |
| price | number | Product price | |
| sku | text | Product SKU | |
| available_on | text | Date when product becomes available (YYYY-MM-DD format) | |
| weight | number | Product weight |
| Name | Type | Description |
|---|---|---|
| product | object | Details of the created product |
| success | boolean | Whether the product was created successfully |
Update an existing product
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | ID of the product to update | |
| name | text | New product name | |
| description | textarea | New product description | |
| price | number | New product price |
| Name | Type | Description |
|---|---|---|
| product | object | Updated product details |
| success | boolean | Whether the product was updated successfully |
Retrieve orders from Solidus store
| Field | Type | Default | Description |
|---|---|---|---|
| per_page | number | 25 | Number of orders per page |
| page | number | 1 | Page number to retrieve |
| state | select | Filter by order state |
| Name | Type | Description |
|---|---|---|
| orders | array | List of orders |
| total_count | number | Total number of orders |
Get a specific order by ID
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | The ID of the order to retrieve |
| Name | Type | Description |
|---|---|---|
| order | object | Order details |
Create a shipment for an order
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | ID of the order to ship | |
| tracking_number | text | Shipping tracking number | |
| send_email | checkbox | 1 | Send shipment notification email |
| Name | Type | Description |
|---|---|---|
| shipment | object | Details of the created shipment |
| success | boolean | Whether the shipment was created successfully |
Retrieve variants for a specific product
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | ID of the product to get variants for |
| Name | Type | Description |
|---|---|---|
| variants | array | List of product variants |
Fast indexing service for Google and Yandex. Submit URLs to get them indexed quickly.
Notes:
Submit a URL to SpeedyIndex for fast Google indexing
| Name | Type | Required | Description |
|---|---|---|---|
| url | string | Yes | The URL you want to submit for Google indexing |
| Field | Type | Default | Description |
|---|---|---|---|
| url | string | Static URL to index. This will be overridden if the URL input is mapped from another node. |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the indexing request was successful |
| code | number | API response code (0=success, 1=insufficient balance, 2=server overloaded) |
| message | string | Human-readable response message |
| url | string | The URL that was submitted |
| service | string | The indexing service used (google) |
Submit a URL to SpeedyIndex for fast Yandex indexing
| Name | Type | Required | Description |
|---|---|---|---|
| url | string | Yes | The URL you want to submit for Yandex indexing |
| Field | Type | Default | Description |
|---|---|---|---|
| url | string | Static URL to index. This will be overridden if the URL input is mapped from another node. |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the indexing request was successful |
| code | number | API response code (0=success, 1=insufficient balance, 2=server overloaded) |
| message | string | Human-readable response message |
| url | string | The URL that was submitted |
| service | string | The indexing service used (yandex) |
Create and manage Spotify playlists, search for tracks, albums, and artists. Build AI-powered playlist generators and music automation workflows.
Notes:
Get the current authenticated user's Spotify profile
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| id | string | |
| display_name | string | |
| string | ||
| country | string | |
| product | string | |
| uri | string | |
| profile_url | string | |
| followers | number |
Create a new playlist for the current user
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name for the new playlist | |
| description | textarea | Playlist description (optional) | |
| public | select | true | Whether the playlist is public or private |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| id | string | |
| name | string | |
| description | string | |
| public | boolean | |
| collaborative | boolean | |
| uri | string | |
| url | string | |
| snapshot_id | string | |
| owner_id | string | |
| tracks_total | number |
Search for tracks on Spotify
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Search query (track name, artist, etc.) | |
| limit | number | 20 | Number of results to return (1-50) |
| market | text | ISO 3166-1 alpha-2 country code (e.g., US, GB) |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| tracks | array | |
| total | number | |
| limit | number | |
| offset | number | |
| query | string |
Add one or more tracks to a playlist
| Field | Type | Default | Description |
|---|---|---|---|
| playlistId | text | Spotify playlist ID | |
| trackUris | textarea | Track URI(s) - single URI or JSON array of URIs (e.g., spotify:track:xxx or just the track ID) | |
| position | number | Position to insert (0-indexed, leave empty to append) |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| snapshot_id | string | |
| playlist_id | string | |
| tracks_added | number | |
| track_uris | array |
Get details of a specific playlist
| Field | Type | Default | Description |
|---|---|---|---|
| playlistId | text | Spotify playlist ID |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| id | string | |
| name | string | |
| description | string | |
| public | boolean | |
| collaborative | boolean | |
| uri | string | |
| url | string | |
| snapshot_id | string | |
| owner | object | |
| followers | number | |
| tracks_total | number | |
| images | array |
Get tracks from a playlist
| Field | Type | Default | Description |
|---|---|---|---|
| playlistId | text | Spotify playlist ID | |
| limit | number | 100 | Number of tracks to retrieve (1-100) |
| offset | number | 0 | Offset for pagination |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| tracks | array | |
| total | number | |
| limit | number | |
| offset | number | |
| next | string | |
| playlist_id | string |
Remove tracks from a playlist
| Field | Type | Default | Description |
|---|---|---|---|
| playlistId | text | Spotify playlist ID | |
| trackUris | textarea | Track URI(s) to remove - single URI or JSON array |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| snapshot_id | string | |
| playlist_id | string | |
| tracks_removed | number |
Get the current user's playlists
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Number of playlists to retrieve (1-50) |
| offset | number | 0 | Offset for pagination |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| playlists | array | |
| total | number | |
| limit | number | |
| offset | number | |
| next | string |
Search for artists on Spotify
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Artist name or search query | |
| limit | number | 20 | Number of results to return (1-50) |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| artists | array | |
| total | number | |
| query | string |
Search for albums on Spotify
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Album name or search query | |
| limit | number | 20 | Number of results to return (1-50) |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| albums | array | |
| total | number | |
| query | string |
Open-source e-commerce platform built with Ruby on Rails
Notes:
Retrieve products from Spree Commerce store
| Field | Type | Default | Description |
|---|---|---|---|
| per_page | number | 25 | Number of products per page |
| page | number | 1 | Page number to retrieve |
| Name | Type | Description |
|---|---|---|
| products | array | List of products |
| total_count | number | Total number of products |
| current_page | number | Current page number |
Get a specific product by ID
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | The ID of the product to retrieve |
| Name | Type | Description |
|---|---|---|
| product | object | Product details |
Create a new product in Spree Commerce
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the product | |
| description | textarea | Product description | |
| price | number | Product price | |
| sku | text | Product SKU | |
| available_on | text | Date when product becomes available (YYYY-MM-DD format) |
| Name | Type | Description |
|---|---|---|
| product | object | Details of the created product |
| success | boolean | Whether the product was created successfully |
Update an existing product
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | ID of the product to update | |
| name | text | New product name | |
| description | textarea | New product description | |
| price | number | New product price |
| Name | Type | Description |
|---|---|---|
| product | object | Updated product details |
| success | boolean | Whether the product was updated successfully |
Retrieve orders from Spree Commerce store
| Field | Type | Default | Description |
|---|---|---|---|
| per_page | number | 25 | Number of orders per page |
| page | number | 1 | Page number to retrieve |
| state | select | Filter by order state |
| Name | Type | Description |
|---|---|---|
| orders | array | List of orders |
| total_count | number | Total number of orders |
Get a specific order by ID
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | The ID of the order to retrieve |
| Name | Type | Description |
|---|---|---|
| order | object | Order details |
Update the state of an order
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | ID of the order to update | |
| state_event | select | State transition event to trigger |
| Name | Type | Description |
|---|---|---|
| order | object | Updated order details |
| success | boolean | Whether the order state was updated successfully |
Social media management and influencer tracking platform with enterprise-grade features
Notes:
Track influencer activities and mentions
| Field | Type | Default | Description |
|---|---|---|---|
| influencer_id | text |
| Name | Type | Description |
|---|---|---|
| activities | array |
Social media management and customer care platform
Notes:
Get list of connected social media profiles
| Name | Type | Description |
|---|---|---|
| profiles | array | |
| count | number | |
| success | boolean |
Create and publish a social media post
| Field | Type | Default | Description |
|---|---|---|---|
| profileIds | textarea | Social profile IDs separated by commas | |
| content | textarea | Content of the social media post | |
| publishAt | text | Schedule post for later (ISO 8601 format). Leave empty for immediate posting. | |
| mediaUrls | textarea | Image/video URLs separated by commas | |
| linkUrl | text | URL to include in the post |
| Name | Type | Description |
|---|---|---|
| postId | string | |
| post | object | |
| status | string | |
| success | boolean |
Get published and scheduled posts
| Field | Type | Default | Description |
|---|---|---|---|
| profileId | text | Filter by specific social profile ID | |
| status | select | Filter by post status | |
| limit | number | 50 | Maximum number of posts to return |
| Name | Type | Description |
|---|---|---|
| posts | array | |
| count | number | |
| success | boolean |
Get details of a specific post
| Field | Type | Default | Description |
|---|---|---|---|
| postId | text | The ID of the post to retrieve |
| Name | Type | Description |
|---|---|---|
| post | object | |
| content | string | |
| status | string | |
| publishedAt | string | |
| success | boolean |
Delete a scheduled or draft post
| Field | Type | Default | Description |
|---|---|---|---|
| postId | text | The ID of the post to delete |
| Name | Type | Description |
|---|---|---|
| deleted | boolean | |
| postId | string | |
| success | boolean |
Get messages from social media inboxes for customer care
| Field | Type | Default | Description |
|---|---|---|---|
| profileId | text | Filter by specific social profile ID | |
| status | select | Filter by message status | |
| limit | number | 50 | Maximum number of messages to return |
| Name | Type | Description |
|---|---|---|
| messages | array | |
| count | number | |
| success | boolean |
Reply to a customer message in the inbox
| Field | Type | Default | Description |
|---|---|---|---|
| messageId | text | The ID of the message to reply to | |
| content | textarea | Content of the reply message |
| Name | Type | Description |
|---|---|---|
| replyId | string | |
| reply | object | |
| success | boolean |
Get analytics data for social media performance
| Field | Type | Default | Description |
|---|---|---|---|
| profileIds | textarea | Social profile IDs separated by commas | |
| startDate | text | Start date in YYYY-MM-DD format | |
| endDate | text | End date in YYYY-MM-DD format | |
| metrics | select | engagement | Type of metrics to retrieve |
| Name | Type | Description |
|---|---|---|
| analytics | object | |
| totalEngagement | number | |
| totalReach | number | |
| totalImpressions | number | |
| success | boolean |
Get content tags for organizing posts and campaigns
| Name | Type | Description |
|---|---|---|
| tags | array | |
| count | number | |
| success | boolean |
Create a new content tag for organizing posts
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name for the new tag | |
| color | text | Hex color code for the tag (e.g., #FF5733) |
| Name | Type | Description |
|---|---|---|
| tagId | string | |
| tag | object | |
| success | boolean |
Point of sale and payment processing platform for businesses
Notes:
Retrieve catalog items from your Square account
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 100 | Number of items to retrieve (max 1000) |
| types | select | ITEM |
| Name | Type | Description |
|---|---|---|
| items | array | Array of catalog item objects |
| total | number | Total number of items found |
Create a new catalog item in Square
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | The name of the item | |
| description | textarea | Item description | |
| base_price_money | number | Base price in cents (e.g., 1999 for $19.99) | |
| currency | select | USD |
| Name | Type | Description |
|---|---|---|
| item | object | The created catalog item object |
| id | string | ID of the created item |
Retrieve payments from your Square account
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 100 | Number of payments to retrieve (max 500) |
| begin_time | text | Start date/time in RFC 3339 format (e.g., 2023-01-01T00:00:00Z) | |
| end_time | text | End date/time in RFC 3339 format |
| Name | Type | Description |
|---|---|---|
| payments | array | Array of payment objects |
| total | number | Total number of payments found |
Get a specific payment by ID
| Field | Type | Default | Description |
|---|---|---|---|
| payment_id | text | The ID of the payment to retrieve |
| Name | Type | Description |
|---|---|---|
| payment | object | Complete payment details |
| id | string | |
| amount_money | object | Payment amount object |
| status | string | |
| receipt_number | string |
Create a new payment in Square
| Field | Type | Default | Description |
|---|---|---|---|
| source_id | text | Payment source ID (card nonce, gift card, etc.) | |
| amount_money | number | Payment amount in cents (e.g., 1999 for $19.99) | |
| currency | select | USD | |
| idempotency_key | text | Unique key to prevent duplicate payments (auto-generated if empty) |
| Name | Type | Description |
|---|---|---|
| payment | object | The created payment object |
| id | string | ID of the created payment |
| receipt_number | string |
Retrieve customers from your Square account
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 100 | Number of customers to retrieve (max 1000) |
| query | text | Search customers by name, email, or phone |
| Name | Type | Description |
|---|---|---|
| customers | array | Array of customer objects |
| total | number | Total number of customers found |
E-commerce solution integrated with Squarespace website builder
Notes:
Retrieve products from Squarespace Commerce
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Maximum number of products to retrieve |
| cursor | text | Pagination cursor for next page |
| Name | Type | Description |
|---|---|---|
| products | array | List of products |
| pagination | object | Pagination information |
Get a specific product by ID
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | The ID of the product to retrieve |
| Name | Type | Description |
|---|---|---|
| product | object | Product details |
Update an existing product
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | ID of the product to update | |
| name | text | New product name | |
| description | textarea | Product description | |
| price_amount | number | Product price in cents |
| Name | Type | Description |
|---|---|---|
| product | object | Updated product details |
| success | boolean | Whether the product was updated successfully |
Retrieve orders from Squarespace Commerce
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Maximum number of orders to retrieve |
| cursor | text | Pagination cursor for next page | |
| fulfillment_status | select | Filter by fulfillment status |
| Name | Type | Description |
|---|---|---|
| orders | array | List of orders |
| pagination | object | Pagination information |
Get a specific order by ID
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | The ID of the order to retrieve |
| Name | Type | Description |
|---|---|---|
| order | object | Order details |
Update the fulfillment status of an order
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | ID of the order to update | |
| fulfillment_status | select | New fulfillment status | |
| tracking_number | text | Shipping tracking number (for fulfilled orders) | |
| tracking_url | text | Shipping tracking URL |
| Name | Type | Description |
|---|---|---|
| order | object | Updated order details |
| success | boolean | Whether the order was updated successfully |
Retrieve inventory information for products
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Maximum number of inventory items to retrieve |
| Name | Type | Description |
|---|---|---|
| inventory | array | List of inventory items |
Native advertising platform for programmatic campaigns across premium publishers with advanced targeting and AI optimization
Notes:
Retrieve all campaigns from your StackAdapt account
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | Filter campaigns by status |
| Name | Type | Description |
|---|---|---|
| campaigns | array | List of campaigns with details |
| total_count | number | Total number of campaigns |
Retrieve line items from a specific campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | ID of the campaign to get line items from | |
| status | select | Filter line items by status |
| Name | Type | Description |
|---|---|---|
| line_items | array | List of line items with targeting and budget details |
| campaign_id | string | ID of the parent campaign |
Retrieve creative assets from StackAdapt
| Field | Type | Default | Description |
|---|---|---|---|
| line_item_id | text | Filter creatives by line item (optional) | |
| creative_type | select | Filter by creative type |
| Name | Type | Description |
|---|---|---|
| creatives | array | List of creative assets with performance data |
| total_count | number | Total number of creatives |
Generate performance reports for campaigns or line items
| Field | Type | Default | Description |
|---|---|---|---|
| report_type | select | Type of report to generate | |
| date_range | select | Time period for the report | |
| entity_ids | textarea | [] | Array of campaign/line item IDs to include (e.g., ["123", "456"]) |
| Name | Type | Description |
|---|---|---|
| report_data | array | Performance metrics and statistics |
| summary | object | Aggregated performance summary |
| date_range | string | Actual date range of the report |
Create a new native advertising campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_name | text | Name for the new campaign | |
| budget_type | select | How to manage campaign budget | |
| budget_amount | number | Budget amount in dollars | |
| start_date | text | Campaign start date (YYYY-MM-DD) | |
| end_date | text | Campaign end date (YYYY-MM-DD, optional) |
| Name | Type | Description |
|---|---|---|
| campaign_id | string | ID of the created campaign |
| campaign_name | string | Name of the created campaign |
| status | string | Current campaign status |
Update an existing campaign settings
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | ID of the campaign to update | |
| updates | textarea | {} | Campaign updates as JSON object (name, budget, status, etc.) |
| Name | Type | Description |
|---|---|---|
| campaign_id | string | ID of the updated campaign |
| updated_fields | array | List of fields that were updated |
| success | boolean | Whether the update was successful |
Retrieve available audience targeting segments
| Field | Type | Default | Description |
|---|---|---|---|
| segment_type | select | Filter by segment type |
| Name | Type | Description |
|---|---|---|
| segments | array | Available targeting segments with details |
| total_count | number | Total number of segments |
Retrieve available publisher inventory and placements
| Field | Type | Default | Description |
|---|---|---|---|
| inventory_type | select | Filter by inventory type | |
| category | text | Filter by content category (optional) |
| Name | Type | Description |
|---|---|---|
| inventory | array | Available publishers and placements |
| total_reach | number | Estimated total reach across inventory |
Get AI-powered bid recommendations for optimal performance
| Field | Type | Default | Description |
|---|---|---|---|
| line_item_id | text | ID of the line item to get recommendations for | |
| objective | select | Primary campaign objective for optimization |
| Name | Type | Description |
|---|---|---|
| recommended_bid | number | AI-recommended bid amount in dollars |
| bid_range | object | Minimum and maximum recommended bid range |
| optimization_tips | array | AI-generated optimization recommendations |
Open-source headless CMS platform for managing content, media files, and custom API endpoints with flexible content modeling
Notes:
Retrieve entries from a Strapi collection
| Field | Type | Default | Description |
|---|---|---|---|
| collection_type | text | Name of the collection type (e.g., articles, products) | |
| page | number | 1 | Page number for pagination |
| page_size | number | 25 | Number of entries per page (max 100) |
| sort | text | Sort field and order (e.g., createdAt:desc, title:asc) | |
| filters | code_editor | Strapi filters as JSON object | |
| populate | text | Relations to populate (e.g., *, author, categories) | |
| publication_state | select | live | Publication state filter |
| Name | Type | Description |
|---|---|---|
| entries | array | Array of collection entries |
| pagination | object | Pagination information |
| totalEntries | number | Total number of entries |
Retrieve a specific entry by ID
| Field | Type | Default | Description |
|---|---|---|---|
| collection_type | text | Name of the collection type | |
| entry_id | text | ID of the entry to retrieve | |
| populate | text | Relations to populate (e.g., *, author, categories) |
| Name | Type | Description |
|---|---|---|
| entry | object | The requested entry with all attributes |
| attributes | object | Entry attributes data |
| id | number | ID of the entry |
| createdAt | string | Entry creation timestamp |
| updatedAt | string | Entry last update timestamp |
Create a new entry in a Strapi collection
| Field | Type | Default | Description |
|---|---|---|---|
| collection_type | text | Name of the collection type | |
| data | code_editor | Entry data as JSON object | |
| status | select | draft | Publication status for the entry |
| Name | Type | Description |
|---|---|---|
| entryId | number | ID of the created entry |
| entry | object | The complete created entry |
| published | boolean | Whether the entry was published |
Update an existing entry in Strapi
| Field | Type | Default | Description |
|---|---|---|---|
| collection_type | text | Name of the collection type | |
| entry_id | text | ID of the entry to update | |
| data | code_editor | Updated entry data as JSON object | |
| status | select | Update publication status |
| Name | Type | Description |
|---|---|---|
| entryId | number | ID of the updated entry |
| entry | object | The complete updated entry |
| success | boolean | Whether the update was successful |
Delete an entry from a Strapi collection
| Field | Type | Default | Description |
|---|---|---|---|
| collection_type | text | Name of the collection type | |
| entry_id | text | ID of the entry to delete |
| Name | Type | Description |
|---|---|---|
| deletedId | number | ID of the deleted entry |
| success | boolean | Whether the deletion was successful |
Upload a file to Strapi media library
| Field | Type | Default | Description |
|---|---|---|---|
| file_url | text | URL of the file to upload | |
| filename | text | Name for the uploaded file | |
| alt_text | text | Alternative text for the file | |
| caption | text | Caption for the file |
| Name | Type | Description |
|---|---|---|
| fileId | number | ID of the uploaded file |
| fileUrl | string | Public URL of the uploaded file |
| filename | string | Name of the uploaded file |
| mimeType | string | MIME type of the uploaded file |
Retrieve users from Strapi (if users-permissions plugin is enabled)
| Field | Type | Default | Description |
|---|---|---|---|
| page | number | 1 | Page number for pagination |
| page_size | number | 25 | Number of users per page |
| filters | code_editor | User filters as JSON object |
| Name | Type | Description |
|---|---|---|
| users | array | Array of user records |
| totalUsers | number | Total number of users |
Retrieve all content types from Strapi
| Name | Type | Description |
|---|---|---|
| contentTypes | array | Array of content type definitions |
| totalTypes | number | Total number of content types |
CRM built into Gmail with pipeline management, email tracking, and team collaboration
Notes:
Retrieve pipelines from Streak CRM
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of pipelines to retrieve |
| Name | Type | Description |
|---|---|---|
| pipelines | array | |
| total_count | number |
Create a new pipeline in Streak CRM
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the pipeline | |
| description | textarea | Description of the pipeline |
| Name | Type | Description |
|---|---|---|
| pipeline_key | string | |
| name | string | |
| description | string | |
| created_at | string |
Retrieve boxes (records) from a Streak pipeline
| Field | Type | Default | Description |
|---|---|---|---|
| pipeline_key | text | Key of the pipeline to get boxes from | |
| limit | number | 50 | Maximum number of boxes to retrieve |
| stage_key | text | Filter boxes by stage key |
| Name | Type | Description |
|---|---|---|
| boxes | array | |
| total_count | number |
Create a new box (record) in a Streak pipeline
| Field | Type | Default | Description |
|---|---|---|---|
| pipeline_key | text | Key of the pipeline to create the box in | |
| name | text | Name of the box | |
| notes | textarea | Notes or description for the box | |
| stage_key | text | Initial stage key for the box |
| Name | Type | Description |
|---|---|---|
| box_key | string | |
| name | string | |
| pipeline_key | string | |
| stage_key | string | |
| created_at | string |
Update an existing box in Streak CRM
| Field | Type | Default | Description |
|---|---|---|---|
| box_key | text | Key of the box to update | |
| name | text | Name of the box | |
| notes | textarea | Notes or description for the box | |
| stage_key | text | Move box to this stage |
| Name | Type | Description |
|---|---|---|
| box_key | string | |
| name | string | |
| stage_key | string | |
| updated_at | string |
Retrieve contacts from Streak CRM
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of contacts to retrieve |
| query | text | Search term to filter contacts |
| Name | Type | Description |
|---|---|---|
| contacts | array | |
| total_count | number |
Create a new contact in Streak CRM
| Field | Type | Default | Description |
|---|---|---|---|
| Email address of the contact | |||
| givenName | text | First name of the contact | |
| familyName | text | Last name of the contact | |
| title | text | Job title of the contact | |
| phoneNumber | text | Phone number of the contact |
| Name | Type | Description |
|---|---|---|
| contact_key | string | |
| string | ||
| givenName | string | |
| familyName | string | |
| created_at | string |
Add a contact to a box in Streak CRM
| Field | Type | Default | Description |
|---|---|---|---|
| box_key | text | Key of the box to add contact to | |
| contact_key | text | Key of the contact to add |
| Name | Type | Description |
|---|---|---|
| box_key | string | |
| contact_key | string | |
| success | boolean |
Retrieve tasks from Streak CRM
| Field | Type | Default | Description |
|---|---|---|---|
| box_key | text | Filter tasks by box key | |
| assignee_key | text | Filter tasks by assignee key | |
| limit | number | 50 | Maximum number of tasks to retrieve |
| Name | Type | Description |
|---|---|---|
| tasks | array | |
| total_count | number |
Create a new task in Streak CRM
| Field | Type | Default | Description |
|---|---|---|---|
| text | text | Description of the task | |
| box_key | text | Key of the box this task relates to | |
| assignee_key | text | Key of the user to assign the task to | |
| dueDate | datetime-local | Due date and time for the task |
| Name | Type | Description |
|---|---|---|
| task_key | string | |
| text | string | |
| box_key | string | |
| dueDate | string | |
| created_at | string |
Send an email through Streak (via Gmail)
| Field | Type | Default | Description |
|---|---|---|---|
| to | text | Recipient email addresses (comma-separated) | |
| subject | text | Email subject line | |
| body | textarea | Email body content (HTML supported) | |
| box_key | text | Associate email with a specific box | |
| cc | text | CC recipients (comma-separated) | |
| bcc | text | BCC recipients (comma-separated) |
| Name | Type | Description |
|---|---|---|
| thread_key | string | |
| subject | string | |
| status | string | |
| created_at | string |
Add a comment to a box in Streak CRM
| Field | Type | Default | Description |
|---|---|---|---|
| box_key | text | Key of the box to add comment to | |
| message | textarea | Content of the comment |
| Name | Type | Description |
|---|---|---|
| comment_key | string | |
| box_key | string | |
| message | string | |
| created_at | string |
Search for boxes across all pipelines in Streak CRM
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Search term to find boxes | |
| pipeline_key | text | Limit search to specific pipeline | |
| limit | number | 50 | Maximum number of results to return |
| Name | Type | Description |
|---|---|---|
| results | array | |
| total_count | number |
Live streaming and recording platform with professional broadcast features
Notes:
Create a new live streaming broadcast
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | The title of the live broadcast | |
| description | textarea | Broadcast description | |
| scheduled_time | text | ISO 8601 format (e.g., 2024-12-25T14:00:00Z). Leave empty for immediate broadcast. | |
| destinations | textarea | [] | JSON array of streaming destinations (Facebook, YouTube, etc.) |
| privacy | select | public | |
| record_broadcast | checkbox | Record the broadcast for later use |
| Name | Type | Description |
|---|---|---|
| broadcast_id | string | |
| broadcast_url | string | |
| stream_key | string | |
| rtmp_url | string | |
| success | boolean |
Retrieve details of a specific broadcast
| Field | Type | Default | Description |
|---|---|---|---|
| broadcast_id | text | The unique ID of the broadcast |
| Name | Type | Description |
|---|---|---|
| title | string | |
| description | string | |
| scheduled_time | string | |
| status | string | |
| broadcast_url | string | |
| recording_url | string | |
| duration | number | |
| success | boolean |
Start a scheduled broadcast
| Field | Type | Default | Description |
|---|---|---|---|
| broadcast_id | text | The unique ID of the broadcast |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| status | string | |
| live_url | string |
Stop an active broadcast
| Field | Type | Default | Description |
|---|---|---|---|
| broadcast_id | text | The unique ID of the broadcast |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| status | string | |
| recording_url | string |
Retrieve list of broadcasts
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | ||
| limit | number | 50 | Maximum number of broadcasts to return |
| Name | Type | Description |
|---|---|---|
| broadcasts | array | |
| total_count | number | |
| success | boolean |
Retrieve list of broadcast recordings
| Field | Type | Default | Description |
|---|---|---|---|
| broadcast_id | text | Filter by specific broadcast (optional) | |
| limit | number | 50 | Maximum number of recordings to return |
| Name | Type | Description |
|---|---|---|
| recordings | array | |
| total_count | number | |
| success | boolean |
Update an existing broadcast
| Field | Type | Default | Description |
|---|---|---|---|
| broadcast_id | text | The unique ID of the broadcast | |
| title | text | Updated broadcast title | |
| description | textarea | Updated broadcast description | |
| scheduled_time | text | ISO 8601 format (e.g., 2024-12-25T14:00:00Z) |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| broadcast_id | string |
Payment processing and subscription management for e-commerce and billing automation
Notes:
Retrieve customers from your Stripe account
| Field | Type | Default | Description |
|---|---|---|---|
| text | Filter customers by email address | ||
| limit | number | 10 | Number of customers to retrieve (max 100) |
| Name | Type | Description |
|---|---|---|
| customers | array | |
| total | number |
Get details of a specific customer
| Field | Type | Default | Description |
|---|---|---|---|
| customerId | text | The Stripe customer ID (starts with cus_) |
| Name | Type | Description |
|---|---|---|
| customer | object | |
| id | string | |
| string | ||
| name | string |
Create a new customer in Stripe
| Field | Type | Default | Description |
|---|---|---|---|
| text | Customer email address | ||
| name | text | Full name of the customer | |
| phone | text | Customer phone number | |
| description | text | Internal description for the customer |
| Name | Type | Description |
|---|---|---|
| customer | object | |
| id | string | |
| success | boolean |
Update an existing customer in Stripe
| Field | Type | Default | Description |
|---|---|---|---|
| customerId | text | The Stripe customer ID to update | |
| text | Updated email address | ||
| name | text | Updated customer name | |
| phone | text | Updated phone number | |
| description | text | Updated description |
| Name | Type | Description |
|---|---|---|
| customer | object | |
| success | boolean |
Create a one-time charge (legacy method)
| Field | Type | Default | Description |
|---|---|---|---|
| amount | number | Amount in cents (e.g., 2000 for $20.00) | |
| currency | text | usd | Three-letter currency code (e.g., usd, eur, gbp) |
| customerId | text | Stripe customer ID to charge | |
| description | text | Description of the charge |
| Name | Type | Description |
|---|---|---|
| charge | object | |
| id | string | |
| amount | number | |
| status | string | |
| success | boolean |
Create a payment intent for modern payment flows
| Field | Type | Default | Description |
|---|---|---|---|
| amount | number | Amount in cents (e.g., 2000 for $20.00) | |
| currency | text | usd | Three-letter currency code |
| customerId | text | Stripe customer ID (optional) | |
| description | text | Description of the payment | |
| confirmationMethod | select | automatic |
| Name | Type | Description |
|---|---|---|
| paymentIntent | object | |
| id | string | |
| clientSecret | string | |
| status | string | |
| success | boolean |
Retrieve payment history (charges)
| Field | Type | Default | Description |
|---|---|---|---|
| customerId | text | Filter by specific customer | |
| limit | number | 10 | Number of payments to retrieve (max 100) |
| Name | Type | Description |
|---|---|---|
| charges | array | |
| total | number |
Process a refund for a charge
| Field | Type | Default | Description |
|---|---|---|---|
| chargeId | text | The charge ID to refund (starts with ch_) | |
| amount | number | Amount to refund in cents (leave empty for full refund) | |
| reason | select |
| Name | Type | Description |
|---|---|---|
| refund | object | |
| id | string | |
| amount | number | |
| status | string | |
| success | boolean |
Retrieve subscription data
| Field | Type | Default | Description |
|---|---|---|---|
| customerId | text | Filter by specific customer | |
| status | select | ||
| limit | number | 10 | Number of subscriptions to retrieve (max 100) |
| Name | Type | Description |
|---|---|---|
| subscriptions | array | |
| total | number |
Create a new subscription for a customer
| Field | Type | Default | Description |
|---|---|---|---|
| customerId | text | Stripe customer ID for the subscription | |
| priceId | text | Stripe price ID for the subscription (starts with price_) | |
| trialPeriodDays | number | Number of days for trial period |
| Name | Type | Description |
|---|---|---|
| subscription | object | |
| id | string | |
| status | string | |
| success | boolean |
Retrieve invoice data
| Field | Type | Default | Description |
|---|---|---|---|
| customerId | text | Filter by specific customer | |
| status | select | ||
| limit | number | 10 | Number of invoices to retrieve (max 100) |
| Name | Type | Description |
|---|---|---|
| invoices | array | |
| total | number |
Retrieve product catalog
| Field | Type | Default | Description |
|---|---|---|---|
| active | select | true | |
| limit | number | 10 | Number of products to retrieve (max 100) |
| Name | Type | Description |
|---|---|---|
| products | array | |
| total | number |
Create a new product in your catalog
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the product | |
| description | textarea | Description of the product | |
| type | select | service |
| Name | Type | Description |
|---|---|---|
| product | object | |
| id | string | |
| success | boolean |
Customer relationship management - Sales automation and customer engagement platform
Notes:
Retrieve account records from SugarCRM
| Field | Type | Default | Description |
|---|---|---|---|
| account_type | select | Filter by account type | |
| industry | text | Filter by industry | |
| max_num | number | 20 | Maximum number of records to retrieve (max 100) |
| Name | Type | Description |
|---|---|---|
| accounts | array | |
| account_count | number |
Create a new account record in SugarCRM
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the account | |
| account_type | select | Type of account | |
| industry | text | Account industry | |
| website | text | Company website URL | |
| phone_office | text | Office phone number | |
| email1 | text | Primary email address | |
| billing_address_street | text | Billing street address | |
| billing_address_city | text | Billing city | |
| billing_address_country | text | Billing country | |
| description | textarea | Account description |
| Name | Type | Description |
|---|---|---|
| account_id | string | |
| name | string | |
| account_type | string |
Retrieve contact records from SugarCRM
| Field | Type | Default | Description |
|---|---|---|---|
| account_id | text | Filter by account ID | |
| lead_source | text | Filter by lead source | |
| max_num | number | 20 | Maximum number of records to retrieve (max 100) |
| Name | Type | Description |
|---|---|---|
| contacts | array | |
| contact_count | number |
Create a new contact record in SugarCRM
| Field | Type | Default | Description |
|---|---|---|---|
| first_name | text | Contact first name | |
| last_name | text | Contact last name | |
| account_id | text | Associated account ID | |
| email1 | text | Primary email address | |
| phone_work | text | Work phone number | |
| phone_mobile | text | Mobile phone number | |
| title | text | Contact job title | |
| department | text | Contact department | |
| lead_source | text | How contact was acquired |
| Name | Type | Description |
|---|---|---|
| contact_id | string | |
| full_name | string | |
| email1 | string |
Retrieve opportunity records from SugarCRM
| Field | Type | Default | Description |
|---|---|---|---|
| account_id | text | Filter by account ID | |
| sales_stage | select | Filter by sales stage | |
| max_num | number | 20 | Maximum number of records to retrieve (max 100) |
| Name | Type | Description |
|---|---|---|
| opportunities | array | |
| opportunity_count | number | |
| total_amount | number |
Create a new opportunity record in SugarCRM
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the opportunity | |
| account_id | text | Associated account ID | |
| amount | number | Opportunity amount | |
| probability | number | Probability of closing (0-100) | |
| sales_stage | select | Prospecting | |
| date_closed | text | Expected close date | |
| lead_source | text | How opportunity was acquired | |
| description | textarea | Opportunity description |
| Name | Type | Description |
|---|---|---|
| opportunity_id | string | |
| name | string | |
| amount | number | |
| sales_stage | string |
Retrieve lead records from SugarCRM
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | Filter by lead status | |
| lead_source | text | Filter by lead source | |
| max_num | number | 20 | Maximum number of records to retrieve (max 100) |
| Name | Type | Description |
|---|---|---|
| leads | array | |
| lead_count | number |
Create a new lead record in SugarCRM
| Field | Type | Default | Description |
|---|---|---|---|
| first_name | text | Lead first name | |
| last_name | text | Lead last name | |
| account_name | text | Lead company name | |
| email1 | text | Primary email address | |
| phone_work | text | Work phone number | |
| phone_mobile | text | Mobile phone number | |
| title | text | Lead job title | |
| status | select | New | |
| lead_source | text | How lead was acquired |
| Name | Type | Description |
|---|---|---|
| lead_id | string | |
| full_name | string | |
| account_name | string | |
| status | string |
Connect to Supabase for database operations including CRUD, filtering, and RPC function calls.
Notes:
Fetch rows from a Supabase table with optional filtering
| Field | Type | Default | Description |
|---|---|---|---|
| table | text | Name of the table to query | |
| select | text | * | Columns to return (comma-separated, or * for all) |
| filters | textarea | Filter conditions as JSON object. Example: {"status": "eq.active", "age": "gt.18"} | |
| order | text | Column and direction (e.g., created_at.desc) | |
| limit | number | 100 | Maximum number of rows to return |
| offset | number | 0 | Number of rows to skip |
| Name | Type | Description |
|---|---|---|
| rows | array | Array of rows from the table |
| count | number | Number of rows returned |
| success | boolean | Whether the operation was successful |
Insert a new row into a Supabase table
| Field | Type | Default | Description |
|---|---|---|---|
| table | text | Name of the table | |
| data | textarea | Data to insert as JSON object. Example: {"name": "John", "email": "john@example.com"} |
| Name | Type | Description |
|---|---|---|
| row | object | The inserted row data |
| id | string | ID of the inserted row (if available) |
| success | boolean | Whether the operation was successful |
Update existing rows in a Supabase table
| Field | Type | Default | Description |
|---|---|---|---|
| table | text | Name of the table | |
| filters | textarea | Filter to select rows to update. Example: {"id": "eq.123"} | |
| data | textarea | Data to update as JSON object. Example: {"status": "completed"} |
| Name | Type | Description |
|---|---|---|
| rows | array | The updated rows |
| count | number | Number of rows updated |
| success | boolean | Whether the operation was successful |
Insert or update a row (upsert) based on unique constraint
| Field | Type | Default | Description |
|---|---|---|---|
| table | text | Name of the table | |
| data | textarea | Data to upsert as JSON object. Must include the unique constraint column(s). | |
| on_conflict | text | Column(s) to use for conflict detection (e.g., email or id) |
| Name | Type | Description |
|---|---|---|
| row | object | The upserted row data |
| success | boolean | Whether the operation was successful |
Delete rows from a Supabase table
| Field | Type | Default | Description |
|---|---|---|---|
| table | text | Name of the table | |
| filters | textarea | Filter to select rows to delete. Example: {"id": "eq.123"} |
| Name | Type | Description |
|---|---|---|
| rows | array | The deleted rows |
| count | number | Number of rows deleted |
| success | boolean | Whether the operation was successful |
Call a Postgres function (RPC) in Supabase
| Field | Type | Default | Description |
|---|---|---|---|
| function_name | text | Name of the Postgres function to call | |
| params | textarea | Function parameters as JSON object. Example: {"user_id": 123} |
| Name | Type | Description |
|---|---|---|
| result | object | The result returned by the function |
| success | boolean | Whether the operation was successful |
Survey creation and response analysis platform
Notes:
Create a new survey in SurveyMonkey
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | Title of the survey | |
| category | text | Survey category (optional) | |
| language | text | en | Survey language (e.g., "en") |
| Name | Type | Description |
|---|---|---|
| survey_id | string | The ID of the created survey |
| title | string | Survey title |
| url | string | URL to access the survey |
| created_at | string | When the survey was created |
Retrieve details of a specific survey
| Field | Type | Default | Description |
|---|---|---|---|
| survey_id | text | ID of the survey to retrieve |
| Name | Type | Description |
|---|---|---|
| survey_id | string | The survey ID |
| title | string | Survey title |
| nickname | string | Survey nickname |
| category | string | Survey category |
| language | string | Survey language |
| question_count | number | Number of questions in the survey |
| response_count | number | Number of responses received |
| created_at | string | When the survey was created |
Get a list of your surveys
| Field | Type | Default | Description |
|---|---|---|---|
| per_page | number | 25 | Number of surveys to retrieve (max 100) |
| page | number | 1 | Page number for pagination |
| sort_by | select | date_modified | How to sort the surveys |
| sort_order | select | DESC | Sort order |
| Name | Type | Description |
|---|---|---|
| surveys | array | Array of survey objects |
| total | number | Total number of surveys |
Retrieve responses for a specific survey
| Field | Type | Default | Description |
|---|---|---|---|
| survey_id | text | ID of the survey to get responses for | |
| per_page | number | 25 | Number of responses to retrieve (max 100) |
| page | number | 1 | Page number for pagination |
| status | select | all | Filter by completion status |
| Name | Type | Description |
|---|---|---|
| responses | array | Array of response objects |
| total | number | Total number of responses |
Retrieve a specific survey response
| Field | Type | Default | Description |
|---|---|---|---|
| survey_id | text | ID of the survey | |
| response_id | text | ID of the response to retrieve |
| Name | Type | Description |
|---|---|---|
| response_id | string | The response ID |
| survey_id | string | The survey ID |
| recipient_id | string | ID of the recipient who responded |
| total_time | number | Time taken to complete (seconds) |
| response_status | string | Status of the response |
| date_created | string | When the response was created |
| date_modified | string | When the response was last modified |
| pages | array | Array of page responses with questions and answers |
Delete a survey from SurveyMonkey
| Field | Type | Default | Description |
|---|---|---|---|
| survey_id | text | ID of the survey to delete |
| Name | Type | Description |
|---|---|---|
| deleted | boolean | Whether the survey was successfully deleted |
| survey_id | string | ID of the deleted survey |
End-to-end encrypted cloud storage and file sharing platform
Native advertising and content discovery platform. Create and manage native ad campaigns, discover top-performing content, and optimize bid strategies for maximum engagement.
Notes:
Retrieve advertising campaigns from Taboola Backstage
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | Filter campaigns by status |
| Name | Type | Description |
|---|---|---|
| campaigns | array | List of native advertising campaigns |
| totalCount | number | Total number of campaigns |
Retrieve campaign items (ads) from Taboola campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | ID of the campaign to get items from | |
| status | select | Filter items by status |
| Name | Type | Description |
|---|---|---|
| campaignItems | array | List of campaign items (ads) |
| totalCount | number |
Get performance reports and analytics for campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| reportType | select | Type of report to generate | |
| startDate | text | Start date (YYYY-MM-DD format) | |
| endDate | text | End date (YYYY-MM-DD format) | |
| campaignId | text | Filter by specific campaign ID |
| Name | Type | Description |
|---|---|---|
| reportData | array | Performance metrics and analytics data |
| totalSpend | number | Total advertising spend for the period |
| totalImpressions | number | |
| totalClicks | number | |
| averageCtr | number | Average click-through rate |
Create a new native advertising campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignName | text | Name for the new campaign | |
| brandingText | text | Brand text that appears with ads | |
| cpc | number | Cost per click bid amount | |
| dailyAdSpend | number | Daily budget for the campaign | |
| startDate | text | Campaign start date (YYYY-MM-DD) | |
| endDate | text | Campaign end date (YYYY-MM-DD) |
| Name | Type | Description |
|---|---|---|
| campaignId | string | ID of the created campaign |
| campaignName | string | |
| status | string |
Create a new campaign item (ad) within a campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | ID of the campaign to add item to | |
| itemTitle | text | Title/headline for the ad | |
| itemDescription | textarea | Description text for the ad | |
| url | text | URL where users will be directed when clicking | |
| imageUrl | text | URL of the image for the ad |
| Name | Type | Description |
|---|---|---|
| itemId | string | ID of the created campaign item |
| itemTitle | string | |
| status | string |
Update an existing campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | ID of the campaign to update | |
| updates | textarea | Campaign fields to update (JSON format) |
| Name | Type | Description |
|---|---|---|
| campaignId | string | |
| success | boolean |
Discover top-performing content for inspiration
| Field | Type | Default | Description |
|---|---|---|---|
| sourceType | select | Type of content source to analyze | |
| sourceValue | text | Category, domain, or keyword to analyze | |
| country | text | US | Two-letter country code (e.g., US, UK, CA) |
| limit | number | 20 | Number of content items to retrieve |
| Name | Type | Description |
|---|---|---|
| topContent | array | List of top-performing content items |
| totalCount | number |
Get CPC bid recommendations for better performance
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | ID of the campaign for bid recommendations |
| Name | Type | Description |
|---|---|---|
| recommendations | array | Recommended CPC bids for optimization |
| currentCpc | number | Current average CPC for the campaign |
| recommendedCpc | number | Recommended CPC for better performance |
Influencer marketing and social listening platform with comprehensive creator database
Notes:
Search for influencers using Tagger Media's database with advanced filtering options
| Field | Type | Default | Description |
|---|---|---|---|
| platform | select | ||
| keywords | text | Keywords to search in bio, posts, or hashtags | |
| location | text | Geographic location (country or city) | |
| follower_min | number | 1000 | |
| follower_max | number | Leave empty for no upper limit | |
| engagement_rate_min | number | 1 | |
| categories | text | Comma-separated content categories (e.g., fashion, beauty, fitness) | |
| limit | number | 50 | Maximum results to return (1-100) |
| Name | Type | Description |
|---|---|---|
| influencers | array | Array of matching influencer profiles |
| total_found | number | Total number of influencers matching criteria |
Get detailed performance metrics and analytics for a specific influencer
| Field | Type | Default | Description |
|---|---|---|---|
| username | text | Influencer username (without @ symbol) | |
| platform | select | ||
| days | number | 30 | Number of days to analyze (7, 30, or 90) |
| Name | Type | Description |
|---|---|---|
| metrics | object | Complete performance analytics data |
| followers_count | number | Current follower count |
| engagement_rate | number | Average engagement rate percentage |
| avg_likes | number | Average likes per post |
| avg_comments | number | Average comments per post |
Monitor and track brand or keyword mentions across social media platforms
| Field | Type | Default | Description |
|---|---|---|---|
| keywords | textarea | Keywords or brand names to monitor (one per line) | |
| platforms | select | ["instagram","twitter"] | |
| sentiment | select | ||
| days | number | 7 | Number of days to look back (1-30) |
| limit | number | 100 | Maximum mentions to return |
| Name | Type | Description |
|---|---|---|
| mentions | array | Array of social media mentions |
| total_mentions | number | Total number of mentions found |
| sentiment_breakdown | object | Breakdown of positive, negative, neutral sentiment |
| top_platforms | array | Platforms with most mentions |
Analyze campaign performance and get insights from influencer collaborations
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | Tagger Media campaign identifier |
| Name | Type | Description |
|---|---|---|
| campaign_data | object | Complete campaign performance data |
| total_reach | number | Total campaign reach across all posts |
| total_engagement | number | Total engagement across campaign |
| participating_influencers | number | Number of influencers in campaign |
| campaign_roi | number | Estimated return on investment |
Generate state of the art text to speech with context-aware capabilities and emotional control.
Notes:
Free live chat and messaging platform
Notes:
Send a message in a Tawk.to chat
| Field | Type | Default | Description |
|---|---|---|---|
| chat_id | text | ID of the chat to send message to | |
| text | textarea | Content of the message | |
| type | select | msg | Type of message |
| Name | Type | Description |
|---|---|---|
| message_id | string | The ID of the sent message |
| text | string | The message content |
| created_at | string | When the message was sent |
Retrieve details of a specific chat
| Field | Type | Default | Description |
|---|---|---|---|
| chat_id | text | ID of the chat to retrieve |
| Name | Type | Description |
|---|---|---|
| chat_id | string | The chat ID |
| visitor_name | string | Name of the visitor |
| visitor_email | string | Email of the visitor |
| status | string | Chat status |
| created_at | string | When the chat was created |
Get a list of chats
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Number of chats to retrieve (max 100) |
| offset | number | 0 | Number of chats to skip for pagination |
| Name | Type | Description |
|---|---|---|
| chats | array | Array of chat objects |
| total_count | number | Total number of chats |
End/close a chat session
| Field | Type | Default | Description |
|---|---|---|---|
| chat_id | text | ID of the chat to end |
| Name | Type | Description |
|---|---|---|
| chat_id | string | The ID of the ended chat |
| status | string | New chat status |
| ended_at | string | When the chat was ended |
Create a new contact in Tawk.to
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Contact full name | |
| text | Contact email address | ||
| phone | text | Contact phone number | |
| country | text | Contact country | |
| city | text | Contact city |
| Name | Type | Description |
|---|---|---|
| contact_id | string | The ID of the created contact |
| name | string | Contact name |
| string | Contact email | |
| created_at | string | When the contact was created |
Retrieve details of a specific contact
| Field | Type | Default | Description |
|---|---|---|---|
| contact_id | text | ID of the contact to retrieve |
| Name | Type | Description |
|---|---|---|
| contact_id | string | The contact ID |
| name | string | Contact name |
| string | Contact email | |
| phone | string | Contact phone |
| country | string | Contact country |
| city | string | Contact city |
Build management and continuous integration server by JetBrains
Notes:
Retrieve a list of projects in TeamCity
| Name | Type | Description |
|---|---|---|
| projects | array | List of TeamCity projects |
| count | number | Number of projects returned |
Get detailed information about a specific project
| Field | Type | Default | Description |
|---|---|---|---|
| project_id | text | The unique ID of the project |
| Name | Type | Description |
|---|---|---|
| project_name | string | Name of the project |
| description | string | Project description |
| href | string | URL to the project in TeamCity |
| archived | boolean | Whether the project is archived |
Retrieve build configurations for a project
| Field | Type | Default | Description |
|---|---|---|---|
| project_id | text | Filter by project ID (optional) |
| Name | Type | Description |
|---|---|---|
| build_configurations | array | List of build configurations |
| count | number | Number of configurations returned |
Retrieve recent builds with optional filtering
| Field | Type | Default | Description |
|---|---|---|---|
| build_type_id | text | Filter by specific build configuration (optional) | |
| status | select | ||
| state | select | ||
| count | number | 100 | Maximum number of builds to retrieve |
| Name | Type | Description |
|---|---|---|
| builds | array | List of recent builds |
| count | number | Number of builds returned |
Get detailed information about a specific build
| Field | Type | Default | Description |
|---|---|---|---|
| build_id | text | Unique identifier of the build |
| Name | Type | Description |
|---|---|---|
| build_number | string | Build number |
| status | string | Build status (SUCCESS, FAILURE, ERROR) |
| state | string | Build state (running, finished, queued) |
| start_date | string | When the build started |
| finish_date | string | When the build finished |
| branch_name | string | Branch that was built |
Trigger a new build for a build configuration
| Field | Type | Default | Description |
|---|---|---|---|
| build_type_id | text | ID of the build configuration to trigger | |
| branch | text | Branch to build (optional) | |
| comment | text | Comment for the build trigger | |
| properties | textarea | {} | Build properties as JSON key-value pairs |
| Name | Type | Description |
|---|---|---|
| build_id | string | Unique identifier of the triggered build |
| build_number | string | Build number |
| state | string | Initial state of the build |
| success | boolean | Whether the build was triggered successfully |
Stop a running build
| Field | Type | Default | Description |
|---|---|---|---|
| build_id | text | Unique identifier of the build to stop | |
| comment | text | Reason for stopping the build |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the build was stopped successfully |
| message | string | Details about the operation |
Retrieve builds currently in the build queue
| Field | Type | Default | Description |
|---|---|---|---|
| project_id | text | Filter by project ID (optional) |
| Name | Type | Description |
|---|---|---|
| queued_builds | array | List of builds in the queue |
| count | number | Number of builds in queue |
Retrieve a list of build agents
| Field | Type | Default | Description |
|---|---|---|---|
| connected_only | checkbox | Only return connected agents |
| Name | Type | Description |
|---|---|---|
| agents | array | List of build agents |
| count | number | Number of agents returned |
Retrieve TeamCity server information
| Name | Type | Description |
|---|---|---|
| version | string | TeamCity server version |
| build_number | string | Server build number |
| start_time | string | When the server was started |
Project management software with task tracking, time management, and team collaboration
Notes:
Create a new task in Teamwork
| Field | Type | Default | Description |
|---|---|---|---|
| project_id | text | The ID of the project | |
| content | text | The name of the task | |
| description | textarea | Description of the task |
| Name | Type | Description |
|---|---|---|
| task_id | string | The unique ID of the created task |
Connect your Telegram bot to send messages, photos, documents and receive updates
Notes:
Send a text message to a Telegram chat
| Field | Type | Default | Description |
|---|---|---|---|
| chat_id | text | Numeric chat ID (e.g. 123456789). To get your chat ID: message your bot first, then visit https://api.telegram.org/botYOUR_BOT_TOKEN/getUpdates | |
| text | textarea | Text of the message to be sent | |
| parse_mode | select | Mode for parsing entities in the message text | |
| disable_notification | checkbox | Sends the message silently | |
| reply_to_message_id | text | If the message is a reply, ID of the original message |
| Name | Type | Description |
|---|---|---|
| message_id | number | Unique message identifier |
| chat | object | Information about the chat |
| date | number | Date the message was sent in Unix time |
| success | boolean | Whether the message was sent successfully |
Send a photo to a Telegram chat
| Field | Type | Default | Description |
|---|---|---|---|
| chat_id | text | Numeric chat ID (e.g. 123456789). To get your chat ID: message your bot first, then visit https://api.telegram.org/botYOUR_BOT_TOKEN/getUpdates | |
| photo | text | Photo to send. Pass a file_id, HTTP URL, or binary data | |
| caption | textarea | Photo caption (0-1024 characters) | |
| parse_mode | select | Mode for parsing entities in the caption |
| Name | Type | Description |
|---|---|---|
| message_id | number | Unique message identifier |
| photo | array | Available sizes of the photo |
| success | boolean | Whether the photo was sent successfully |
Send a file/document to a Telegram chat
| Field | Type | Default | Description |
|---|---|---|---|
| chat_id | text | Unique identifier for the target chat | |
| document | text | File to send. Pass a file_id, HTTP URL, or binary data | |
| caption | textarea | Document caption (0-1024 characters) | |
| parse_mode | select | Mode for parsing entities in the caption |
| Name | Type | Description |
|---|---|---|
| message_id | number | Unique message identifier |
| document | object | Information about the document |
| success | boolean | Whether the document was sent successfully |
Send a video to a Telegram chat
| Field | Type | Default | Description |
|---|---|---|---|
| chat_id | text | Unique identifier for the target chat | |
| video | text | Video to send. Pass a file_id, HTTP URL, or binary data from previous node | |
| caption | textarea | Video caption (0-1024 characters) | |
| parse_mode | select | Mode for parsing entities in the caption | |
| duration | number | Duration of the video in seconds | |
| width | number | Video width | |
| height | number | Video height | |
| supports_streaming | checkbox | 1 | Pass true if the video is suitable for streaming |
| disable_notification | checkbox | Sends the message silently |
| Name | Type | Description |
|---|---|---|
| message_id | number | Unique message identifier |
| video | object | Information about the video |
| success | boolean | Whether the video was sent successfully |
Download a file from Telegram by file_id. Use this to retrieve voice messages, photos, or documents sent by users.
| Field | Type | Default | Description |
|---|---|---|---|
| file_id | text | Unique identifier for the file to download (from webhook photo, document, or voice fields) |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the file was retrieved successfully |
| file_id | string | Unique file identifier |
| file_path | string | File path on Telegram servers |
| file_url | string | Direct download URL for the file |
| file_size | number | File size in bytes |
Delete a message from a chat. Bot must have appropriate permissions.
| Field | Type | Default | Description |
|---|---|---|---|
| chat_id | text | Unique identifier for the target chat | |
| message_id | text | Identifier of the message to delete |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the message was deleted successfully |
| message | string | Status message or error description |
Triggered when a message is received by the bot
| Name | Type | Description |
|---|---|---|
| message_id | number | Unique message identifier |
| from | object | Information about the message sender |
| chat | object | Conversation the message belongs to |
| text | string | Text content of the message |
| date | number | Date the message was sent in Unix time |
| photo | array | Information about the photo (if message contains photo) |
| document | object | Information about the document (if message contains document) |
| voice | object | Information about the voice message (if message contains voice) |
| audio | object | Information about the audio file (if message contains audio) |
Global connectivity platform for voice, SMS, and real-time communications
Notes:
Send SMS messages via Telnyx
| Field | Type | Default | Description |
|---|---|---|---|
| text | textarea | SMS message content | |
| to | text | Recipient phone number with country code (e.g., +1234567890) | |
| from | text | Your Telnyx phone number | |
| messaging_profile_id | text | Telnyx messaging profile ID (optional) | |
| type | select | SMS | Type of message to send |
| Name | Type | Description |
|---|---|---|
| message_id | string | Unique identifier for the sent message |
| status | string | Message sending status |
| cost | number | Cost of sending the message |
| success | boolean | Whether the SMS was sent successfully |
Make voice calls via Telnyx
| Field | Type | Default | Description |
|---|---|---|---|
| to | text | Recipient phone number with country code | |
| from | text | Your Telnyx phone number | |
| connection_id | text | Your Telnyx connection ID | |
| answer_url | text | Webhook URL for call control commands | |
| answering_machine_detection | select | disabled | Enable answering machine detection |
| Name | Type | Description |
|---|---|---|
| call_control_id | string | Unique identifier for call control |
| call_leg_id | string | Unique identifier for the call leg |
| call_session_id | string | Unique identifier for the call session |
| success | boolean | Whether the call was initiated successfully |
Send fax documents via Telnyx
| Field | Type | Default | Description |
|---|---|---|---|
| to | text | Recipient fax number with country code | |
| from | text | Your Telnyx fax number | |
| connection_id | text | Your Telnyx connection ID | |
| media_url | text | URL of the document to fax (PDF, TIFF, etc.) | |
| quality | select | normal | Fax transmission quality |
| Name | Type | Description |
|---|---|---|
| fax_id | string | Unique identifier for the fax |
| status | string | Fax sending status |
| success | boolean | Whether the fax was sent successfully |
Check your Telnyx account balance
| Name | Type | Description |
|---|---|---|
| balance | number | Current account balance |
| currency | string | Account currency |
| credit_limit | number | Account credit limit |
| success | boolean | Whether the balance check was successful |
List your Telnyx phone numbers
| Field | Type | Default | Description |
|---|---|---|---|
| filter | select | all | Filter numbers by status |
| Name | Type | Description |
|---|---|---|
| phone_numbers | array | List of your phone numbers |
| total_count | number | Total number of phone numbers |
| success | boolean | Whether the list was retrieved successfully |
SMS marketing and automation platform for bulk messaging and two-way SMS communication
Notes:
Send SMS messages to single or multiple recipients
| Field | Type | Default | Description |
|---|---|---|---|
| message | textarea | SMS message content (max 1600 characters) | |
| phones | textarea | Phone numbers separated by commas (e.g., +1234567890, +0987654321) | |
| from | text | Custom sender ID (if enabled on your account) |
| Name | Type | Description |
|---|---|---|
| message_id | string | Unique identifier for the sent message |
| sent_count | number | Number of messages successfully sent |
| cost | number | Total cost of sending the messages |
| success | boolean | Whether the SMS was sent successfully |
Check your TextMagic account balance
| Name | Type | Description |
|---|---|---|
| balance | number | Current account balance |
| currency | string | Account currency |
| success | boolean | Whether the balance check was successful |
Check the delivery status of a sent message
| Field | Type | Default | Description |
|---|---|---|---|
| message_id | text | ID of the message to check status for |
| Name | Type | Description |
|---|---|---|
| status | string | Message delivery status |
| sent_at | string | When the message was sent |
| delivered_at | string | When the message was delivered |
| success | boolean | Whether the status check was successful |
Add a new contact to your TextMagic address book
| Field | Type | Default | Description |
|---|---|---|---|
| phone | text | Contact phone number with country code | |
| first_name | text | Contact first name | |
| last_name | text | Contact last name | |
| text | Contact email address |
| Name | Type | Description |
|---|---|---|
| contact_id | number | ID of the created contact |
| phone | string | Contact phone number |
| name | string | Contact full name |
| success | boolean | Whether the contact was created successfully |
Business text messaging platform for customer communication and support
Notes:
Send a text message to a contact
| Field | Type | Default | Description |
|---|---|---|---|
| message | textarea | Text message content | |
| to_number | text | Recipient phone number with country code (e.g., +1234567890) | |
| from_number | text | Your TextUs number (optional, uses default) | |
| template_id | text | Message template ID (optional) |
| Name | Type | Description |
|---|---|---|
| message_id | string | Unique identifier for the sent message |
| conversation_id | string | ID of the conversation thread |
| status | string | Message delivery status |
| success | boolean | Whether the message was sent successfully |
Create a new contact in TextUs
| Field | Type | Default | Description |
|---|---|---|---|
| phone_number | text | Contact phone number with country code | |
| first_name | text | Contact first name | |
| last_name | text | Contact last name | |
| text | Contact email address | ||
| company | text | Contact company name | |
| custom_fields | textarea | Custom fields as JSON object (optional) |
| Name | Type | Description |
|---|---|---|
| contact_id | string | ID of the created contact |
| phone_number | string | Contact phone number |
| full_name | string | Contact full name |
| success | boolean | Whether the contact was created successfully |
Update an existing contact
| Field | Type | Default | Description |
|---|---|---|---|
| contact_id | text | ID of the contact to update | |
| first_name | text | Updated first name | |
| last_name | text | Updated last name | |
| text | Updated email address | ||
| company | text | Updated company name |
| Name | Type | Description |
|---|---|---|
| contact_id | string | ID of the updated contact |
| success | boolean | Whether the contact was updated successfully |
Retrieve conversations from TextUs
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of conversations to retrieve (default: 50) |
| status | select | all | Filter conversations by status |
| Name | Type | Description |
|---|---|---|
| conversations | array | List of conversations |
| total_count | number | Total number of conversations |
| success | boolean | Whether conversations were retrieved successfully |
Get messages from a conversation
| Field | Type | Default | Description |
|---|---|---|---|
| conversation_id | text | ID of the conversation to get messages from | |
| limit | number | 100 | Maximum number of messages to retrieve (default: 100) |
| Name | Type | Description |
|---|---|---|
| messages | array | List of messages in the conversation |
| message_count | number | Number of messages returned |
| success | boolean | Whether messages were retrieved successfully |
Assign a conversation to a team member
| Field | Type | Default | Description |
|---|---|---|---|
| conversation_id | text | ID of the conversation to assign | |
| user_id | text | ID of the team member to assign to |
| Name | Type | Description |
|---|---|---|
| conversation_id | string | ID of the assigned conversation |
| assigned_to | string | User ID of the assignee |
| success | boolean | Whether the conversation was assigned successfully |
Enterprise programmatic advertising platform. Access premium inventory, advanced audience targeting, real-time bidding, connected TV advertising, and AI-powered bid optimization across all digital channels.
Notes:
Retrieve programmatic advertising campaigns from The Trade Desk
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | Filter campaigns by status | |
| objective | select | Filter campaigns by objective |
| Name | Type | Description |
|---|---|---|
| campaigns | array | List of programmatic advertising campaigns |
| totalCount | number | Total number of campaigns |
Retrieve ad groups from programmatic campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | Filter by specific campaign ID | |
| status | select | Filter ad groups by status |
| Name | Type | Description |
|---|---|---|
| adGroups | array | List of ad groups |
| totalCount | number |
Retrieve advertising creatives and assets
| Field | Type | Default | Description |
|---|---|---|---|
| adGroupId | text | Filter by specific ad group ID | |
| creativeType | select | Filter creatives by type |
| Name | Type | Description |
|---|---|---|
| creatives | array | List of advertising creatives |
| totalCount | number |
Get programmatic advertising performance reports
| Field | Type | Default | Description |
|---|---|---|---|
| reportType | select | Type of performance report to generate | |
| startDate | text | Start date (YYYY-MM-DD format) | |
| endDate | text | End date (YYYY-MM-DD format) | |
| metrics | textarea | ["Impressions", "Clicks", "CTR", "MediaCost", "CPM", "CPC", "Conversions", "ConversionRate", "ROAS"] | Performance metrics to include (JSON array) |
| currency | text | USD | Currency for cost metrics |
| Name | Type | Description |
|---|---|---|
| reportData | array | Performance metrics and analytics data |
| totalSpend | number | Total media spend for the period |
| totalImpressions | number | |
| totalClicks | number | |
| totalConversions | number | |
| averageRoas | number | Average return on advertising spend |
Create a new programmatic advertising campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignName | text | Name for the new campaign | |
| objective | select | Campaign objective | |
| budgetType | select | Type of budget allocation | |
| budget | number | Budget amount (required for Daily/Flight budget types) | |
| startDate | text | Campaign start date (YYYY-MM-DD) | |
| endDate | text | Campaign end date (YYYY-MM-DD) |
| Name | Type | Description |
|---|---|---|
| campaignId | string | ID of the created campaign |
| campaignName | string | |
| status | string |
Create a new ad group within a campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | ID of the campaign to create ad group in | |
| adGroupName | text | Name for the new ad group | |
| bidType | select | Bidding strategy for the ad group | |
| maxBid | number | Maximum bid amount | |
| audienceTargeting | textarea | Audience targeting configuration (JSON format) | |
| geoTargeting | textarea | Geographic targeting configuration (JSON format) |
| Name | Type | Description |
|---|---|---|
| adGroupId | string | ID of the created ad group |
| adGroupName | string | |
| status | string |
Update an existing campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | ID of the campaign to update | |
| updates | textarea | Campaign fields to update (JSON format) |
| Name | Type | Description |
|---|---|---|
| campaignId | string | |
| success | boolean |
Retrieve audience segments and targeting options
| Field | Type | Default | Description |
|---|---|---|---|
| audienceType | select | Filter audiences by type | |
| provider | text | Filter by specific data provider |
| Name | Type | Description |
|---|---|---|
| audiences | array | List of available audience segments |
| totalCount | number |
Retrieve available programmatic inventory and supply sources
| Field | Type | Default | Description |
|---|---|---|---|
| inventoryType | select | Filter inventory by type | |
| geography | text | Geographic region for inventory |
| Name | Type | Description |
|---|---|---|
| inventory | array | List of available inventory sources |
| totalCount | number |
Get bid optimization recommendations for campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | Campaign to get recommendations for | |
| adGroupId | text | Ad group to get recommendations for | |
| objective | select | Optimization objective for recommendations |
| Name | Type | Description |
|---|---|---|
| recommendations | array | Bid optimization recommendations |
| currentBid | number | |
| recommendedBid | number | |
| expectedImpact | object | Expected performance impact of recommendations |
Live chat and chatbot automation platform
Notes:
Send a message in a Tidio conversation
| Field | Type | Default | Description |
|---|---|---|---|
| conversation_id | text | ID of the conversation to send message to | |
| content | textarea | Content of the message | |
| sender_type | select | operator | Who is sending the message |
| Name | Type | Description |
|---|---|---|
| message_id | string | The ID of the sent message |
| content | string | The message content |
| created_at | string | When the message was sent |
Retrieve details of a specific conversation
| Field | Type | Default | Description |
|---|---|---|---|
| conversation_id | text | ID of the conversation to retrieve |
| Name | Type | Description |
|---|---|---|
| conversation_id | string | The conversation ID |
| status | string | Conversation status |
| visitor_name | string | Name of the visitor |
| visitor_email | string | Email of the visitor |
| created_at | string | When the conversation was created |
| updated_at | string | When the conversation was last updated |
Get a list of conversations
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Number of conversations to retrieve (max 50) |
| status | select | all | Filter conversations by status |
| Name | Type | Description |
|---|---|---|
| conversations | array | Array of conversation objects |
| total_count | number | Total number of conversations |
Update conversation status or properties
| Field | Type | Default | Description |
|---|---|---|---|
| conversation_id | text | ID of the conversation to update | |
| status | select | New conversation status | |
| assigned_operator | text | ID of operator to assign (optional) |
| Name | Type | Description |
|---|---|---|
| conversation_id | string | The ID of the updated conversation |
| status | string | The updated status |
| updated_at | string | When the conversation was updated |
Create a new contact in Tidio
| Field | Type | Default | Description |
|---|---|---|---|
| text | Contact email address | ||
| name | text | Contact full name | |
| phone | text | Contact phone number | |
| city | text | Contact city | |
| country | text | Contact country |
| Name | Type | Description |
|---|---|---|
| contact_id | string | The ID of the created contact |
| string | Contact email | |
| name | string | Contact name |
| created_at | string | When the contact was created |
Retrieve details of a specific contact
| Field | Type | Default | Description |
|---|---|---|---|
| contact_id | text | ID of the contact to retrieve |
| Name | Type | Description |
|---|---|---|
| contact_id | string | The contact ID |
| string | Contact email | |
| name | string | Contact name |
| phone | string | Contact phone |
| city | string | Contact city |
| country | string | Contact country |
Manage TikTok advertising campaigns, ad groups, creatives, and get performance analytics. Create and optimize short-form video advertising campaigns.
Advanced TikTok data extraction with enhanced profile analytics, shop products, and comment analysis
Notes:
Extract detailed profile information including followers, posts, and engagement
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | TikTok profile URLs to scrape. Example: https://www.tiktok.com/@username | |
| country | text | Optional country code (e.g., US, FR, GB) |
| Name | Type | Description |
|---|---|---|
| profiles | array | Detailed profile information with metrics |
| count | number | Number of profiles scraped |
Find profiles using TikTok search URLs
| Field | Type | Default | Description |
|---|---|---|---|
| searchUrls | textarea | TikTok search/explore URLs. Example: https://www.tiktok.com/search?q=music | |
| country | text | Optional country code for localized results |
| Name | Type | Description |
|---|---|---|
| profiles | array | Profiles found from search |
| count | number | Number of profiles discovered |
Extract specific posts/videos by their direct URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Direct TikTok post/video URLs | |
| country | text | Optional country code |
| Name | Type | Description |
|---|---|---|
| posts | array | Detailed post information with engagement metrics |
| count | number | Number of posts scraped |
Find posts using hashtags or keywords
| Field | Type | Default | Description |
|---|---|---|---|
| keywords | textarea | Keywords or hashtags to search. Examples: #artist, music, #funnydogs | |
| country | text | Optional country code for localized content |
| Name | Type | Description |
|---|---|---|
| posts | array | Posts matching the keywords |
| count | number | Number of posts discovered |
Extract posts from specific user profiles with advanced filters
| Field | Type | Default | Description |
|---|---|---|---|
| profileUrl | text | TikTok profile URL to extract posts from | |
| numOfPosts | number | 10 | Number of posts to retrieve (0 for all) |
| whatToCollect | select | Posts & Reposts | Type of content to collect |
| startDate | text | Optional start date (YYYY-MM-DD) | |
| endDate | text | Optional end date (YYYY-MM-DD) |
| Name | Type | Description |
|---|---|---|
| posts | array | Posts from the specified profile |
| count | number | Number of posts retrieved |
Fast API for bulk extraction from discover, channel, or music URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Discover, channel, music, or explore URLs |
| Name | Type | Description |
|---|---|---|
| posts | array | Posts extracted from provided URLs |
| count | number | Total number of posts extracted |
Extract TikTok Shop product details
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | TikTok Shop product URLs |
| Name | Type | Description |
|---|---|---|
| products | array | Detailed product information with pricing |
| count | number | Number of products scraped |
Browse and extract products from TikTok Shop categories
| Field | Type | Default | Description |
|---|---|---|---|
| categoryUrls | textarea | TikTok Shop category URLs |
| Name | Type | Description |
|---|---|---|
| products | array | Products from the specified categories |
| count | number | Number of products discovered |
Extract comments from TikTok posts
| Field | Type | Default | Description |
|---|---|---|---|
| postUrls | textarea | TikTok post URLs to extract comments from |
| Name | Type | Description |
|---|---|---|
| comments | array | Comments with user info and engagement |
| count | number | Number of comments scraped |
Time tracking software - Track time across projects and generate detailed reports
Notes:
Get the currently running time entry if any
| Name | Type | Description |
|---|---|---|
| is_running | boolean | |
| entry_id | number | |
| description | string | |
| project_name | string | |
| duration | number | |
| started_at | string |
Start a new time tracking entry
| Field | Type | Default | Description |
|---|---|---|---|
| description | text | What are you working on? | |
| project_id | number | Optional project ID to assign this entry to | |
| tags | text | Optional tags for this entry |
| Name | Type | Description |
|---|---|---|
| entry_id | number | |
| description | string | |
| started_at | string |
Stop the currently running time entry
| Name | Type | Description |
|---|---|---|
| entry_id | number | |
| description | string | |
| duration | number | |
| stopped_at | string |
Get time entries for a specific date range
| Field | Type | Default | Description |
|---|---|---|---|
| start_date | text | today | Start date for the range |
| end_date | text | today | End date for the range |
| Name | Type | Description |
|---|---|---|
| entries | array | |
| total_duration | number | |
| entry_count | number |
Get all projects from your workspace
| Field | Type | Default | Description |
|---|---|---|---|
| active_only | checkbox | 1 | Show only active projects |
| Name | Type | Description |
|---|---|---|
| projects | array | |
| project_count | number |
Create a new project in your workspace
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the new project | |
| color | text | #0b83d9 | Project color in hex format |
| is_private | checkbox | Make this project private |
| Name | Type | Description |
|---|---|---|
| project_id | number | |
| name | string | |
| created_at | string |
Get time tracking summary for a date range
| Field | Type | Default | Description |
|---|---|---|---|
| start_date | text | today | Start date for the report |
| end_date | text | today | End date for the report |
| group_by | select | projects | How to group the report data |
| Name | Type | Description |
|---|---|---|
| total_milliseconds | number | |
| total_seconds | number | |
| groups | array |
Enhanced wiki and issue tracking system for software development projects
Notes:
Create a new ticket in Trac
| Field | Type | Default | Description |
|---|---|---|---|
| summary | text | The summary of the ticket | |
| description | textarea | Description of the ticket | |
| type | select | defect | The type of ticket |
| Name | Type | Description |
|---|---|---|
| ticket_id | string | The unique ID of the created ticket |
Continuous integration service for GitHub projects and open source
Notes:
Retrieve a list of repositories in Travis CI
| Field | Type | Default | Description |
|---|---|---|---|
| active_only | checkbox | Only return active repositories | |
| limit | number | 25 | Maximum number of repositories to retrieve |
| Name | Type | Description |
|---|---|---|
| repositories | array | List of Travis CI repositories |
| count | number | Number of repositories returned |
Get detailed information about a specific repository
| Field | Type | Default | Description |
|---|---|---|---|
| repository_slug | text | Repository slug in format: owner/repo-name |
| Name | Type | Description |
|---|---|---|
| repository_name | string | Name of the repository |
| active | boolean | Whether the repository is active in Travis CI |
| default_branch | string | Default branch name |
| github_language | string | Primary programming language |
| last_build_number | string | Number of the most recent build |
Retrieve recent builds for a repository
| Field | Type | Default | Description |
|---|---|---|---|
| repository_slug | text | Repository slug in format: owner/repo-name | |
| branch | text | Filter by specific branch (optional) | |
| state | select | ||
| limit | number | 25 | Maximum number of builds to retrieve |
| Name | Type | Description |
|---|---|---|
| builds | array | List of recent builds |
| count | number | Number of builds returned |
Get detailed information about a specific build
| Field | Type | Default | Description |
|---|---|---|---|
| build_id | text | Unique identifier of the build |
| Name | Type | Description |
|---|---|---|
| build_number | string | Sequential build number |
| state | string | Current state of the build |
| started_at | string | When the build started |
| finished_at | string | When the build finished |
| duration | number | Build duration in seconds |
| branch | string | Branch that was built |
| commit_message | string | Commit message that triggered the build |
Trigger a new build for a repository
| Field | Type | Default | Description |
|---|---|---|---|
| repository_slug | text | Repository slug in format: owner/repo-name | |
| branch | text | Branch to build (defaults to default branch) | |
| message | text | Custom message for the build (optional) | |
| config | textarea | Override build configuration (optional) |
| Name | Type | Description |
|---|---|---|
| build_id | string | Unique identifier of the triggered build |
| build_number | string | Sequential build number |
| state | string | Initial state of the build |
| success | boolean | Whether the build was triggered successfully |
Cancel a running build
| Field | Type | Default | Description |
|---|---|---|---|
| build_id | text | Unique identifier of the build to cancel |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the cancellation was successful |
| message | string | Details about the operation |
Restart a completed build
| Field | Type | Default | Description |
|---|---|---|---|
| build_id | text | Unique identifier of the build to restart |
| Name | Type | Description |
|---|---|---|
| build_id | string | ID of the new build created by restart |
| success | boolean | Whether the restart was successful |
| message | string | Details about the operation |
Retrieve jobs for a specific build
| Field | Type | Default | Description |
|---|---|---|---|
| build_id | text | Unique identifier of the build |
| Name | Type | Description |
|---|---|---|
| jobs | array | List of jobs in the build |
| count | number | Number of jobs returned |
Retrieve cache information for a repository
| Field | Type | Default | Description |
|---|---|---|---|
| repository_slug | text | Repository slug in format: owner/repo-name |
| Name | Type | Description |
|---|---|---|
| caches | array | List of repository caches |
| count | number | Number of caches returned |
Visual project management with boards, lists, and cards for organizing tasks and workflows
Notes:
Create a new card in a Trello list
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | The name of the card to create | |
| desc | textarea | Detailed description of the card | |
| list_id | text | The ID of the list to add the card to | |
| due | text | Due date in ISO format (YYYY-MM-DDTHH:MM:SSZ) | |
| pos | select | bottom | Position of the card in the list |
| Name | Type | Description |
|---|---|---|
| card_id | string | The unique ID of the created card |
| card_url | string | The URL to view the card in Trello |
| card_name | string | The name of the created card |
Update an existing card in Trello
| Field | Type | Default | Description |
|---|---|---|---|
| card_id | text | The ID of the card to update | |
| name | text | New name for the card | |
| desc | textarea | Updated description of the card | |
| closed | select | Archive or unarchive the card | |
| idList | text | ID of list to move the card to |
| Name | Type | Description |
|---|---|---|
| card_id | string | The unique ID of the updated card |
| success | boolean | Whether the update was successful |
Retrieve details of a specific card
| Field | Type | Default | Description |
|---|---|---|---|
| card_id | text | The ID of the card to retrieve |
| Name | Type | Description |
|---|---|---|
| card_id | string | |
| name | string | |
| desc | string | |
| closed | boolean | |
| due | string | |
| url | string | |
| list | object | |
| board | object |
List cards from a board or list
| Field | Type | Default | Description |
|---|---|---|---|
| board_id | text | ID of board to list cards from | |
| list_id | text | ID of specific list to get cards from | |
| filter | select | open | Filter cards by status |
| Name | Type | Description |
|---|---|---|
| cards | array | Array of card objects |
| count | number | Number of cards returned |
Create a new board in Trello
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | The name of the board to create | |
| desc | textarea | Description of the board | |
| defaultLists | select | true | Whether to create default lists (To Do, Doing, Done) |
| prefs_permissionLevel | select | private | Who can see this board |
| Name | Type | Description |
|---|---|---|
| board_id | string | The unique ID of the created board |
| board_url | string | The URL to view the board in Trello |
| board_name | string | The name of the created board |
Create a new list in a Trello board
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | The name of the list to create | |
| board_id | text | The ID of the board to create the list in | |
| pos | select | bottom | Position of the list on the board |
| Name | Type | Description |
|---|---|---|
| list_id | string | The unique ID of the created list |
| list_name | string | The name of the created list |
Instagram analytics and influencer verification platform with fake follower detection
Notes:
Verify Instagram influencer authenticity and analytics
| Field | Type | Default | Description |
|---|---|---|---|
| username | text |
| Name | Type | Description |
|---|---|---|
| verification | object |
End-to-end encrypted cloud storage for business security
Notes:
Upload an encrypted file to Tresorit
| Name | Type | Required | Description |
|---|---|---|---|
| file_content | file | Yes | The file content to upload and encrypt |
| Field | Type | Default | Description |
|---|---|---|---|
| tresor_id | text | ID of the Tresor (encrypted folder) to upload to | |
| file_name | text | Name for the uploaded file including extension |
| Name | Type | Description |
|---|---|---|
| file_id | string | Unique identifier of the uploaded file |
| file_name | string | Name of the uploaded file |
| file_size | number | Size of the uploaded file in bytes |
Download and decrypt a file from Tresorit
| Field | Type | Default | Description |
|---|---|---|---|
| file_id | text | ID of the file to download |
| Name | Type | Description |
|---|---|---|
| file_content | binary | The decrypted file content |
| file_name | string | Original name of the file |
| file_size | number | Size of the file in bytes |
List available Tresors (encrypted folders)
| Name | Type | Description |
|---|---|---|
| tresors | array | List of available Tresors |
| total_count | number | Total number of Tresors |
List files in a Tresor
| Field | Type | Default | Description |
|---|---|---|---|
| tresor_id | text | ID of the Tresor to list files from |
| Name | Type | Description |
|---|---|---|
| files | array | List of files in the Tresor |
| total_count | number | Total number of files |
Delete a file from Tresorit
| Field | Type | Default | Description |
|---|---|---|---|
| file_id | text | ID of the file to delete |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the file was successfully deleted |
| message | string | Status message |
Create a secure share link for a file
| Field | Type | Default | Description |
|---|---|---|---|
| file_id | text | ID of the file to share | |
| password | password | Optional password protection for the share | |
| expiration_hours | number | Number of hours until the share expires |
| Name | Type | Description |
|---|---|---|
| share_url | string | Secure URL to access the file |
| share_id | string | ID of the created share |
| expires_at | string | When the share link expires |
SMS and email marketing automation platform with multi-channel campaigns
Notes:
Send SMS messages via Trumpia
| Field | Type | Default | Description |
|---|---|---|---|
| message | textarea | SMS message content | |
| recipients | textarea | Phone numbers separated by commas or newlines | |
| from_number | text | Sender phone number (optional) | |
| send_date | text | Schedule message (MM/DD/YYYY HH:MM format, optional) |
| Name | Type | Description |
|---|---|---|
| campaign_id | string | Unique identifier for the SMS campaign |
| recipients_count | number | Number of recipients |
| success | boolean | Whether the SMS was sent successfully |
Send email campaigns via Trumpia
| Field | Type | Default | Description |
|---|---|---|---|
| subject | text | Email subject line | |
| message | textarea | Email message content (HTML supported) | |
| recipients | textarea | Email addresses separated by commas or newlines | |
| from_email | text | Sender email address (optional) | |
| from_name | text | Sender name (optional) |
| Name | Type | Description |
|---|---|---|
| campaign_id | string | Unique identifier for the email campaign |
| recipients_count | number | Number of email recipients |
| success | boolean | Whether the email was sent successfully |
Add a contact to Trumpia
| Field | Type | Default | Description |
|---|---|---|---|
| phone_number | text | Contact phone number | |
| text | Contact email address | ||
| first_name | text | Contact first name | |
| last_name | text | Contact last name | |
| country | text | Contact country | |
| category | text | Contact category/group |
| Name | Type | Description |
|---|---|---|
| contact_id | string | ID of the added contact |
| phone_number | string | Contact phone number |
| string | Contact email address | |
| success | boolean | Whether the contact was added successfully |
Create a new contact category/group
| Field | Type | Default | Description |
|---|---|---|---|
| category_name | text | Name for the new category | |
| description | textarea | Description of the category |
| Name | Type | Description |
|---|---|---|
| category_id | string | ID of the created category |
| category_name | string | Name of the created category |
| success | boolean | Whether the category was created successfully |
Retrieve contacts from Trumpia
| Field | Type | Default | Description |
|---|---|---|---|
| category | text | Filter by category (optional) | |
| limit | number | 100 | Maximum number of contacts to retrieve (default: 100) |
| Name | Type | Description |
|---|---|---|
| contacts | array | List of contacts |
| total_count | number | Total number of contacts |
| success | boolean | Whether contacts were retrieved successfully |
Get campaign history and statistics
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_type | select | all | Filter by campaign type |
| limit | number | 50 | Maximum number of campaigns to retrieve (default: 50) |
| Name | Type | Description |
|---|---|---|
| campaigns | array | List of campaigns |
| count | number | Number of campaigns returned |
| success | boolean | Whether campaigns were retrieved successfully |
Check available SMS and email credits
| Name | Type | Description |
|---|---|---|
| sms_credits | number | Available SMS credits |
| email_credits | number | Available email credits |
| voice_credits | number | Available voice credits |
| success | boolean | Whether credits were retrieved successfully |
Customer review and reputation management platform
Notes:
Get reviews for a business on Trustpilot
| Field | Type | Default | Description |
|---|---|---|---|
| business_unit_id | text | Trustpilot Business Unit ID | |
| per_page | number | 20 | Number of reviews to return (max 100) |
| page | number | 1 | Page number to retrieve |
| order_by | select | createdat.desc | Sort order for reviews |
| Name | Type | Description |
|---|---|---|
| reviews | array | Array of business reviews |
| total_count | number | Total number of reviews |
| page_info | object | Pagination information |
Get business profile information from Trustpilot
| Field | Type | Default | Description |
|---|---|---|---|
| business_unit_id | text | Trustpilot Business Unit ID |
| Name | Type | Description |
|---|---|---|
| business | object | Complete business profile information |
Search for businesses on Trustpilot
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the business to search for | |
| website | text | Website URL to search for | |
| country | text | Two-letter country code (e.g., US, GB) | |
| per_page | number | 20 | Number of results to return (max 100) |
| Name | Type | Description |
|---|---|---|
| businesses | array | Array of found businesses |
| total_count | number | Total number of businesses found |
Get reviews for a specific product
| Field | Type | Default | Description |
|---|---|---|---|
| business_unit_id | text | Trustpilot Business Unit ID | |
| sku | text | Product SKU or identifier | |
| per_page | number | 20 | Number of reviews to return (max 100) |
| Name | Type | Description |
|---|---|---|
| reviews | array | Array of product reviews |
| total_count | number | Total number of product reviews |
Enable seamless communication by integrating Twilio’s messaging, voice, and video services. Automate SMS notifications, customer support, and more with powerful API capabilities.
Notes:
| Field | Type | Default | Description |
|---|---|---|---|
| secret | string | ||
| webhook_url | text | Configure this URL in your Twilio phone number settings for incoming calls. | |
| welcome_message | string | Hello, how can I help you today? |
| Name | Type | Description |
|---|---|---|
| from | string | |
| to | string | |
| call_sid | string | |
| speech | string |
| Field | Type | Default | Description |
|---|---|---|---|
| secret | string | ||
| webhook_url | text | Configure this URL in your Twilio phone number settings for incoming SMS. | |
| regenerate_secret_button | button | ||
| phone_number_sid | select |
| Name | Type | Description |
|---|---|---|
| from | string | |
| to | string | |
| body | string | |
| message_sid | string |
Tweet automation, audience analysis, and engagement tracking with Twitter API v2
Notes:
Create a new tweet on Twitter
| Field | Type | Default | Description |
|---|---|---|---|
| text | textarea | The text content of your tweet (max 280 characters) | |
| reply_to_tweet_id | text | Tweet ID to reply to (optional) | |
| poll_options | textarea | Poll options as JSON array, e.g. ["Option 1", "Option 2"] | |
| poll_duration_minutes | number | 1440 | Poll duration in minutes (5-10080, default: 1440) |
| Name | Type | Description |
|---|---|---|
| tweet_id | string | ID of the created tweet |
| tweet_url | string | Public URL of the created tweet |
| text | string | The text content of the tweet |
| success | boolean |
Delete a tweet from Twitter
| Field | Type | Default | Description |
|---|---|---|---|
| tweet_id | text | The ID of the tweet to delete |
| Name | Type | Description |
|---|---|---|
| deleted | boolean | |
| success | boolean |
Like a tweet on Twitter
| Field | Type | Default | Description |
|---|---|---|---|
| tweet_id | text | The ID of the tweet to like |
| Name | Type | Description |
|---|---|---|
| liked | boolean | |
| success | boolean |
Retweet a tweet on Twitter
| Field | Type | Default | Description |
|---|---|---|---|
| tweet_id | text | The ID of the tweet to retweet |
| Name | Type | Description |
|---|---|---|
| retweeted | boolean | |
| success | boolean |
Follow a user on Twitter
| Field | Type | Default | Description |
|---|---|---|---|
| username | text | The username to follow (without @) |
| Name | Type | Description |
|---|---|---|
| following | boolean | |
| pending | boolean | |
| success | boolean |
Get detailed information about a Twitter user
| Field | Type | Default | Description |
|---|---|---|---|
| username | text | The username to get info for (without @) |
| Name | Type | Description |
|---|---|---|
| user_id | string | |
| username | string | |
| name | string | |
| description | string | |
| followers_count | number | |
| following_count | number | |
| tweet_count | number | |
| verified | boolean | |
| profile_image_url | string | |
| created_at | string | |
| success | boolean |
Get recent tweets from a specific user
| Field | Type | Default | Description |
|---|---|---|---|
| username | text | The username to get tweets from (without @) | |
| max_results | number | 10 | Maximum number of tweets to return (5-100, default: 10) |
| exclude_replies | select | false | Whether to exclude reply tweets |
| Name | Type | Description |
|---|---|---|
| tweets | array | Array of tweet objects |
| count | number | |
| success | boolean |
Get engagement metrics for a specific tweet
| Field | Type | Default | Description |
|---|---|---|---|
| tweet_id | text | The ID of the tweet to analyze |
| Name | Type | Description |
|---|---|---|
| tweet_id | string | |
| text | string | |
| retweet_count | number | |
| reply_count | number | |
| like_count | number | |
| quote_count | number | |
| bookmark_count | number | |
| impression_count | number | |
| created_at | string | |
| success | boolean |
Search for tweets using keywords or phrases
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Search query using Twitter search operators | |
| max_results | number | 10 | Maximum number of tweets to return (10-100, default: 10) |
| result_type | select | recent | Type of search results to return |
| Name | Type | Description |
|---|---|---|
| tweets | array | Array of matching tweet objects |
| count | number | |
| query | string | |
| success | boolean |
Get followers of a specific user
| Field | Type | Default | Description |
|---|---|---|---|
| username | text | The username to get followers for (without @) | |
| max_results | number | 100 | Maximum number of followers to return (1-1000, default: 100) |
| Name | Type | Description |
|---|---|---|
| followers | array | Array of follower user objects |
| count | number | |
| success | boolean |
Promoted tweets and audience targeting platform for Twitter advertising campaigns
Notes:
Retrieve Twitter Ads accounts accessible to the authenticated user
| Name | Type | Description |
|---|---|---|
| accounts | array | Array of Twitter Ads account objects |
| totalAccounts | number | Number of accounts accessible |
Retrieve campaigns from Twitter Ads account
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_state | select | Filter campaigns by state | |
| funding_instrument_id | text | Filter by funding instrument (payment method) |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of campaign objects with details and metrics |
| totalCampaigns | number | Total number of campaigns retrieved |
Create a new Twitter Ads campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_name | text | Name for the new campaign | |
| funding_instrument_id | text | Payment method ID for the campaign | |
| objective | select | Marketing objective for the campaign | |
| daily_budget_amount_local_micro | number | Daily budget in micro currency units (e.g., 1000000 = $1.00) | |
| total_budget_amount_local_micro | number | Total budget in micro currency units |
| Name | Type | Description |
|---|---|---|
| campaign | object | Details of the newly created campaign |
| campaignId | string | Unique identifier for the created campaign |
| success | boolean | Whether the campaign was created successfully |
Update an existing Twitter Ads campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | ID of the campaign to update | |
| campaign_name | text | New name for the campaign | |
| entity_status | select | New campaign status | |
| daily_budget_amount_local_micro | number | New daily budget in micro currency units |
| Name | Type | Description |
|---|---|---|
| campaign | object | Details of the updated campaign |
| success | boolean | Whether the campaign was updated successfully |
Retrieve line items (ad groups) from a campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | ID of the campaign to get line items from | |
| entity_status | select | Filter by line item status |
| Name | Type | Description |
|---|---|---|
| lineItems | array | Array of line item objects (ad groups) |
| totalLineItems | number | Total number of line items retrieved |
Retrieve promoted tweets from a line item
| Field | Type | Default | Description |
|---|---|---|---|
| line_item_id | text | ID of the line item to get promoted tweets from | |
| entity_status | select | Filter by promoted tweet status |
| Name | Type | Description |
|---|---|---|
| promotedTweets | array | Array of promoted tweet objects |
| totalPromotedTweets | number | Total number of promoted tweets retrieved |
Retrieve performance statistics for campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_ids | text | Comma-separated campaign IDs (leave empty for all) | |
| start_time | text | Start date in YYYY-MM-DD format | |
| end_time | text | End date in YYYY-MM-DD format | |
| granularity | select | TOTAL | Time granularity for statistics |
| metrics | text | impressions,clicks,spend,engagements | Comma-separated list of metrics to retrieve |
| Name | Type | Description |
|---|---|---|
| stats | array | Array of performance statistics for campaigns |
| summary | object | Aggregated performance summary across all campaigns |
Retrieve available targeting options
| Field | Type | Default | Description |
|---|---|---|---|
| targeting_type | select | Type of targeting criteria to retrieve | |
| q | text | Search term to filter targeting options |
| Name | Type | Description |
|---|---|---|
| targetingCriteria | array | Array of available targeting options |
| totalCriteria | number | Number of targeting criteria available |
Lightning-fast Twitter/X scraper for tweets, profiles, searches, and lists. Advanced filtering for verified users, media content, and comprehensive data extraction at 30-80 tweets per second.
Notes:
Execute Twitter scraper and return dataset items directly
| Field | Type | Default | Description |
|---|---|---|---|
| startUrls | textarea | Twitter/X URLs to scrape (one per line). Supports tweets, profiles, searches, or lists. | |
| searchTerms | textarea | Search terms to find on Twitter/X (one per line). See Twitter advanced search guide. | |
| twitterHandles | textarea | Twitter handles to search (one per line, without @) | |
| conversationIds | textarea | Conversation IDs to scrape (one per line) | |
| maxItems | number | Maximum number of tweets to scrape | |
| sort | select | Sort search results (only works with search terms and search URLs) | |
| tweetLanguage | select | Filter tweets by language (ISO 639-1 code) | |
| onlyVerifiedUsers | checkbox | Only return tweets from verified users | |
| onlyTwitterBlue | checkbox | Only return tweets from Twitter Blue subscribers | |
| onlyImage | checkbox | Only return tweets that contain images | |
| onlyVideo | checkbox | Only return tweets that contain videos | |
| onlyQuote | checkbox | Only return tweets that are quotes | |
| author | text | Return tweets sent by this user (Twitter handle without @) | |
| inReplyTo | text | Return tweets that are replies to this user (Twitter handle without @) | |
| mentioning | text | Return tweets mentioning this user (Twitter handle without @) | |
| geotaggedNear | text | Return tweets sent near this location | |
| withinRadius | text | Return tweets within this radius of the location | |
| geocode | text | Return tweets within radius of latitude/longitude (format: lat,lng,radius) | |
| placeObjectId | text | Return tweets tagged with this place ID | |
| minimumRetweets | number | Return tweets with at least this many retweets | |
| minimumFavorites | number | Return tweets with at least this many favorites/likes | |
| minimumReplies | number | Return tweets with at least this many replies | |
| start | text | Return tweets sent after this date (YYYY-MM-DD format) | |
| end | text | Return tweets sent before this date (YYYY-MM-DD format) | |
| includeSearchTerms | checkbox | Add search term information to each tweet result | |
| customMapFunction | textarea | Custom JavaScript function to transform results (advanced users only) |
| Name | Type | Description |
|---|---|---|
| data | array | Array of scraped tweet data with comprehensive information |
| count | number | Number of tweets successfully scraped |
| metadata | object | Additional information about the scraping operation |
Start async Twitter scraping run and return run information
| Field | Type | Default | Description |
|---|---|---|---|
| startUrls | textarea | Twitter/X URLs to scrape (one per line) | |
| searchTerms | textarea | Search terms to find on Twitter/X (one per line) | |
| twitterHandles | textarea | Twitter handles to search (one per line, without @) | |
| maxItems | number | Maximum number of tweets to scrape | |
| onlyVerifiedUsers | checkbox | Only return tweets from verified users | |
| onlyImage | checkbox | Only return tweets that contain images | |
| onlyVideo | checkbox | Only return tweets that contain videos |
| Name | Type | Description |
|---|---|---|
| runId | string | Unique identifier for the scraping run |
| status | string | Current status of the scraping run |
| datasetId | string | ID of the dataset where results will be stored |
Execute Twitter scraper and return key-value store output
| Field | Type | Default | Description |
|---|---|---|---|
| startUrls | textarea | Twitter/X URLs to scrape (one per line) | |
| searchTerms | textarea | Search terms to find on Twitter/X (one per line) | |
| maxItems | number | Maximum number of tweets to scrape |
| Name | Type | Description |
|---|---|---|
| output | object | Key-value store output from the Twitter scraper |
| summary | object | Summary information about the scraping operation |
Interactive forms and surveys platform
Notes:
Create a new Typeform
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | Title of the form | |
| workspace_id | text | ID of workspace to create form in (optional) |
| Name | Type | Description |
|---|---|---|
| form_id | string | The ID of the created form |
| title | string | Form title |
| url | string | Public URL of the form |
| created_at | string | When the form was created |
Retrieve details of a specific form
| Field | Type | Default | Description |
|---|---|---|---|
| form_id | text | ID of the form to retrieve |
| Name | Type | Description |
|---|---|---|
| form_id | string | The form ID |
| title | string | Form title |
| description | string | Form description |
| url | string | Public URL of the form |
| created_at | string | When the form was created |
| fields | array | Array of form fields |
Get a list of your forms
| Field | Type | Default | Description |
|---|---|---|---|
| page_size | number | 25 | Number of forms to retrieve (max 200) |
| search | text | Search forms by title | |
| workspace_id | text | Filter by workspace ID |
| Name | Type | Description |
|---|---|---|
| forms | array | Array of form objects |
| total_items | number | Total number of forms |
Retrieve responses for a specific form
| Field | Type | Default | Description |
|---|---|---|---|
| form_id | text | ID of the form to get responses for | |
| page_size | number | 25 | Number of responses to retrieve (max 1000) |
| since | text | Only responses after this date (ISO 8601 format) | |
| until | text | Only responses before this date (ISO 8601 format) | |
| completed | select | all | Filter by completion status |
| Name | Type | Description |
|---|---|---|
| responses | array | Array of response objects |
| total_items | number | Total number of responses |
Delete a specific form response
| Field | Type | Default | Description |
|---|---|---|---|
| form_id | text | ID of the form | |
| response_id | text | ID of the response to delete |
| Name | Type | Description |
|---|---|---|
| deleted | boolean | Whether the response was successfully deleted |
| response_id | string | ID of the deleted response |
Update form title and settings
| Field | Type | Default | Description |
|---|---|---|---|
| form_id | text | ID of the form to update | |
| title | text | New form title | |
| description | textarea | Form description |
| Name | Type | Description |
|---|---|---|
| form_id | string | The ID of the updated form |
| title | string | Updated form title |
| updated_at | string | When the form was updated |
Stock photography and visual content platform with high-quality free photos
Notes:
Search for photos on Unsplash by query
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Keywords to search for (e.g., "nature", "business", "technology") | |
| per_page | number | 10 | Number of photos to return (max 30) |
| page | number | 1 | Page number for pagination |
| orientation | select | Filter by photo orientation | |
| color | select | Filter by photo color | |
| order_by | select | relevant | Sort order for results |
| Name | Type | Description |
|---|---|---|
| photos | array | Array of photo objects with URLs and metadata |
| total | number | Total number of photos matching the search |
| totalPages | number | Total number of pages available |
Get a random photo from Unsplash
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Limit to photos matching this topic | |
| orientation | select | Filter by photo orientation | |
| collections | text | Comma-separated collection IDs to limit search | |
| featured | select | false | Limit to featured photos only |
| count | number | 1 | Number of random photos to return (max 30) |
| Name | Type | Description |
|---|---|---|
| photos | array | Array of random photo objects |
| count | number | Number of photos returned |
Get detailed information about a specific photo
| Field | Type | Default | Description |
|---|---|---|---|
| photo_id | text | Unsplash photo ID or URL |
| Name | Type | Description |
|---|---|---|
| photo | object | Complete photo information including EXIF data |
| id | string | Unique photo identifier |
| description | string | Photo description or alt text |
| altDescription | string | Alternative description for accessibility |
| urls | object | Different sizes and formats of the photo |
| downloadUrl | string | URL to trigger download tracking |
Download a photo and trigger download tracking
| Field | Type | Default | Description |
|---|---|---|---|
| photo_id | text | Unsplash photo ID | |
| size | select | regular | Photo size to download |
| Name | Type | Description |
|---|---|---|
| downloadUrl | string | Direct download URL for the photo |
| attribution | string | Required attribution text for the photo |
| photographer | object | Information about the photographer |
| success | boolean | Whether download was triggered successfully |
Search for photo collections on Unsplash
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Keywords to search for in collection titles and descriptions | |
| per_page | number | 10 | Number of collections to return (max 30) |
| page | number | 1 | Page number for pagination |
| Name | Type | Description |
|---|---|---|
| collections | array | Array of collection objects |
| total | number | Total number of collections matching the search |
| totalPages | number | Total number of pages available |
Get photos from a specific Unsplash collection
| Field | Type | Default | Description |
|---|---|---|---|
| collection_id | text | Unsplash collection ID or URL | |
| per_page | number | 10 | Number of photos to return (max 30) |
| page | number | 1 | Page number for pagination |
| orientation | select | Filter by photo orientation |
| Name | Type | Description |
|---|---|---|
| photos | array | Array of photos from the collection |
| totalPhotos | number | Total number of photos in the collection |
Influencer discovery and campaign automation platform with advanced analytics and ROI tracking
Notes:
Search for influencers using advanced filtering criteria
| Field | Type | Default | Description |
|---|---|---|---|
| keywords | text | Keywords to search for in influencer profiles, bio, and content | |
| platforms | select | Social media platform to search on | |
| minFollowers | number | Minimum follower count | |
| maxFollowers | number | Maximum follower count | |
| location | text | Geographic location (city, country, or region) | |
| category | text | Content category or niche (e.g., fashion, fitness, tech) | |
| engagementRate | number | Minimum engagement rate percentage | |
| gender | select | Filter by influencer gender | |
| ageRange | select | Filter by influencer age range | |
| limit | number | 50 | Maximum number of influencers to return |
| Name | Type | Description |
|---|---|---|
| influencers | array | Array of influencer profiles with detailed metrics and demographics |
| count | number | Number of influencers found |
Create a new influencer marketing campaign
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the campaign | |
| description | textarea | Detailed description of the campaign goals and requirements | |
| type | select | Type of influencer campaign | |
| budget | number | Campaign budget in USD | |
| startDate | text | Campaign start date (YYYY-MM-DD format) | |
| endDate | text | Campaign end date (YYYY-MM-DD format) | |
| deliverables | textarea | {} | Campaign deliverables and requirements (JSON format) |
| Name | Type | Description |
|---|---|---|
| campaignId | string | The created campaign ID |
| success | boolean | Whether the campaign was created successfully |
Invite an influencer to participate in a campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | The ID of the campaign | |
| influencerId | text | The ID of the influencer to invite | |
| compensation | number | Compensation amount offered to the influencer | |
| message | textarea | Custom message to include with the invitation |
| Name | Type | Description |
|---|---|---|
| invitationId | string | The created invitation ID |
| success | boolean | Whether the invitation was sent successfully |
Retrieve all campaigns with optional filtering
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | Filter campaigns by status | |
| type | select | Filter campaigns by type | |
| limit | number | 50 | Maximum number of campaigns to return |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of campaign data with metrics and status |
| count | number | Number of campaigns returned |
Get detailed analytics and ROI metrics for a campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaignId | text | The ID of the campaign to get analytics for | |
| includeInfluencerBreakdown | checkbox | Include individual influencer performance metrics |
| Name | Type | Description |
|---|---|---|
| analytics | object | Comprehensive analytics including reach, engagement, conversions, and ROI |
| success | boolean | Whether the analytics data was retrieved successfully |
Get detailed profile and analytics for an influencer
| Field | Type | Default | Description |
|---|---|---|---|
| influencerId | text | The ID of the influencer | |
| includeAudienceAnalytics | checkbox | Include detailed audience demographics and analytics |
| Name | Type | Description |
|---|---|---|
| profile | object | Comprehensive influencer profile with metrics, demographics, and audience data |
| found | boolean | Whether the influencer profile was found |
Track and analyze the performance of influencer content
| Field | Type | Default | Description |
|---|---|---|---|
| contentUrl | text | URL of the content to track (Instagram post, YouTube video, etc.) | |
| campaignId | text | Associated campaign ID (optional) |
| Name | Type | Description |
|---|---|---|
| contentId | string | The tracked content ID |
| performance | object | Performance metrics including likes, comments, shares, and reach |
| success | boolean | Whether the content was tracked successfully |
Post videos, photos, and text to 10+ social platforms with one API call.
Notes:
Upload video to multiple social platforms
| Field | Type | Default | Description |
|---|---|---|---|
| video_url | text | URL to the video file | |
| title | text | Video title | |
| description | textarea | Video description | |
| platforms | text | Comma-separated: tiktok,instagram,youtube,linkedin,facebook,twitter,threads,pinterest,reddit,bluesky | |
| profile_username | text | Your Upload-Post profile username | |
| schedule_time | text | ISO8601 format for scheduling (e.g., 2025-01-15T10:00:00Z) |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| request_id | string | |
| status | string | |
| platform_results | object | |
| message | string |
Upload photo or carousel to multiple platforms
| Field | Type | Default | Description |
|---|---|---|---|
| photo_urls | textarea | One URL per line for carousel | |
| caption | textarea | Photo caption | |
| platforms | text | Comma-separated platform names | |
| profile_username | text | Your Upload-Post profile username | |
| schedule_time | text | ISO8601 format for scheduling |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| request_id | string | |
| status | string | |
| platform_results | object | |
| message | string |
Post text-only content to multiple platforms
| Field | Type | Default | Description |
|---|---|---|---|
| text | textarea | The text to post | |
| platforms | text | Comma-separated platform names | |
| profile_username | text | Your Upload-Post profile username | |
| schedule_time | text | ISO8601 format for scheduling |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| request_id | string | |
| status | string | |
| platform_results | object | |
| message | string |
Check the status of an upload request
| Field | Type | Default | Description |
|---|---|---|---|
| request_id | text | The request_id from a previous upload |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| status | string | |
| platform_results | object | |
| message | string |
Customer feedback and feature requests platform
Notes:
Create a new feature suggestion in UserVoice
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | Title of the feature suggestion | |
| text | textarea | Detailed description of the suggestion | |
| category | text | Category for the suggestion |
| Name | Type | Description |
|---|---|---|
| suggestion_id | number | The ID of the created suggestion |
| title | string | The suggestion title |
| url | string | URL to view the suggestion |
| created_at | string | When the suggestion was created |
Retrieve details of a specific suggestion
| Field | Type | Default | Description |
|---|---|---|---|
| suggestion_id | number | ID of the suggestion to retrieve |
| Name | Type | Description |
|---|---|---|
| suggestion_id | number | The suggestion ID |
| title | string | Suggestion title |
| text | string | Suggestion description |
| status | string | Current status of the suggestion |
| votes | number | Number of votes received |
| category | string | Suggestion category |
| created_at | string | When the suggestion was created |
Get a list of feature suggestions
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 25 | Number of suggestions to retrieve (max 100) |
| status | select | all | Filter suggestions by status |
| sort | select | votes | How to sort the results |
| Name | Type | Description |
|---|---|---|
| suggestions | array | Array of suggestion objects |
| total_count | number | Total number of suggestions |
Update the status of a suggestion
| Field | Type | Default | Description |
|---|---|---|---|
| suggestion_id | number | ID of the suggestion to update | |
| status | select | New status for the suggestion | |
| response_text | textarea | Optional response message to users |
| Name | Type | Description |
|---|---|---|
| suggestion_id | number | The ID of the updated suggestion |
| status | string | The new status |
| updated_at | string | When the suggestion was updated |
Create a new support ticket in UserVoice
| Field | Type | Default | Description |
|---|---|---|---|
| subject | text | Subject of the support ticket | |
| message | textarea | Detailed message for the ticket | |
| user_email | text | Email address of the user submitting the ticket | |
| user_name | text | Name of the user submitting the ticket |
| Name | Type | Description |
|---|---|---|
| ticket_id | number | The ID of the created ticket |
| subject | string | The ticket subject |
| status | string | Current ticket status |
| created_at | string | When the ticket was created |
Retrieve details of a specific support ticket
| Field | Type | Default | Description |
|---|---|---|---|
| ticket_id | number | ID of the ticket to retrieve |
| Name | Type | Description |
|---|---|---|
| ticket_id | number | The ticket ID |
| subject | string | Ticket subject |
| status | string | Current ticket status |
| user_email | string | Email of the user who created the ticket |
| created_at | string | When the ticket was created |
| updated_at | string | When the ticket was last updated |
Build AI agents that make and receive phone calls with natural voice conversations
Notes:
Make an outbound phone call using a Vapi assistant
| Field | Type | Default | Description |
|---|---|---|---|
| assistantId | select | Select a pre-configured Vapi assistant | |
| phoneNumberId | select | Phone number to call from | |
| customerNumber | text | E.164 format (e.g., +12025551234) | |
| scheduleAt | text | ISO 8601 format (e.g., 2025-12-07T10:00:00Z) |
| Name | Type | Description |
|---|---|---|
| call_id | string | |
| status | string | |
| phoneNumberId | string | |
| assistantId | string | |
| createdAt | string |
Get details, transcript, and analysis for a call
| Field | Type | Default | Description |
|---|---|---|---|
| callId | text | The ID of the call to retrieve |
| Name | Type | Description |
|---|---|---|
| call_id | string | |
| status | string | |
| type | string | |
| duration | number | |
| transcript | string | |
| summary | string | |
| cost | number | |
| endedReason | string | |
| recordingUrl | string | |
| analysis | object |
List all calls with optional filters
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 100 | Maximum number of calls to return |
| assistantId | select | Optional: filter by assistant | |
| phoneNumberId | select | Optional: filter by phone number |
| Name | Type | Description |
|---|---|---|
| calls | array | |
| total | number |
Delete data for a specific call
| Field | Type | Default | Description |
|---|---|---|---|
| callId | text | The ID of the call to delete |
| Name | Type | Description |
|---|---|---|
| deleted | boolean | |
| call_id | string |
Schedule multiple outbound calls to a list of customers
| Field | Type | Default | Description |
|---|---|---|---|
| assistantId | select | Select a pre-configured Vapi assistant | |
| phoneNumberId | select | Phone number to call from | |
| customerNumbers | textarea | One E.164 phone number per line | |
| scheduleAt | text | ISO 8601 format for earliest call time |
| Name | Type | Description |
|---|---|---|
| calls | array | |
| total | number |
List all Vapi assistants
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 100 | Maximum number of assistants to return |
| Name | Type | Description |
|---|---|---|
| assistants | array | |
| total | number |
Get details for a specific assistant
| Field | Type | Default | Description |
|---|---|---|---|
| assistantId | select | Select the assistant to retrieve |
| Name | Type | Description |
|---|---|---|
| assistant_id | string | |
| name | string | |
| firstMessage | string | |
| model | object | |
| voice | object | |
| transcriber | object | |
| createdAt | string | |
| updatedAt | string |
Create a new Vapi voice assistant
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name for the new assistant | |
| systemPrompt | textarea | The system prompt that defines the assistant behavior | |
| firstMessage | textarea | First message the assistant says when call connects | |
| model | select | gpt-4o | Language model to use |
| voice | select | Voice synthesis provider |
| Name | Type | Description |
|---|---|---|
| assistant_id | string | |
| name | string | |
| createdAt | string |
Update an existing Vapi assistant
| Field | Type | Default | Description |
|---|---|---|---|
| assistantId | select | Select the assistant to update | |
| name | text | New name for the assistant (leave empty to keep current) | |
| systemPrompt | textarea | New system prompt (leave empty to keep current) | |
| firstMessage | textarea | New first message (leave empty to keep current) |
| Name | Type | Description |
|---|---|---|
| assistant_id | string | |
| name | string | |
| updatedAt | string |
Delete a Vapi assistant
| Field | Type | Default | Description |
|---|---|---|---|
| assistantId | select | Select the assistant to delete |
| Name | Type | Description |
|---|---|---|
| deleted | boolean | |
| assistant_id | string |
List all configured phone numbers
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 100 | Maximum number of phone numbers to return |
| Name | Type | Description |
|---|---|---|
| phone_numbers | array | |
| total | number |
Get details for a specific phone number
| Field | Type | Default | Description |
|---|---|---|---|
| phoneNumberId | select | Select the phone number to retrieve |
| Name | Type | Description |
|---|---|---|
| phone_number_id | string | |
| number | string | |
| name | string | |
| provider | string | |
| status | string | |
| assistantId | string | |
| createdAt | string |
List all Vapi tools
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 100 | Maximum number of tools to return |
| Name | Type | Description |
|---|---|---|
| tools | array | |
| total | number |
Get details for a specific tool
| Field | Type | Default | Description |
|---|---|---|---|
| toolId | select | Select the tool to retrieve |
| Name | Type | Description |
|---|---|---|
| tool_id | string | |
| type | string | |
| name | string | |
| description | string | |
| createdAt | string |
Create a new function or API tool for assistants
| Field | Type | Default | Description |
|---|---|---|---|
| type | select | Type of tool to create | |
| name | text | Name for the tool | |
| description | textarea | Description of what the tool does | |
| serverUrl | text | URL to call when tool is invoked |
| Name | Type | Description |
|---|---|---|
| tool_id | string | |
| type | string | |
| name | string | |
| createdAt | string |
Update an existing tool
| Field | Type | Default | Description |
|---|---|---|---|
| toolId | select | Select the tool to update | |
| name | text | New name for the tool | |
| description | textarea | New description for the tool | |
| serverUrl | text | New server URL |
| Name | Type | Description |
|---|---|---|
| tool_id | string | |
| updatedAt | string |
Delete a tool
| Field | Type | Default | Description |
|---|---|---|---|
| toolId | select | Select the tool to delete |
| Name | Type | Description |
|---|---|---|
| deleted | boolean | |
| tool_id | string |
List all chat sessions
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 100 | Maximum number of chats to return |
| Name | Type | Description |
|---|---|---|
| chats | array | |
| total | number |
Get details for a specific chat session
| Field | Type | Default | Description |
|---|---|---|---|
| chatId | text | The ID of the chat to retrieve |
| Name | Type | Description |
|---|---|---|
| chat_id | string | |
| assistantId | string | |
| messages | array | |
| createdAt | string |
Start a new text chat session with an assistant
| Field | Type | Default | Description |
|---|---|---|---|
| assistantId | select | Select the assistant to chat with | |
| message | textarea | Initial message to send |
| Name | Type | Description |
|---|---|---|
| chat_id | string | |
| response | string | |
| messages | array | |
| createdAt | string |
Delete a chat session
| Field | Type | Default | Description |
|---|---|---|---|
| chatId | text | The ID of the chat to delete |
| Name | Type | Description |
|---|---|---|
| deleted | boolean | |
| chat_id | string |
Email finder and verification service with high accuracy rates and comprehensive contact discovery for sales outreach
Notes:
Find email address for a person at a specific company
| Field | Type | Default | Description |
|---|---|---|---|
| first_name | text | Person's first name | |
| last_name | text | Person's last name | |
| domain | text | Company domain (e.g., google.com) | |
| middle_name | text | Person's middle name (optional for better accuracy) | |
| company_name | text | Company name for additional context |
| Name | Type | Description |
|---|---|---|
| string | Found email address | |
| score | number | Confidence score for the email (0-100) |
| status | string | Status of the email search: found, not_found, pending |
| sources | array | Sources where the email was found |
| search_id | string | Unique identifier for this search |
Verify if an email address is valid and deliverable
| Field | Type | Default | Description |
|---|---|---|---|
| text | Email address to verify |
| Name | Type | Description |
|---|---|---|
| string | The email address that was verified | |
| result | string | Verification result: accept, reject, unknown |
| score | number | Verification confidence score (0-100) |
| is_valid | boolean | Whether the email address is valid |
| is_disposable | boolean | Whether email is from a disposable email service |
| is_role_account | boolean | Whether email is a role-based account (info@, support@) |
| is_free_provider | boolean | Whether email is from a free email provider |
Find all email addresses associated with a domain
| Field | Type | Default | Description |
|---|---|---|---|
| domain | text | Company domain to search (e.g., google.com) | |
| limit | number | 50 | Maximum number of emails to return (default: 50, max: 100) |
| offset | number | 0 | Number of results to skip for pagination |
| Name | Type | Description |
|---|---|---|
| emails | array | List of found email addresses with details |
| domain | string | The domain that was searched |
| total_count | number | Total number of emails found for the domain |
| returned_count | number | Number of emails returned in this response |
Search for multiple emails in a single batch request
| Field | Type | Default | Description |
|---|---|---|---|
| searches | textarea | [{"first_name": "John", "last_name": "Doe", "domain": "example.com"}, {"first_name": "Jane", "last_name": "Smith", "domain": "acme.com"}] | Array of search objects with first_name, last_name, and domain |
| Name | Type | Description |
|---|---|---|
| results | array | Array of email search results |
| total_searches | number | Number of searches performed |
| successful_searches | number | Number of successful email finds |
| credits_used | number | Number of API credits consumed |
Verify multiple email addresses in a single batch request
| Field | Type | Default | Description |
|---|---|---|---|
| emails | textarea | ["john@example.com", "jane@acme.com", "support@company.org"] | Array of email addresses to verify |
| Name | Type | Description |
|---|---|---|
| results | array | Array of email verification results |
| total_verifications | number | Number of emails verified |
| valid_count | number | Number of valid email addresses |
| invalid_count | number | Number of invalid email addresses |
| unknown_count | number | Number of emails with unknown status |
Check the status of a previous email search
| Field | Type | Default | Description |
|---|---|---|---|
| search_id | text | Search ID from a previous email search |
| Name | Type | Description |
|---|---|---|
| search_id | string | The search ID that was queried |
| status | string | Current status: found, not_found, pending, error |
| string | Found email address (if status is found) | |
| score | number | Confidence score for the email |
| sources | array | Sources where the email was found |
Get current account information and credit usage statistics
| Name | Type | Description |
|---|---|---|
| string | Account email address | |
| plan | string | Current subscription plan |
| searches_available | number | Number of email searches remaining |
| searches_used | number | Number of searches used this period |
| verifications_available | number | Number of email verifications remaining |
| verifications_used | number | Number of verifications used this period |
E-commerce platform for building and managing online stores
Notes:
Retrieve products from Volusion store
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of products to retrieve |
| Name | Type | Description |
|---|---|---|
| products | array | List of products |
Get a specific product by ID
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | The ID of the product to retrieve |
| Name | Type | Description |
|---|---|---|
| product | object | Product details |
Create a new product in Volusion store
| Field | Type | Default | Description |
|---|---|---|---|
| product_name | text | Name of the product | |
| product_description | textarea | Product description | |
| price | number | Product price | |
| product_code | text | Product code/SKU | |
| hide | checkbox | Whether to hide the product |
| Name | Type | Description |
|---|---|---|
| product | object | Details of the created product |
| success | boolean | Whether the product was created successfully |
Update an existing product
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | ID of the product to update | |
| product_name | text | New product name | |
| price | number | New product price |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the product was updated successfully |
Retrieve orders from Volusion store
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of orders to retrieve |
| Name | Type | Description |
|---|---|---|
| orders | array | List of orders |
Get a specific order by ID
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | The ID of the order to retrieve |
| Name | Type | Description |
|---|---|---|
| order | object | Order details |
Update order information
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | ID of the order to update | |
| order_status | select | New order status |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the order was updated successfully |
Cloud communications platform for SMS, voice, and messaging APIs
Notes:
Send SMS messages via Vonage
| Field | Type | Default | Description |
|---|---|---|---|
| text | textarea | SMS message content | |
| to | text | Recipient phone number with country code (e.g., 1234567890) | |
| from | text | Sender phone number or ID | |
| type | select | text | Type of message to send |
| Name | Type | Description |
|---|---|---|
| message_id | string | Unique identifier for the sent message |
| status | string | Message sending status |
| remaining_balance | string | Account balance after sending |
| success | boolean | Whether the SMS was sent successfully |
Make voice calls via Vonage
| Field | Type | Default | Description |
|---|---|---|---|
| to | text | Recipient phone number with country code | |
| from | text | Your Vonage virtual number | |
| answer_url | text | Webhook URL that returns NCCO for call flow | |
| event_url | text | Webhook URL for call events (optional) |
| Name | Type | Description |
|---|---|---|
| uuid | string | Unique identifier for the call |
| status | string | Call initiation status |
| conversation_uuid | string | Unique identifier for the conversation |
| success | boolean | Whether the call was initiated successfully |
Send text-to-speech voice messages
| Field | Type | Default | Description |
|---|---|---|---|
| to | text | Recipient phone number with country code | |
| from | text | Caller ID (optional) | |
| text | textarea | Text to be converted to speech | |
| voice_name | select | Amy | Voice for text-to-speech |
| repeat | number | 1 | Number of times to repeat the message (1-10) |
| Name | Type | Description |
|---|---|---|
| call_id | string | Unique identifier for the TTS call |
| status | string | TTS call status |
| success | boolean | Whether the TTS was sent successfully |
Check your Vonage account balance
| Name | Type | Description |
|---|---|---|
| value | number | Current account balance |
| auto_reload | boolean | Whether auto-reload is enabled |
| success | boolean | Whether the balance check was successful |
Check the delivery status of an SMS
| Field | Type | Default | Description |
|---|---|---|---|
| message_id | text | ID of the message to check status for |
| Name | Type | Description |
|---|---|---|
| status | string | Message delivery status |
| date_received | string | When the message was received |
| price | string | Cost of the message |
| success | boolean | Whether the status check was successful |
Customer relationship management - Complete CRM solution with sales, marketing, and support
Notes:
Retrieve account records from Vtiger CRM
| Field | Type | Default | Description |
|---|---|---|---|
| account_type | select | Filter by account type | |
| industry | text | Filter by industry | |
| limit | number | 100 | Maximum number of records to retrieve |
| Name | Type | Description |
|---|---|---|
| accounts | array | |
| account_count | number |
Create a new account record in Vtiger CRM
| Field | Type | Default | Description |
|---|---|---|---|
| accountname | text | Name of the account | |
| account_type | select | Type of account | |
| industry | text | Account industry | |
| website | text | Company website URL | |
| phone | text | Office phone number | |
| email1 | text | Primary email address | |
| bill_street | text | Billing street address | |
| bill_city | text | Billing city | |
| bill_country | text | Billing country |
| Name | Type | Description |
|---|---|---|
| account_id | string | |
| accountname | string | |
| account_no | string |
Retrieve contact records from Vtiger CRM
| Field | Type | Default | Description |
|---|---|---|---|
| account_id | text | Filter by account ID | |
| leadsource | text | Filter by lead source | |
| limit | number | 100 | Maximum number of records to retrieve |
| Name | Type | Description |
|---|---|---|
| contacts | array | |
| contact_count | number |
Create a new contact record in Vtiger CRM
| Field | Type | Default | Description |
|---|---|---|---|
| firstname | text | Contact first name | |
| lastname | text | Contact last name | |
| account_id | text | Associated account ID | |
| text | Primary email address | ||
| phone | text | Phone number | |
| mobile | text | Mobile phone number | |
| title | text | Contact job title | |
| department | text | Contact department | |
| leadsource | text | How contact was acquired |
| Name | Type | Description |
|---|---|---|
| contact_id | string | |
| contact_no | string | |
| firstname | string | |
| lastname | string |
Retrieve potential (opportunity) records from Vtiger CRM
| Field | Type | Default | Description |
|---|---|---|---|
| related_to | text | Filter by related account ID | |
| sales_stage | select | Filter by sales stage | |
| limit | number | 100 | Maximum number of records to retrieve |
| Name | Type | Description |
|---|---|---|
| potentials | array | |
| potential_count | number | |
| total_amount | number |
Create a new potential (opportunity) record in Vtiger CRM
| Field | Type | Default | Description |
|---|---|---|---|
| potentialname | text | Name of the potential | |
| related_to | text | Associated account ID | |
| amount | number | Potential amount | |
| probability | number | Probability of closing (0-100) | |
| sales_stage | select | Prospecting | |
| closingdate | text | Expected closing date | |
| leadsource | text | How potential was acquired | |
| description | textarea | Potential description |
| Name | Type | Description |
|---|---|---|
| potential_id | string | |
| potential_no | string | |
| potentialname | string | |
| amount | number |
Retrieve lead records from Vtiger CRM
| Field | Type | Default | Description |
|---|---|---|---|
| leadstatus | select | Filter by lead status | |
| leadsource | text | Filter by lead source | |
| limit | number | 100 | Maximum number of records to retrieve |
| Name | Type | Description |
|---|---|---|
| leads | array | |
| lead_count | number |
Create a new lead record in Vtiger CRM
| Field | Type | Default | Description |
|---|---|---|---|
| firstname | text | Lead first name | |
| lastname | text | Lead last name | |
| company | text | Lead company name | |
| text | Lead email address | ||
| phone | text | Lead phone number | |
| mobile | text | Lead mobile number | |
| designation | text | Lead job title/designation | |
| leadstatus | select | Not Contacted | |
| leadsource | text | How lead was acquired |
| Name | Type | Description |
|---|---|---|
| lead_id | string | |
| lead_no | string | |
| firstname | string | |
| lastname | string | |
| company | string |
Walmart seller automation for managing products and orders on Walmart marketplace
Notes:
Retrieve items from your Walmart Marketplace catalog
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Number of items to retrieve (max 200) |
| offset | number | 0 | Number of items to skip |
| sku | text | Filter by specific SKU |
| Name | Type | Description |
|---|---|---|
| items | array | Array of item objects |
| total | number | Total number of items |
Get details of a specific item by SKU
| Field | Type | Default | Description |
|---|---|---|---|
| sku | text | Item SKU to retrieve |
| Name | Type | Description |
|---|---|---|
| item | object | Complete item details |
| sku | string | |
| product_name | string | |
| price | object | |
| publish_status | string |
Update inventory for items
| Field | Type | Default | Description |
|---|---|---|---|
| inventory_data | textarea | JSON array of inventory updates |
| Name | Type | Description |
|---|---|---|
| feed_id | string | ID of the inventory update feed |
| status | string |
Update pricing for items
| Field | Type | Default | Description |
|---|---|---|---|
| price_data | textarea | JSON array of price updates |
| Name | Type | Description |
|---|---|---|
| feed_id | string | ID of the price update feed |
| status | string |
Retrieve orders from Walmart Marketplace
| Field | Type | Default | Description |
|---|---|---|---|
| sku | text | Filter orders by SKU | |
| customer_order_id | text | Filter by customer order ID | |
| purchase_order_id | text | Filter by purchase order ID | |
| status | select | ||
| created_start_date | text | ISO 8601 format (e.g., 2023-01-01T00:00:00.000Z) |
| Name | Type | Description |
|---|---|---|
| orders | array | Array of order objects |
| total | number | Total number of orders |
Get details of a specific order
| Field | Type | Default | Description |
|---|---|---|---|
| purchase_order_id | text | Walmart purchase order ID |
| Name | Type | Description |
|---|---|---|
| order | object | Complete order details |
| purchase_order_id | string | |
| customer_order_id | string | |
| order_date | string | |
| order_lines | array |
Acknowledge receipt of an order
| Field | Type | Default | Description |
|---|---|---|---|
| purchase_order_id | text | Walmart purchase order ID to acknowledge |
| Name | Type | Description |
|---|---|---|
| purchase_order_id | string | |
| status | string |
Mark order as shipped with tracking information
| Field | Type | Default | Description |
|---|---|---|---|
| purchase_order_id | text | Walmart purchase order ID to ship | |
| order_lines | textarea | JSON array of order lines with tracking info |
| Name | Type | Description |
|---|---|---|
| purchase_order_id | string | |
| status | string |
Comprehensive Walmart data extraction including products, sellers, location-based pricing, and marketplace analytics
Notes:
Extract detailed product information from Walmart product URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Walmart product URLs to scrape |
| Name | Type | Description |
|---|---|---|
| products | array | Detailed product information with prices and reviews |
| count | number | Number of products scraped |
Find products from Walmart category pages
| Field | Type | Default | Description |
|---|---|---|---|
| categoryUrl | text | Walmart category or browse page URL | |
| allVariations | select | 1 | Whether to include product variations (colors, sizes, etc.) |
| Name | Type | Description |
|---|---|---|
| products | array | Products found in the category |
| count | number | Number of products discovered |
Search Walmart products by keyword across different domains
| Field | Type | Default | Description |
|---|---|---|---|
| keyword | text | Product search keyword (e.g., "leggings", "dress") | |
| domain | select | https://www.walmart.com/ | Walmart domain to search |
| allVariations | select | 1 | Whether to include product variations |
| Name | Type | Description |
|---|---|---|
| products | array | Products matching the keyword search |
| count | number | Number of products found |
Find Walmart products using SKU numbers
| Field | Type | Default | Description |
|---|---|---|---|
| skus | textarea | Walmart SKU numbers to lookup. Most return single products, some may return multiple. | |
| allVariations | select | Whether to include product variations for each SKU |
| Name | Type | Description |
|---|---|---|
| products | array | Products found for the provided SKUs |
| count | number | Number of products found |
Extract information about Walmart marketplace sellers
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Walmart seller profile URLs (e.g., https://www.walmart.com/global/seller/782) |
| Name | Type | Description |
|---|---|---|
| sellers | array | Detailed seller profiles and metrics |
| count | number | Number of sellers scraped |
Extract location-specific product data with local pricing and availability
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Walmart product URLs to scrape with location data | |
| zipCode | text | ZIP code for location-based pricing (e.g., "33177") | |
| storeId | text | Optional Walmart store ID for specific store data |
| Name | Type | Description |
|---|---|---|
| products | array | Products with location-specific pricing and availability |
| count | number | Number of products scraped |
Find products in categories with location-specific data
| Field | Type | Default | Description |
|---|---|---|---|
| categoryUrl | text | Walmart category or browse page URL | |
| zipCode | text | ZIP code for location-based results | |
| storeId | text | Optional Walmart store ID | |
| maxProducts | number | 100 | Maximum number of products to retrieve |
| shippingType | select | Filter by shipping/pickup availability |
| Name | Type | Description |
|---|---|---|
| products | array | Products from category with location-specific data |
| count | number | Number of products discovered |
Search products by keyword with location-specific results
| Field | Type | Default | Description |
|---|---|---|---|
| keyword | text | Product search keyword | |
| zipCode | text | ZIP code for location-based search | |
| storeId | text | Optional Walmart store ID |
| Name | Type | Description |
|---|---|---|
| products | array | Products matching keyword with location data |
| count | number | Number of products found |
Extract products from Walmart search result pages
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Walmart search result URLs (e.g., https://www.walmart.com/search?q=cat) |
| Name | Type | Description |
|---|---|---|
| products | array | Products from search result pages |
| count | number | Number of products from search |
Free accounting software - Complete accounting solution for small businesses
Notes:
Get information about the Wave business
| Name | Type | Description |
|---|---|---|
| business_id | string | |
| name | string | |
| currency_code | string | |
| created_at | string |
Create a new customer in Wave
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Customer or company name | |
| text | Customer email address | ||
| phone | text | Customer phone number | |
| address_line1 | text | Customer address | |
| city | text | Customer city |
| Name | Type | Description |
|---|---|---|
| customer_id | string | |
| name | string | |
| string |
Get all customers from Wave
| Field | Type | Default | Description |
|---|---|---|---|
| is_archived | checkbox | Include archived customers |
| Name | Type | Description |
|---|---|---|
| customers | array | |
| customer_count | number |
Create a new invoice in Wave
| Field | Type | Default | Description |
|---|---|---|---|
| customer_id | text | Wave Customer ID | |
| invoice_date | text | today | Invoice date |
| due_date | text | Invoice due date | |
| invoice_number | text | Custom invoice number |
| Name | Type | Description |
|---|---|---|
| invoice_id | string | |
| invoice_number | string | |
| total | number | |
| status | string |
Add a line item to an existing invoice
| Field | Type | Default | Description |
|---|---|---|---|
| invoice_id | text | Wave Invoice ID | |
| product_id | text | Wave Product ID (optional) | |
| description | text | Line item description | |
| quantity | number | 1 | Quantity of items |
| unit_price | number | Price per unit |
| Name | Type | Description |
|---|---|---|
| line_item_id | string | |
| description | string | |
| total | number |
Get invoices from Wave
| Field | Type | Default | Description |
|---|---|---|---|
| customer_id | text | Filter by specific customer | |
| status | select | Filter by invoice status |
| Name | Type | Description |
|---|---|---|
| invoices | array | |
| invoice_count | number | |
| total_amount | number |
Approve a draft invoice to make it ready to send
| Field | Type | Default | Description |
|---|---|---|---|
| invoice_id | text | Invoice to approve |
| Name | Type | Description |
|---|---|---|
| invoice_id | string | |
| status | string | |
| approved | boolean |
Create a new product/service in Wave
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the product or service | |
| description | textarea | Product description | |
| unit_price | number | Default price per unit | |
| is_sold | checkbox | 1 | Product is sold to customers |
| Name | Type | Description |
|---|---|---|
| product_id | string | |
| name | string | |
| unit_price | number |
Get all products/services from Wave
| Field | Type | Default | Description |
|---|---|---|---|
| is_archived | checkbox | Include archived products |
| Name | Type | Description |
|---|---|---|
| products | array | |
| product_count | number |
Create a new expense entry in Wave
| Field | Type | Default | Description |
|---|---|---|---|
| vendor_id | text | Vendor/supplier ID | |
| amount | number | Expense amount | |
| description | text | Expense description | |
| expense_date | text | today | Date the expense occurred |
| account_id | text | Wave account ID for categorization |
| Name | Type | Description |
|---|---|---|
| expense_id | string | |
| amount | number | |
| description | string |
Video conferencing and webinar management platform by Cisco
Notes:
Create a new Webex meeting or webinar
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | The title of the meeting | |
| scheduled_type | select | meeting | |
| start | text | ISO 8601 format (e.g., 2024-12-25T10:00:00Z) | |
| end | text | ISO 8601 format (e.g., 2024-12-25T11:00:00Z) | |
| timezone | text | UTC | e.g., America/New_York, Europe/London |
| agenda | textarea | Meeting agenda/description | |
| password | text | Meeting password (leave empty for no password) | |
| enable_registration | checkbox | Enable attendee registration (for webinars) | |
| public_meeting | checkbox | Make meeting publicly accessible |
| Name | Type | Description |
|---|---|---|
| meeting_id | string | |
| meeting_number | string | |
| web_link | string | |
| start_link | string | |
| registration_url | string | |
| success | boolean |
Retrieve details of a specific meeting
| Field | Type | Default | Description |
|---|---|---|---|
| meeting_id | text | The unique ID of the meeting |
| Name | Type | Description |
|---|---|---|
| title | string | |
| start | string | |
| end | string | |
| web_link | string | |
| meeting_number | string | |
| state | string | |
| success | boolean |
Retrieve list of meetings
| Field | Type | Default | Description |
|---|---|---|---|
| state | select | ||
| scheduled_type | select | ||
| max_results | number | 100 | Maximum number of results (1-100) |
| Name | Type | Description |
|---|---|---|
| meetings | array | |
| total_count | number | |
| success | boolean |
Update an existing meeting
| Field | Type | Default | Description |
|---|---|---|---|
| meeting_id | text | The unique ID of the meeting | |
| title | text | Updated meeting title | |
| start | text | ISO 8601 format (e.g., 2024-12-25T10:00:00Z) | |
| end | text | ISO 8601 format (e.g., 2024-12-25T11:00:00Z) | |
| agenda | textarea | Updated meeting agenda |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| meeting_id | string |
Delete/cancel a meeting
| Field | Type | Default | Description |
|---|---|---|---|
| meeting_id | text | The unique ID of the meeting to delete | |
| send_email | checkbox | Send cancellation email to attendees |
| Name | Type | Description |
|---|---|---|
| success | boolean |
Register attendees for a meeting/webinar
| Field | Type | Default | Description |
|---|---|---|---|
| meeting_id | text | The unique ID of the meeting | |
| first_name | text | Attendee first name | |
| last_name | text | Attendee last name | |
| text | Attendee email address | ||
| organization | text | Attendee organization | |
| job_title | text | Attendee job title |
| Name | Type | Description |
|---|---|---|
| registrant_id | string | |
| success | boolean |
Visual web design and CMS platform for creating professional websites with powerful content management capabilities
Notes:
Retrieve all Webflow sites in your account
| Name | Type | Description |
|---|---|---|
| sites | array | Array of Webflow sites |
| totalSites | number | Number of sites in account |
Get detailed information about a specific site
| Field | Type | Default | Description |
|---|---|---|---|
| site_id | text | Webflow site ID |
| Name | Type | Description |
|---|---|---|
| site | object | Complete site details |
| name | string | Name of the site |
| shortName | string | Site short name/slug |
| previewUrl | string | Site preview URL |
| timezone | string | Site timezone |
Retrieve all CMS collections for a site
| Field | Type | Default | Description |
|---|---|---|---|
| site_id | text | Webflow site ID |
| Name | Type | Description |
|---|---|---|
| collections | array | Array of CMS collections |
| totalCollections | number | Number of collections |
Retrieve items from a CMS collection
| Field | Type | Default | Description |
|---|---|---|---|
| collection_id | text | CMS collection ID | |
| limit | number | 100 | Maximum number of items to retrieve (max 100) |
| offset | number | 0 | Number of items to skip for pagination |
| Name | Type | Description |
|---|---|---|
| items | array | Array of collection items |
| count | number | Number of items returned |
| limit | number | Limit applied to the request |
| offset | number | Offset applied to the request |
| total | number | Total items in collection |
Create a new item in a CMS collection
| Field | Type | Default | Description |
|---|---|---|---|
| collection_id | text | CMS collection ID | |
| fields | code_editor | Collection item fields as JSON object | |
| live | select | false | Whether to publish the item immediately |
| Name | Type | Description |
|---|---|---|
| itemId | string | ID of the created item |
| item | object | Complete created item data |
| slug | string | URL slug of the item |
| published | boolean | Whether item was published |
Update an existing collection item
| Field | Type | Default | Description |
|---|---|---|---|
| collection_id | text | CMS collection ID | |
| item_id | text | ID of the item to update | |
| fields | code_editor | Updated item fields as JSON object | |
| live | select | false | Whether to publish changes immediately |
| Name | Type | Description |
|---|---|---|
| itemId | string | ID of the updated item |
| item | object | Complete updated item data |
| success | boolean | Whether update was successful |
Delete an item from a CMS collection
| Field | Type | Default | Description |
|---|---|---|---|
| collection_id | text | CMS collection ID | |
| item_id | text | ID of the item to delete |
| Name | Type | Description |
|---|---|---|
| deletedId | string | ID of the deleted item |
| success | boolean | Whether deletion was successful |
Publish a site to make changes live
| Field | Type | Default | Description |
|---|---|---|---|
| site_id | text | Webflow site ID to publish | |
| domains | code_editor | Array of domain IDs to publish to (leave empty for all) |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether publishing was successful |
| publishedDomains | array | Array of published domain information |
| publishJob | object | Publishing job details |
Retrieve form submissions from a site
| Field | Type | Default | Description |
|---|---|---|---|
| site_id | text | Webflow site ID | |
| form_id | text | Specific form ID (leave empty for all forms) |
| Name | Type | Description |
|---|---|---|
| submissions | array | Array of form submissions |
| totalSubmissions | number | Number of form submissions |
Retrieve products from Webflow e-commerce
| Field | Type | Default | Description |
|---|---|---|---|
| site_id | text | Webflow site ID | |
| limit | number | 100 | Maximum number of products to retrieve |
| offset | number | 0 | Number of products to skip for pagination |
| Name | Type | Description |
|---|---|---|
| products | array | Array of e-commerce products |
| count | number | Number of products returned |
| total | number | Total products in store |
Retrieve orders from Webflow e-commerce
| Field | Type | Default | Description |
|---|---|---|---|
| site_id | text | Webflow site ID | |
| status | select | Filter by order status | |
| limit | number | 100 | Maximum number of orders to retrieve |
| offset | number | 0 | Number of orders to skip for pagination |
| Name | Type | Description |
|---|---|---|
| orders | array | Array of e-commerce orders |
| count | number | Number of orders returned |
| total | number | Total orders matching criteria |
Update the fulfillment status of an order
| Field | Type | Default | Description |
|---|---|---|---|
| site_id | text | Webflow site ID | |
| order_id | text | ID of the order to update | |
| comment | textarea | Comment about the fulfillment | |
| notify | select | true | Whether to notify customer of status change |
| Name | Type | Description |
|---|---|---|
| orderId | string | ID of the updated order |
| success | boolean | Whether status update was successful |
| fulfillment | object | Updated fulfillment information |
Website builder with integrated e-commerce capabilities
Notes:
Retrieve products from Weebly store
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 25 | Maximum number of products to retrieve |
| Name | Type | Description |
|---|---|---|
| products | array | List of products |
Get a specific product by ID
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | The ID of the product to retrieve |
| Name | Type | Description |
|---|---|---|
| product | object | Product details |
Create a new product in Weebly store
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the product | |
| short_description | textarea | Brief product description | |
| price | number | Product price | |
| sku | text | Product SKU | |
| published | checkbox | 1 | Whether the product is published |
| Name | Type | Description |
|---|---|---|
| product | object | Details of the created product |
| success | boolean | Whether the product was created successfully |
Update an existing product
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | ID of the product to update | |
| name | text | New product name | |
| price | number | New product price |
| Name | Type | Description |
|---|---|---|
| product | object | Updated product details |
| success | boolean | Whether the product was updated successfully |
Retrieve orders from Weebly store
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 25 | Maximum number of orders to retrieve |
| Name | Type | Description |
|---|---|---|
| orders | array | List of orders |
Get a specific order by ID
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | The ID of the order to retrieve |
| Name | Type | Description |
|---|---|---|
| order | object | Order details |
Simple file transfer service for sharing large files
Notes:
Create a new WeTransfer with files
| Name | Type | Required | Description |
|---|---|---|---|
| files | array | Yes | Array of files to include in the transfer |
| Field | Type | Default | Description |
|---|---|---|---|
| message | textarea | Optional message to include with the transfer | |
| sender_email | Email address of the sender | ||
| recipient_emails | textarea | Comma-separated list of recipient email addresses. Leave empty for link-only transfer. |
| Name | Type | Description |
|---|---|---|
| transfer_id | string | Unique identifier of the created transfer |
| transfer_url | string | Public URL to download the transfer |
| expires_at | string | When the transfer expires |
| file_count | number | Number of files in the transfer |
Upload a single file and create a transfer
| Name | Type | Required | Description |
|---|---|---|---|
| file_content | file | Yes | The file content to upload |
| Field | Type | Default | Description |
|---|---|---|---|
| file_name | text | Name for the file including extension | |
| message | textarea | Optional message to include with the transfer | |
| sender_email | Email address of the sender | ||
| recipient_emails | textarea | Comma-separated list of recipient email addresses |
| Name | Type | Description |
|---|---|---|
| transfer_id | string | Unique identifier of the created transfer |
| transfer_url | string | Public URL to download the transfer |
| expires_at | string | When the transfer expires |
| file_size | number | Size of the uploaded file in bytes |
Get information about a transfer
| Field | Type | Default | Description |
|---|---|---|---|
| transfer_id | text | ID of the transfer to get information about |
| Name | Type | Description |
|---|---|---|
| transfer_id | string | Unique identifier of the transfer |
| transfer_url | string | Public URL to download the transfer |
| state | string | Current state of the transfer (uploading, downloadable, expired) |
| expires_at | string | When the transfer expires |
| file_count | number | Number of files in the transfer |
| total_size | number | Total size of all files in bytes |
List recent transfers
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Maximum number of transfers to return (1-100) |
| Name | Type | Description |
|---|---|---|
| transfers | array | List of recent transfers |
| total_count | number | Total number of transfers returned |
Delete a transfer before it expires
| Field | Type | Default | Description |
|---|---|---|---|
| transfer_id | text | ID of the transfer to delete |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the transfer was successfully deleted |
| message | string | Status message |
WhatsApp messaging for businesses with automation and customer support features
Notes:
Send a text message via WhatsApp Business
| Field | Type | Default | Description |
|---|---|---|---|
| to | text | Recipient phone number with country code (e.g., 1234567890) | |
| message | textarea | Text message content |
| Name | Type | Description |
|---|---|---|
| message_id | string | WhatsApp message ID |
| recipient | string | Recipient phone number |
| success | boolean | Whether the message was sent successfully |
Send a pre-approved template message
| Field | Type | Default | Description |
|---|---|---|---|
| to | text | Recipient phone number with country code | |
| template_name | text | Name of the approved template | |
| language_code | text | en_US | Language code (e.g., en_US, es_ES) |
| parameters | textarea | Template parameters as JSON array (e.g., ["value1", "value2"]) |
| Name | Type | Description |
|---|---|---|
| message_id | string | WhatsApp message ID |
| recipient | string | Recipient phone number |
| template_name | string | Name of the template used |
| success | boolean | Whether the message was sent successfully |
Send an image, document, or other media
| Field | Type | Default | Description |
|---|---|---|---|
| to | text | Recipient phone number with country code | |
| media_type | select | Type of media to send | |
| media_url | text | URL of the media file to send | |
| caption | textarea | Optional caption for the media | |
| filename | text | Filename for documents (optional) |
| Name | Type | Description |
|---|---|---|
| message_id | string | WhatsApp message ID |
| recipient | string | Recipient phone number |
| media_type | string | Type of media sent |
| success | boolean | Whether the message was sent successfully |
Mark a received message as read
| Field | Type | Default | Description |
|---|---|---|---|
| message_id | text | ID of the message to mark as read |
| Name | Type | Description |
|---|---|---|
| message_id | string | ID of the message marked as read |
| success | boolean | Whether the message was marked as read successfully |
Get WhatsApp Business profile information
| Name | Type | Description |
|---|---|---|
| profile | object | Business profile information |
| display_name | string | Business display name |
| category | string | Business category |
| success | boolean | Whether the profile was retrieved successfully |
Update WhatsApp Business profile information
| Field | Type | Default | Description |
|---|---|---|---|
| about | textarea | Business description | |
| address | text | Business address | |
| description | textarea | Business description | |
| text | Business email address | ||
| profile_picture_url | text | URL of profile picture |
| Name | Type | Description |
|---|---|---|
| updated_fields | array | List of fields that were updated |
| success | boolean | Whether the profile was updated successfully |
Get download URL for WhatsApp media (audio, image, video, document) from incoming messages
| Field | Type | Default | Description |
|---|---|---|---|
| media_id | text | The media ID from incoming WhatsApp message |
| Name | Type | Description |
|---|---|---|
| url | string | Temporary URL to download the media (requires auth header) |
| mime_type | string | MIME type of the media file |
| file_size | number | Size of the media file in bytes |
| sha256 | string | SHA256 hash of the media file |
| success | boolean | Whether the media URL was retrieved successfully |
Download media content from WhatsApp using the media URL
| Field | Type | Default | Description |
|---|---|---|---|
| media_url | text | The media download URL from Get Media URL node |
| Name | Type | Description |
|---|---|---|
| media_data | binary | The downloaded media file content |
| content_type | string | MIME type of the downloaded content |
| success | boolean | Whether the media was downloaded successfully |
Web hosting and billing automation platform for managing clients, invoices, support tickets, and services
Notes:
Retrieve a list of clients
| Field | Type | Default | Description |
|---|---|---|---|
| limit_start | number | 0 | Record to start at (for pagination) |
| limit_num | number | 25 | Number of records to retrieve |
| search | text | Search clients by name or email |
| Name | Type | Description |
|---|---|---|
| clients | array | Array of client objects |
| total_results | number | Total number of clients found |
Retrieve details of a specific client
| Field | Type | Default | Description |
|---|---|---|---|
| client_id | text | ID of the client to retrieve | |
| stats | checkbox | Include client statistics in response |
| Name | Type | Description |
|---|---|---|
| client_id | string | Client ID |
| firstname | string | Client first name |
| lastname | string | Client last name |
| string | Client email address | |
| address1 | string | Client address |
| city | string | Client city |
| state | string | Client state/province |
| country | string | Client country |
| phone_number | string | Client phone number |
| status | string | Client account status |
Add a new client to WHMCS
| Field | Type | Default | Description |
|---|---|---|---|
| firstname | text | Client first name | |
| lastname | text | Client last name | |
| text | Client email address | ||
| address1 | text | Client address | |
| city | text | Client city | |
| state | text | Client state/province | |
| postcode | text | Client postal/zip code | |
| country | text | Client country (2-letter code) | |
| phonenumber | text | Client phone number | |
| password2 | password | Client password |
| Name | Type | Description |
|---|---|---|
| client_id | string | ID of the created client |
| string | Client email address |
Retrieve a list of invoices
| Field | Type | Default | Description |
|---|---|---|---|
| limit_start | number | 0 | Record to start at (for pagination) |
| limit_num | number | 25 | Number of records to retrieve |
| user_id | text | Filter by specific client ID | |
| status | select | Filter by invoice status |
| Name | Type | Description |
|---|---|---|
| invoices | array | Array of invoice objects |
| total_results | number | Total number of invoices found |
Retrieve details of a specific invoice
| Field | Type | Default | Description |
|---|---|---|---|
| invoice_id | text | ID of the invoice to retrieve |
| Name | Type | Description |
|---|---|---|
| invoice_id | string | Invoice ID |
| invoice_num | string | Invoice number |
| user_id | string | Client ID |
| date | string | Invoice date |
| duedate | string | Invoice due date |
| total | string | Invoice total amount |
| balance | string | Outstanding balance |
| status | string | Invoice status |
Generate a new invoice
| Field | Type | Default | Description |
|---|---|---|---|
| user_id | text | ID of the client to invoice | |
| date | text | Invoice date (YYYY-MM-DD) | |
| duedate | text | Invoice due date (YYYY-MM-DD) | |
| sendinvoice | checkbox | Send invoice email to client |
| Name | Type | Description |
|---|---|---|
| invoice_id | string | ID of the created invoice |
| status | string | Invoice creation status |
Retrieve a list of support tickets
| Field | Type | Default | Description |
|---|---|---|---|
| limit_start | number | 0 | Record to start at (for pagination) |
| limit_num | number | 25 | Number of records to retrieve |
| client_id | text | Filter by specific client ID | |
| status | select | Filter by ticket status |
| Name | Type | Description |
|---|---|---|
| tickets | array | Array of support ticket objects |
| total_results | number | Total number of tickets found |
Retrieve details of a specific support ticket
| Field | Type | Default | Description |
|---|---|---|---|
| ticket_id | text | ID of the ticket to retrieve | |
| replieslimit | number | 10 | Number of replies to include |
| Name | Type | Description |
|---|---|---|
| ticket_id | string | Ticket ID |
| ticket_number | string | Ticket number |
| user_id | string | Client ID |
| name | string | Client name |
| string | Client email | |
| subject | string | Ticket subject |
| status | string | Ticket status |
| priority | string | Ticket priority |
| department | string | Ticket department |
| date | string | Ticket creation date |
| replies | array | Array of ticket replies |
Create a new support ticket
| Field | Type | Default | Description |
|---|---|---|---|
| client_id | text | ID of the client opening the ticket | |
| dept_id | text | ID of the support department | |
| subject | text | Ticket subject line | |
| message | textarea | Ticket message content | |
| priority | select | Medium | Ticket priority level |
| Name | Type | Description |
|---|---|---|
| ticket_id | string | ID of the created ticket |
| ticket_number | string | Ticket number |
| subject | string | Ticket subject |
Retrieve client's products and services
| Field | Type | Default | Description |
|---|---|---|---|
| client_id | text | ID of the client | |
| limit_start | number | 0 | Record to start at (for pagination) |
| limit_num | number | 25 | Number of records to retrieve |
| Name | Type | Description |
|---|---|---|
| products | array | Array of client product/service objects |
| total_results | number | Total number of products found |
International money transfer service with real exchange rates
Notes:
Get current exchange rates
| Field | Type | Default | Description |
|---|---|---|---|
| source_currency | text | USD | 3-letter currency code (e.g., USD, EUR) |
| target_currency | text | EUR | 3-letter currency code (e.g., GBP, JPY) |
| Name | Type | Description |
|---|---|---|
| source_currency | string | |
| target_currency | string | |
| rate | number | |
| timestamp | string | |
| rate_data | object |
Create a new transfer recipient
| Field | Type | Default | Description |
|---|---|---|---|
| account_holder_name | text | Full name of the recipient | |
| currency | text | 3-letter currency code | |
| type | select | Type of account details | |
| details | text | Account number, IBAN, or email based on type |
| Name | Type | Description |
|---|---|---|
| recipient_id | string | Unique recipient identifier |
| account_holder_name | string | |
| currency | string | |
| recipient_data | object |
Get a quote for a money transfer
| Field | Type | Default | Description |
|---|---|---|---|
| source_currency | text | Currency you are sending from | |
| target_currency | text | Currency you are sending to | |
| source_amount | number | Amount you want to send (leave empty if using target amount) | |
| target_amount | number | Amount you want recipient to receive |
| Name | Type | Description |
|---|---|---|
| quote_id | string | |
| source_amount | number | |
| target_amount | number | |
| fee | number | |
| rate | number | |
| quote_data | object |
Create a money transfer
| Field | Type | Default | Description |
|---|---|---|---|
| target_account | text | Recipient account ID | |
| quote_uuid | text | Quote ID from create quote operation | |
| customer_transaction_id | text | Your unique transaction identifier | |
| reference | text | Reference message for recipient |
| Name | Type | Description |
|---|---|---|
| transfer_id | string | |
| status | string | |
| source_amount | number | |
| target_amount | number | |
| transfer_data | object |
Check the status of a transfer
| Field | Type | Default | Description |
|---|---|---|---|
| transfer_id | text | Transfer ID to check status |
| Name | Type | Description |
|---|---|---|
| transfer_id | string | |
| status | string | |
| source_amount | number | |
| target_amount | number | |
| created_at | string | |
| transfer_data | object |
Retrieve balances for all currencies
| Name | Type | Description |
|---|---|---|
| balances | array | Array of balance objects by currency |
E-commerce website builder with integrated online store functionality
Notes:
Retrieve products from Wix store
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Maximum number of products to retrieve |
| include_variants | checkbox | Include product variants in response |
| Name | Type | Description |
|---|---|---|
| products | array | List of products |
| totalResults | number | Total number of products |
Get a specific product by ID
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | The ID of the product to retrieve |
| Name | Type | Description |
|---|---|---|
| product | object | Product details |
Create a new product in Wix store
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the product | |
| description | textarea | Product description | |
| price | number | Product price | |
| sku | text | Product SKU | |
| track_quantity | checkbox | 1 | Whether to track inventory quantity |
| quantity | number | 1 | Initial stock quantity |
| Name | Type | Description |
|---|---|---|
| product | object | Details of the created product |
| success | boolean | Whether the product was created successfully |
Update an existing product
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | ID of the product to update | |
| name | text | New product name | |
| description | textarea | New product description | |
| price | number | New product price |
| Name | Type | Description |
|---|---|---|
| product | object | Updated product details |
| success | boolean | Whether the product was updated successfully |
Retrieve orders from Wix store
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 20 | Maximum number of orders to retrieve |
| status | select | Filter by order status |
| Name | Type | Description |
|---|---|---|
| orders | array | List of orders |
| totalResults | number | Total number of orders |
Get a specific order by ID
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | The ID of the order to retrieve |
| Name | Type | Description |
|---|---|---|
| order | object | Order details |
Update product inventory levels
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | ID of the product to update inventory for | |
| variant_id | text | Specific variant ID (if applicable) | |
| quantity | number | New inventory quantity |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether inventory was updated successfully |
| inventory | object | Updated inventory details |
WordPress e-commerce platform integration for managing products, orders, customers, and automating workflows
Notes:
Retrieve products from your WooCommerce store
| Field | Type | Default | Description |
|---|---|---|---|
| per_page | number | 10 | Number of products to retrieve (max 100) |
| status | select | publish | |
| search | text | Search products by name or description |
| Name | Type | Description |
|---|---|---|
| products | array | Array of product objects |
| total | number | Total number of products found |
Get a specific product by ID
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | number | The ID of the product to retrieve |
| Name | Type | Description |
|---|---|---|
| product | object | Product details object |
| id | number | |
| name | string | |
| price | string | |
| stock_quantity | number |
Create a new product in your WooCommerce store
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | The name of the product | |
| description | textarea | Full description of the product | |
| short_description | textarea | Brief description of the product | |
| regular_price | text | Product price (e.g., 19.99) | |
| sale_price | text | Sale price if on sale | |
| manage_stock | checkbox | Enable stock management for this product | |
| stock_quantity | number | Number of items in stock |
| Name | Type | Description |
|---|---|---|
| product | object | The created product object |
| id | number | ID of the created product |
| permalink | string | Direct link to the product |
Update an existing product
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | number | ID of the product to update | |
| name | text | New product name | |
| description | textarea | New product description | |
| regular_price | text | New regular price | |
| stock_quantity | number | New stock quantity |
| Name | Type | Description |
|---|---|---|
| product | object | The updated product object |
| id | number |
Retrieve orders from your WooCommerce store
| Field | Type | Default | Description |
|---|---|---|---|
| per_page | number | 10 | Number of orders to retrieve (max 100) |
| status | select | any |
| Name | Type | Description |
|---|---|---|
| orders | array | Array of order objects |
| total | number | Total number of orders found |
Get a specific order by ID
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | number | The ID of the order to retrieve |
| Name | Type | Description |
|---|---|---|
| order | object | Complete order details |
| id | number | |
| status | string | |
| total | string | |
| customer_email | string |
Update the status of an order
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | number | ID of the order to update | |
| status | select |
| Name | Type | Description |
|---|---|---|
| order | object | The updated order object |
| id | number | |
| status | string |
Retrieve customers from your WooCommerce store
| Field | Type | Default | Description |
|---|---|---|---|
| per_page | number | 10 | Number of customers to retrieve (max 100) |
| search | text | Search customers by name or email |
| Name | Type | Description |
|---|---|---|
| customers | array | Array of customer objects |
| total | number | Total number of customers found |
Woodpecker is an email outreach automation platform for cold email campaigns. It enables automated prospect management, personalized email sequences, reply etection, and campaign analytics.
Notes:
Add multiple prospects to Woodpecker
| Name | Type | Required | Description |
|---|---|---|---|
| prospects | array | Yes | Array of prospect objects with email, name, and other fields |
| Name | Type | Description |
|---|---|---|
| added_count | integer | |
| response | object |
Retrieve list of campaigns from Woodpecker
| Name | Type | Required | Description |
|---|---|---|---|
| limit | integer | No | Number of campaigns to retrieve |
| offset | integer | No | Offset for pagination |
| Name | Type | Description |
|---|---|---|
| campaigns | array | |
| total_count | integer |
Get detailed statistics for a specific campaign
| Name | Type | Required | Description |
|---|---|---|---|
| campaignId | integer | Yes | The ID of the campaign |
| Name | Type | Description |
|---|---|---|
| stats | object |
Update the status of a prospect
| Name | Type | Required | Description |
|---|---|---|---|
| prospectEmail | string | Yes | Email address of the prospect |
| status | select | Yes | New status for the prospect |
| campaignId | integer | No | Optional campaign ID to scope the update |
| Name | Type | Description |
|---|---|---|
| updated | boolean | |
| string | ||
| status | string |
Trigger workflow when a prospect event occurs (replied, blacklisted, opted out, etc.)
| Field | Type | Default | Description |
|---|---|---|---|
| webhook_event | select | Select which prospect event should trigger this workflow |
| Name | Type | Description |
|---|---|---|
| event | string | |
| events | array | |
| batch_size | integer |
Seamlessly connect your WordPress site to automate content publishing, manage posts, and enhance SEO. Streamline workflows and integrate AI-driven automation effortlessly.
Notes:
Creates a new post on a connected WordPress site.
| Name | Type | Required | Description |
|---|---|---|---|
| title | string | Yes | The title of the new post. |
| content | textarea | Yes | The main content of the post (HTML is allowed). |
| status | select | Yes | Set the status of the post upon creation. |
| featured_image_url | string | No | URL of the image to set as the featured image (thumbnail) for the post. |
| process_content_images | boolean | No | Upload external images found in content to WordPress Media Library. |
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | Enter a static title for the post. This will be overridden if the "Post Title" input is mapped from another node. | |
| content | textarea | Enter static content for the post (HTML allowed). This will be overridden if the "Post Content" input is mapped from another node. | |
| status | select | publish | Set a default status for the post if the "Post Status" input is not mapped. |
| featured_image_url | text | Static featured image URL. This will be overridden if the "Featured Image URL" input is mapped from another node. | |
| process_content_images | checkbox | Enable to automatically upload external images found in content to WordPress Media Library. |
| Name | Type | Description |
|---|---|---|
| post_id | integer | |
| post_url | string | |
| status_code | integer | |
| error_message | string |
Retrieves a WordPress post by its ID.
| Name | Type | Required | Description |
|---|---|---|---|
| post_id | integer | Yes | The ID of the post to retrieve. |
| Field | Type | Default | Description |
|---|---|---|---|
| post_id | integer | Enter the post ID directly. This will be overridden if the "Post ID" input is mapped from another node. |
| Name | Type | Description |
|---|---|---|
| post_id | integer | |
| title | string | |
| content | string | |
| raw_content | string | |
| status | string | |
| post_url | string | |
| slug | string | |
| date | string | |
| modified | string | |
| error_message | string |
Updates an existing WordPress post with new content, title, or status.
| Name | Type | Required | Description |
|---|---|---|---|
| post_id | integer | Yes | The ID of the post to update. |
| title | string | No | The new title for the post (optional). |
| content | textarea | No | The new content for the post (HTML allowed, optional). |
| status | select | No | Update the post status (optional). |
| slug | string | No | The new URL slug for the post (optional). |
| excerpt | textarea | No | The new excerpt for the post (optional). |
| featured_image_url | string | No | URL of the image to set as the featured image (thumbnail) for the post. |
| process_content_images | boolean | No | Upload external images found in content to WordPress Media Library. |
| tags | string | No | Array of tag IDs to assign to the post (JSON array or comma-separated). |
| Field | Type | Default | Description |
|---|---|---|---|
| post_id | integer | Enter the post ID directly. This will be overridden if the "Post ID" input is mapped from another node. | |
| title | text | Static title. This will be overridden if the "New Title" input is mapped from another node. | |
| content | textarea | Static content (HTML allowed). This will be overridden if the "New Content" input is mapped from another node. | |
| status | select | Static status. This will be overridden if the "New Status" input is mapped from another node. | |
| featured_image_url | text | Static featured image URL. This will be overridden if the "Featured Image URL" input is mapped from another node. | |
| process_content_images | checkbox | Enable to automatically upload external images found in content to WordPress Media Library. | |
| tags | text | JSON array of tag IDs (e.g., [1, 5, 12]) or comma-separated IDs to assign to the post. |
| Name | Type | Description |
|---|---|---|
| post_id | integer | |
| post_url | string | |
| error_message | string |
Retrieves all tags from the WordPress site.
| Name | Type | Required | Description |
|---|---|---|---|
| per_page | integer | No | Number of tags to retrieve (max 100). |
| Field | Type | Default | Description |
|---|---|---|---|
| per_page | number | 100 | Number of tags to retrieve (max 100). |
| Name | Type | Description |
|---|---|---|
| tags | array | Array of tag objects with id, name, slug, count |
| tags_json | string | JSON string of tags array |
| total | integer | |
| error_message | string |
Creates a new tag on the WordPress site.
| Name | Type | Required | Description |
|---|---|---|---|
| name | string | Yes | The name of the tag to create. |
| slug | string | No | Optional URL-friendly slug (auto-generated if not provided). |
| description | string | No | Optional description for the tag. |
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | The name of the tag to create. | |
| slug | text | Optional URL-friendly slug. Auto-generated from name if not provided. | |
| description | textarea | Optional description for the tag. |
| Name | Type | Description |
|---|---|---|
| tag_id | integer | |
| tag_name | string | |
| tag_slug | string | |
| already_existed | boolean | |
| error_message | string |
Payment processing services for businesses worldwide
Notes:
Process a payment with Worldpay
| Field | Type | Default | Description |
|---|---|---|---|
| amount | number | Payment amount in major currency units (e.g., 10.99) | |
| currency_code | text | GBP | 3-letter currency code (e.g., GBP, USD, EUR) |
| order_description | text | Description of the order | |
| customer_order_code | text | Your unique order reference | |
| success_url | text | URL to redirect after successful payment | |
| failure_url | text | URL to redirect after failed payment | |
| cancel_url | text | URL to redirect when payment is cancelled |
| Name | Type | Description |
|---|---|---|
| order_code | string | Worldpay order code |
| redirect_url | string | URL to redirect customer for payment |
| payment_status | string | |
| payment_data | object |
Check the status of an order
| Field | Type | Default | Description |
|---|---|---|---|
| order_code | text | Worldpay order code to check |
| Name | Type | Description |
|---|---|---|
| order_code | string | |
| payment_status | string | |
| amount | number | |
| currency_code | string | |
| order_data | object |
Capture an authorized payment
| Field | Type | Default | Description |
|---|---|---|---|
| order_code | text | Worldpay order code to capture | |
| amount | number | Amount to capture (leave empty for full amount) |
| Name | Type | Description |
|---|---|---|
| order_code | string | |
| payment_status | string | |
| captured_amount | number | |
| capture_data | object |
Process a refund for an order
| Field | Type | Default | Description |
|---|---|---|---|
| order_code | text | Worldpay order code to refund | |
| refund_amount | number | Amount to refund (leave empty for full refund) |
| Name | Type | Description |
|---|---|---|
| order_code | string | |
| refund_status | string | |
| refunded_amount | number | |
| refund_data | object |
Cancel an authorized order
| Field | Type | Default | Description |
|---|---|---|---|
| order_code | text | Worldpay order code to cancel |
| Name | Type | Description |
|---|---|---|
| order_code | string | |
| payment_status | string | |
| cancel_data | object |
Create a reusable payment token
| Field | Type | Default | Description |
|---|---|---|---|
| card_number | text | Credit card number | |
| expiry_month | text | 2-digit month (01-12) | |
| expiry_year | text | 4-digit year | |
| cvc | text | Card verification code | |
| name | text | Name on the card |
| Name | Type | Description |
|---|---|---|
| token | string | Reusable payment token |
| card_type | string | |
| masked_card_number | string | |
| token_data | object |
Project management and collaboration platform for teams and enterprises
Notes:
Create a new task in Wrike
| Field | Type | Default | Description |
|---|---|---|---|
| folder_id | text | The ID of the folder to create the task in | |
| title | text | The title of the task | |
| description | textarea | Description of the task |
| Name | Type | Description |
|---|---|---|
| task_id | string | The unique ID of the created task |
| task_url | string | The URL to view the task |
List tasks from a folder
| Field | Type | Default | Description |
|---|---|---|---|
| folder_id | text | ID of folder to list tasks from |
| Name | Type | Description |
|---|---|---|
| tasks | array | Array of task objects |
| count | number | Number of tasks returned |
Cloud-based accounting software - Online accounting with bank reconciliation and invoicing
Notes:
Get information about the Xero organisation
| Name | Type | Description |
|---|---|---|
| organisation_id | string | |
| name | string | |
| legal_name | string | |
| country_code | string | |
| financial_year_end_day | number | |
| financial_year_end_month | number |
Create a new contact (customer/supplier) in Xero
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Contact or company name | |
| text | Contact email address | ||
| phone | text | Contact phone number | |
| contact_type | select | CUSTOMER |
| Name | Type | Description |
|---|---|---|
| contact_id | string | |
| name | string | |
| string |
Get all contacts from Xero
| Field | Type | Default | Description |
|---|---|---|---|
| contact_type | select | Filter by contact type | |
| include_archived | checkbox | Include archived contacts |
| Name | Type | Description |
|---|---|---|
| contacts | array | |
| contact_count | number |
Create a new invoice in Xero
| Field | Type | Default | Description |
|---|---|---|---|
| contact_id | text | Xero Contact ID | |
| invoice_type | select | ACCREC | |
| due_date | text | Invoice due date | |
| reference | text | Invoice reference number |
| Name | Type | Description |
|---|---|---|
| invoice_id | string | |
| invoice_number | string | |
| total | number | |
| status | string |
Add a line item to an existing invoice
| Field | Type | Default | Description |
|---|---|---|---|
| invoice_id | text | Xero Invoice ID | |
| description | text | Line item description | |
| quantity | number | 1 | Quantity of items |
| unit_amount | number | Price per unit | |
| account_code | text | Xero account code (e.g., 200 for Sales) |
| Name | Type | Description |
|---|---|---|
| line_item_id | string | |
| description | string | |
| line_amount | number |
Get invoices from Xero
| Field | Type | Default | Description |
|---|---|---|---|
| contact_id | text | Filter by specific contact | |
| status | select | Filter by invoice status | |
| date_from | text | Filter invoices from this date | |
| date_to | text | Filter invoices to this date |
| Name | Type | Description |
|---|---|---|
| invoices | array | |
| invoice_count | number | |
| total_amount | number |
Record a payment against an invoice
| Field | Type | Default | Description |
|---|---|---|---|
| invoice_id | text | Invoice to apply payment to | |
| account_id | text | Bank account ID receiving the payment | |
| amount | number | Amount received | |
| reference | text | Payment reference |
| Name | Type | Description |
|---|---|---|
| payment_id | string | |
| amount | number | |
| status | string |
Get chart of accounts from Xero
| Field | Type | Default | Description |
|---|---|---|---|
| account_type | select | Filter by account type |
| Name | Type | Description |
|---|---|---|
| accounts | array | |
| account_count | number |
Create a new expense (bank transaction)
| Field | Type | Default | Description |
|---|---|---|---|
| bank_account_id | text | Bank account the expense was paid from | |
| contact_id | text | Supplier/vendor contact ID | |
| description | text | Expense description | |
| amount | number | Expense amount | |
| account_code | text | Expense account code |
| Name | Type | Description |
|---|---|---|
| transaction_id | string | |
| amount | number | |
| description | string |
Digital money transfer service by PayPal
Notes:
Get list of countries supported by Xoom
| Name | Type | Description |
|---|---|---|
| countries | array | Array of countries where Xoom operates |
Calculate fees and exchange rates for a transfer
| Field | Type | Default | Description |
|---|---|---|---|
| amount | number | Amount to send | |
| from_currency | text | USD | Currency to send from |
| to_currency | text | Currency to receive | |
| to_country | text | 2-letter country code | |
| delivery_option | select | How the recipient will receive money |
| Name | Type | Description |
|---|---|---|
| fees | number | |
| exchange_rate | number | |
| receive_amount | number | |
| total_cost | number | |
| calculation_data | object |
Send money to a recipient
| Field | Type | Default | Description |
|---|---|---|---|
| sender_first_name | text | Sender's first name | |
| sender_last_name | text | Sender's last name | |
| sender_email | text | Sender's email address | |
| recipient_first_name | text | Recipient's first name | |
| recipient_last_name | text | Recipient's last name | |
| recipient_phone | text | Recipient's phone number | |
| amount | number | Amount to send | |
| currency | text | USD | Currency code |
| to_country | text | 2-letter country code | |
| delivery_option | select | How the recipient will receive money |
| Name | Type | Description |
|---|---|---|
| transaction_id | string | Xoom transaction identifier |
| reference_number | string | Reference number for tracking |
| status | string | |
| estimated_delivery | string | |
| transfer_data | object |
Check the status of a transfer
| Field | Type | Default | Description |
|---|---|---|---|
| transaction_id | text | Xoom transaction ID |
| Name | Type | Description |
|---|---|---|
| transaction_id | string | |
| status | string | |
| amount_sent | number | |
| amount_received | number | |
| completion_date | string | |
| transfer_data | object |
Cancel a pending transfer
| Field | Type | Default | Description |
|---|---|---|---|
| transaction_id | text | Xoom transaction ID to cancel | |
| reason | text | Reason for cancellation |
| Name | Type | Description |
|---|---|---|
| transaction_id | string | |
| status | string | |
| refund_amount | number | |
| cancel_data | object |
Business listings and customer reviews management
Notes:
Search for businesses on Yelp
| Field | Type | Default | Description |
|---|---|---|---|
| term | text | Search term (e.g. "food", "restaurants") | |
| location | text | Location to search (e.g. "NYC", "San Francisco, CA") | |
| categories | text | Comma-separated category aliases (e.g. "restaurants,bars") | |
| radius | number | 10000 | Search radius in meters (max 40000) |
| limit | number | 20 | Number of results to return (max 50) |
| sort_by | select | best_match | Sort businesses by |
| Name | Type | Description |
|---|---|---|
| businesses | array | Array of business data |
| total | number | Total number of results found |
Get detailed information about a specific business
| Field | Type | Default | Description |
|---|---|---|---|
| business_id | text | Yelp business ID or alias |
| Name | Type | Description |
|---|---|---|
| business | object | Complete business information |
Get reviews for a specific business
| Field | Type | Default | Description |
|---|---|---|---|
| business_id | text | Yelp business ID or alias | |
| locale | text | en_US | Language/locale code (e.g. "en_US") |
| Name | Type | Description |
|---|---|---|
| reviews | array | Array of business reviews |
| total | number | Total number of reviews for this business |
E-commerce marketing platform with reviews
Notes:
Get product reviews from Yotpo
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | Specific product ID to filter by | |
| page | number | 1 | Page number to retrieve |
| count | number | 20 | Number of reviews to return (max 100) |
| since_date | text | Get reviews since this date (YYYY-MM-DD format) | |
| score | select | Filter by review score |
| Name | Type | Description |
|---|---|---|
| reviews | array | Array of review data |
| total_reviews | number | Total number of reviews |
| average_score | number | Average review score |
Get reviews for a specific product
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | Product identifier | |
| page | number | 1 | Page number to retrieve |
| count | number | 20 | Number of reviews to return (max 100) |
| Name | Type | Description |
|---|---|---|
| reviews | array | Array of product review data |
| product_info | object | Product information |
| total_reviews | number | Total number of reviews for this product |
| average_score | number | Average score for this product |
Register a purchase to trigger review collection
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | Unique order identifier | |
| customer_email | text | Customer email address | |
| customer_name | text | Customer full name | |
| order_date | text | Order date (YYYY-MM-DD format) | |
| products | textarea | JSON array of products [{\"id\":\"123\",\"name\":\"Product Name\",\"price\":29.99,\"url\":\"https://...\"}] | |
| currency_iso | text | USD | Currency ISO code (e.g., USD, EUR) |
| Name | Type | Description |
|---|---|---|
| purchase_created | boolean | Whether purchase was registered successfully |
| purchase_id | string | Yotpo purchase identifier |
Get product review summary and statistics
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | Product identifier |
| Name | Type | Description |
|---|---|---|
| bottomline | object | Product review summary and statistics |
| total_reviews | number | Total number of reviews |
| average_score | number | Average review score |
| organic_reviews | number | Number of organic reviews |
Get Yotpo widget code for display
| Field | Type | Default | Description |
|---|---|---|---|
| widget_type | select | Type of widget to retrieve | |
| product_id | text | Product ID for product-specific widgets |
| Name | Type | Description |
|---|---|---|
| widget_code | string | HTML/JavaScript widget code |
| widget_url | string | Direct URL to widget |
Get comprehensive product data including reviews and ratings
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | Product identifier |
| Name | Type | Description |
|---|---|---|
| product_data | object | Comprehensive product information |
| reviews | array | Product reviews |
| images | array | Product images from reviews |
| total_reviews | number | Total number of reviews |
Send a test review request email
| Field | Type | Default | Description |
|---|---|---|---|
| text | Email address to send test email to | ||
| template_id | text | Email template ID (optional) |
| Name | Type | Description |
|---|---|---|
| email_sent | boolean | Whether test email was sent successfully |
| message | string | API response message |
Manage YouTube videos, playlists, and channel analytics. Upload content, analyze performance, and automate video workflows for content creators.
Notes:
Get YouTube channel details and statistics
| Field | Type | Default | Description |
|---|---|---|---|
| channel_id | text | mine | YouTube Channel ID (leave as "mine" for your own channel) |
| Name | Type | Description |
|---|---|---|
| channel_id | string | |
| title | string | |
| description | string | |
| subscriber_count | number | |
| video_count | number | |
| view_count | number | |
| thumbnail_url | string | |
| channel_data | object | |
| success | boolean |
Get detailed information about a YouTube video
| Field | Type | Default | Description |
|---|---|---|---|
| video_id | text | YouTube Video ID (e.g., dQw4w9WgXcQ) |
| Name | Type | Description |
|---|---|---|
| video_id | string | |
| title | string | |
| description | string | |
| channel_title | string | |
| view_count | number | |
| like_count | number | |
| comment_count | number | |
| tags | array | |
| published_at | string | |
| privacy_status | string | |
| thumbnail_url | string | |
| video_data | object | |
| success | boolean |
Search YouTube for videos by keyword
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Keywords to search for | |
| max_results | number | 25 | Maximum number of results (1-50) |
| order | select | relevance | How to sort the results |
| Name | Type | Description |
|---|---|---|
| videos | array | |
| total_results | number | |
| query | string | |
| success | boolean |
Get videos from a YouTube channel
| Field | Type | Default | Description |
|---|---|---|---|
| channel_id | text | mine | YouTube Channel ID (leave as "mine" for your own channel) |
| max_results | number | 25 | Maximum number of videos (1-50) |
| order | select | date | How to sort the videos |
| Name | Type | Description |
|---|---|---|
| videos | array | |
| video_count | number | |
| channel_id | string | |
| success | boolean |
Update title, description, tags, and category of a YouTube video
| Field | Type | Default | Description |
|---|---|---|---|
| video_id | text | YouTube Video ID to update | |
| title | text | New video title (leave empty to keep current) | |
| description | textarea | New video description (leave empty to keep current) | |
| tags | text | Comma-separated tags (leave empty to keep current) | |
| category_id | select | Video category (leave empty to keep current) |
| Name | Type | Description |
|---|---|---|
| message | string | |
| video_id | string | |
| updated_fields | object | |
| success | boolean |
Create a new YouTube playlist
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | Name of the new playlist | |
| description | textarea | Playlist description (optional) | |
| privacy_status | select | private | Who can see this playlist |
| Name | Type | Description |
|---|---|---|
| playlist_id | string | |
| title | string | |
| description | string | |
| privacy_status | string | |
| playlist_url | string | |
| success | boolean |
Add a video to an existing YouTube playlist
| Field | Type | Default | Description |
|---|---|---|---|
| playlist_id | text | YouTube Playlist ID | |
| video_id | text | YouTube Video ID to add | |
| position | number | Position in playlist (0 = first, leave empty for end) |
| Name | Type | Description |
|---|---|---|
| message | string | |
| playlist_item_id | string | |
| playlist_id | string | |
| video_id | string | |
| position | number | |
| success | boolean |
Get comments from a YouTube video
| Field | Type | Default | Description |
|---|---|---|---|
| video_id | text | YouTube Video ID | |
| max_results | number | 25 | Maximum number of comments (1-100) |
| order | select | time | How to sort comments |
| Name | Type | Description |
|---|---|---|
| comments | array | |
| comment_count | number | |
| video_id | string | |
| success | boolean |
List available caption tracks for a YouTube video
| Field | Type | Default | Description |
|---|---|---|---|
| video_id | text | YouTube Video ID |
| Name | Type | Description |
|---|---|---|
| captions | array | |
| caption_count | number | |
| video_id | string | |
| success | boolean |
Download caption/subtitle text from a YouTube video
| Field | Type | Default | Description |
|---|---|---|---|
| video_id | text | YouTube Video ID | |
| language | text | en | Language code (e.g., en, es, fr). Defaults to English. |
| format | select | srt | Format of caption text to download |
| Name | Type | Description |
|---|---|---|
| caption_text | string | |
| video_id | string | |
| language | string | |
| caption_name | string | |
| is_auto_generated | boolean | |
| format | string | |
| caption_id | string | |
| success | boolean |
Upload a video file to YouTube with title, description, tags, and privacy settings
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | Title for the uploaded video (max 100 characters) | |
| description | textarea | Video description (max 5000 characters) | |
| tags | text | Comma-separated list of tags for the video | |
| category_id | select | 22 | Video category |
| privacy_status | select | private | Who can see this video. Note: Unverified API projects default to private. |
| video_file | textarea | Video file from previous node (binary data from Google Drive download, etc.) | |
| notify_subscribers | select | true | Send notification to channel subscribers |
| Name | Type | Description |
|---|---|---|
| video_id | string | |
| title | string | |
| description | string | |
| channel_id | string | |
| video_url | string | |
| privacy_status | string | |
| upload_status | string | |
| published_at | string | |
| thumbnail_url | string | |
| success | boolean |
Live streaming platform with monetization and audience engagement tools
Notes:
Create a new YouTube Live broadcast
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | The title of the live broadcast | |
| description | textarea | Broadcast description | |
| scheduled_start_time | text | ISO 8601 format (e.g., 2024-12-25T14:00:00Z) | |
| privacy_status | select | public | |
| enable_auto_start | checkbox | Automatically start when streaming begins | |
| enable_auto_stop | checkbox | Automatically stop when streaming ends | |
| enable_dvr | checkbox | Allow viewers to rewind and fast-forward |
| Name | Type | Description |
|---|---|---|
| broadcast_id | string | |
| stream_id | string | |
| stream_key | string | |
| rtmp_url | string | |
| watch_url | string | |
| success | boolean |
Retrieve details of a specific live broadcast
| Field | Type | Default | Description |
|---|---|---|---|
| broadcast_id | text | The unique ID of the broadcast |
| Name | Type | Description |
|---|---|---|
| title | string | |
| description | string | |
| scheduled_start_time | string | |
| actual_start_time | string | |
| actual_end_time | string | |
| life_cycle_status | string | |
| privacy_status | string | |
| watch_url | string | |
| concurrent_viewers | number | |
| success | boolean |
Transition broadcast to live status
| Field | Type | Default | Description |
|---|---|---|---|
| broadcast_id | text | The unique ID of the broadcast |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| life_cycle_status | string | |
| watch_url | string |
End an active live broadcast
| Field | Type | Default | Description |
|---|---|---|---|
| broadcast_id | text | The unique ID of the broadcast |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| life_cycle_status | string | |
| video_url | string |
Retrieve list of live broadcasts
| Field | Type | Default | Description |
|---|---|---|---|
| broadcast_status | select | all | |
| max_results | number | 25 | Maximum number of broadcasts to return |
| Name | Type | Description |
|---|---|---|
| broadcasts | array | |
| total_count | number | |
| success | boolean |
Retrieve live chat messages from a broadcast
| Field | Type | Default | Description |
|---|---|---|---|
| broadcast_id | text | The unique ID of the broadcast | |
| max_results | number | 25 | Maximum number of messages to return |
| Name | Type | Description |
|---|---|---|
| messages | array | |
| total_count | number | |
| success | boolean |
Retrieve analytics data for a broadcast
| Field | Type | Default | Description |
|---|---|---|---|
| broadcast_id | text | The unique ID of the broadcast |
| Name | Type | Description |
|---|---|---|
| views | number | |
| watch_time_minutes | number | |
| average_view_duration | number | |
| peak_concurrent_viewers | number | |
| likes | number | |
| comments | number | |
| shares | number | |
| success | boolean |
Automation platform connecting thousands of apps with triggers and actions
Notes:
Retrieve a list of your Zapier automations
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | ||
| limit | number | 100 | Maximum number of Zaps to retrieve (1-100) |
| Name | Type | Description |
|---|---|---|
| zaps | array | List of Zapier automations |
| count | number | Total number of Zaps returned |
Retrieve execution history for a specific Zap
| Field | Type | Default | Description |
|---|---|---|---|
| zap_id | text | The unique ID of the Zap | |
| limit | number | 50 | Maximum number of history entries (1-100) |
| Name | Type | Description |
|---|---|---|
| history | array | List of Zap execution records |
| count | number | Number of history entries returned |
Turn a Zap on or off
| Field | Type | Default | Description |
|---|---|---|---|
| zap_id | text | The unique ID of the Zap | |
| action | select |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the operation was successful |
| status | string | The new status of the Zap |
| message | string | Details about the operation |
Create a webhook endpoint for Zapier to send data to
| Field | Type | Default | Description |
|---|---|---|---|
| webhook_name | text | A descriptive name for this webhook | |
| target_url | text | The URL where webhook data should be sent |
| Name | Type | Description |
|---|---|---|
| webhook_url | string | The generated webhook URL for Zapier |
| webhook_id | string | Unique identifier for the webhook |
| success | boolean | Whether the webhook was created successfully |
Manually trigger a Zap execution with custom data
| Field | Type | Default | Description |
|---|---|---|---|
| zap_id | text | The unique ID of the Zap to trigger | |
| trigger_data | textarea | {} | Custom data to send with the trigger as JSON |
| Name | Type | Description |
|---|---|---|
| execution_id | string | Unique ID of the triggered execution |
| success | boolean | Whether the trigger was successful |
| message | string | Details about the trigger operation |
Open-source shopping cart system for e-commerce websites
Notes:
Retrieve products from Zen Cart store
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of products to retrieve |
| category_id | text | Filter by category ID |
| Name | Type | Description |
|---|---|---|
| products | array | List of products |
| total | number | Total number of products |
Get a specific product by ID
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | The ID of the product to retrieve |
| Name | Type | Description |
|---|---|---|
| product | object | Product details |
Create a new product in Zen Cart
| Field | Type | Default | Description |
|---|---|---|---|
| products_name | text | Name of the product | |
| products_description | textarea | Product description | |
| products_price | number | Product price | |
| products_model | text | Product model or SKU | |
| products_quantity | number | 1 | Stock quantity |
| products_status | checkbox | 1 | Whether the product is active |
| Name | Type | Description |
|---|---|---|
| product_id | string | ID of the created product |
| success | boolean | Whether the product was created successfully |
Update an existing product
| Field | Type | Default | Description |
|---|---|---|---|
| product_id | text | ID of the product to update | |
| products_name | text | New product name | |
| products_price | number | New product price | |
| products_quantity | number | New stock quantity |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the product was updated successfully |
Retrieve orders from Zen Cart store
| Field | Type | Default | Description |
|---|---|---|---|
| limit | number | 50 | Maximum number of orders to retrieve |
| orders_status | text | Filter by order status ID |
| Name | Type | Description |
|---|---|---|
| orders | array | List of orders |
| total | number | Total number of orders |
Get a specific order by ID
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | The ID of the order to retrieve |
| Name | Type | Description |
|---|---|---|
| order | object | Order details |
Update the status of an order
| Field | Type | Default | Description |
|---|---|---|---|
| order_id | text | ID of the order to update | |
| orders_status | select | New order status | |
| comments | textarea | Optional comments for the status change |
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the order status was updated successfully |
Customer service and support platform with ticket management, user administration, and organization tools
Notes:
Retrieve tickets from your Zendesk account
| Field | Type | Default | Description |
|---|---|---|---|
| status | select | ||
| priority | select | ||
| assigneeId | text | Filter by assigned agent ID | |
| limit | number | 20 | Number of tickets to retrieve (max 100) |
| Name | Type | Description |
|---|---|---|
| tickets | array | Array of ticket objects |
| total | number |
Create a new ticket in Zendesk
| Field | Type | Default | Description |
|---|---|---|---|
| subject | text | Ticket subject line | |
| description | textarea | Ticket description/content | |
| requesterEmail | text | Email address of the person requesting support | |
| requesterName | text | Name of the person requesting support | |
| priority | select | normal | |
| type | select | question | |
| tags | text | Comma-separated list of tags |
| Name | Type | Description |
|---|---|---|
| ticket | object | |
| ticketId | string |
Update an existing ticket in Zendesk
| Field | Type | Default | Description |
|---|---|---|---|
| ticketId | text | Zendesk ticket ID to update | |
| status | select | ||
| priority | select | ||
| assigneeId | text | Agent ID to assign ticket to | |
| comment | textarea | Optional comment to add when updating | |
| tags | text | Comma-separated list of tags to set on the ticket (replaces existing tags) |
| Name | Type | Description |
|---|---|---|
| ticket | object |
Add a comment to an existing ticket
| Field | Type | Default | Description |
|---|---|---|---|
| ticketId | text | Zendesk ticket ID to comment on | |
| body | textarea | Comment content | |
| public | select | true |
| Name | Type | Description |
|---|---|---|
| comment | object | |
| commentId | string |
Retrieve users from your Zendesk account
| Field | Type | Default | Description |
|---|---|---|---|
| role | select | ||
| text | Search by email address | ||
| limit | number | 20 | Number of users to retrieve (max 100) |
| Name | Type | Description |
|---|---|---|
| users | array | |
| total | number |
Create a new user in Zendesk
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | User's full name | |
| text | User's email address | ||
| role | select | end-user | |
| phone | text | User's phone number | |
| organizationId | text | ID of organization to assign user to |
| Name | Type | Description |
|---|---|---|
| user | object | |
| userId | string |
Update an existing user in Zendesk
| Field | Type | Default | Description |
|---|---|---|---|
| userId | text | Zendesk user ID to update | |
| name | text | Updated name | |
| text | Updated email address | ||
| phone | text | Updated phone number | |
| role | select |
| Name | Type | Description |
|---|---|---|
| user | object |
Retrieve organizations from your Zendesk account
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Search by organization name | |
| limit | number | 20 | Number of organizations to retrieve (max 100) |
| Name | Type | Description |
|---|---|---|
| organizations | array | |
| total | number |
Create a new organization in Zendesk
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Organization name | |
| domains | text | Comma-separated list of domains | |
| details | textarea | Organization details or notes |
| Name | Type | Description |
|---|---|---|
| organization | object | |
| organizationId | string |
Search tickets using Zendesk query language
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Zendesk search query (e.g., "status:open priority:high") | |
| sortBy | select | created_at | |
| sortOrder | select | desc | |
| limit | number | 20 | Number of results to return (max 100) |
| Name | Type | Description |
|---|---|---|
| tickets | array | |
| total | number |
Retrieve comments for a specific ticket
| Field | Type | Default | Description |
|---|---|---|---|
| ticketId | text | Zendesk ticket ID to get comments for | |
| includePrivate | select | true |
| Name | Type | Description |
|---|---|---|
| comments | array | |
| total | number |
Email validation and AI scoring service for verifying email deliverability and quality
Notes:
Check your ZeroBounce account credits balance
| Name | Type | Description |
|---|---|---|
| credits | number | Number of credits remaining in your account |
| success | boolean | Whether the API call was successful |
Validate a single email address to check if it is deliverable
| Field | Type | Default | Description |
|---|---|---|---|
| text | The email address to validate | ||
| ip_address | text | Optional IP address the email signed up from (for additional context) |
| Name | Type | Description |
|---|---|---|
| address | string | The validated email address |
| status | string | Validation status: valid, invalid, catch-all, unknown, spamtrap, abuse, or do_not_mail |
| sub_status | string | Detailed classification (e.g., greylisted, timeout_exceeded, possible_typo) |
| free_email | boolean | Whether the email is from a free email provider |
| mx_found | boolean | Whether MX records were found for the domain |
| firstname | string | First name associated with the email (if available) |
| lastname | string | Last name associated with the email (if available) |
| gender | string | Gender associated with the email (if available) |
| domain | string | The domain of the email address |
| smtp_provider | string | The SMTP provider for the domain |
| processed_at | string | UTC timestamp of when the validation was processed |
| success | boolean | Whether the API call was successful |
Get an AI quality score (0-10) for an email address
| Field | Type | Default | Description |
|---|---|---|---|
| text | The email address to score |
| Name | Type | Description |
|---|---|---|
| string | The email address that was scored | |
| score | number | AI quality score from 0-10 (10 = highest confidence in engagement) |
| success | boolean | Whether the API call was successful |
Online accounting software - Manage finances, automate workflows, and collaborate
Notes:
Get list of organizations in Zoho Books
| Name | Type | Description |
|---|---|---|
| organizations | array | |
| organization_count | number |
Create a new contact (customer/vendor) in Zoho Books
| Field | Type | Default | Description |
|---|---|---|---|
| contact_name | text | Name of the contact | |
| contact_type | select | customer | |
| text | Contact email address | ||
| phone | text | Contact phone number | |
| company_name | text | Company name if applicable |
| Name | Type | Description |
|---|---|---|
| contact_id | string | |
| contact_name | string | |
| string |
Get all contacts from Zoho Books
| Field | Type | Default | Description |
|---|---|---|---|
| contact_type | select | Filter by contact type |
| Name | Type | Description |
|---|---|---|
| contacts | array | |
| contact_count | number |
Create a new invoice in Zoho Books
| Field | Type | Default | Description |
|---|---|---|---|
| customer_id | text | Zoho Books Customer ID | |
| invoice_date | text | today | Invoice date |
| due_date | text | Invoice due date | |
| reference_number | text | Invoice reference number |
| Name | Type | Description |
|---|---|---|
| invoice_id | string | |
| invoice_number | string | |
| total | number | |
| status | string |
Add a line item to an existing invoice
| Field | Type | Default | Description |
|---|---|---|---|
| invoice_id | text | Zoho Books Invoice ID | |
| item_id | text | Zoho Books Item ID (optional) | |
| name | text | Name of the item or service | |
| description | textarea | Item description | |
| quantity | number | 1 | Quantity of items |
| rate | number | Rate per unit |
| Name | Type | Description |
|---|---|---|
| line_item_id | string | |
| name | string | |
| amount | number |
Get invoices from Zoho Books
| Field | Type | Default | Description |
|---|---|---|---|
| customer_id | text | Filter by specific customer | |
| status | select | Filter by invoice status |
| Name | Type | Description |
|---|---|---|
| invoices | array | |
| invoice_count | number | |
| total_amount | number |
Create a new item/product in Zoho Books
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the item | |
| description | textarea | Item description | |
| rate | number | Item rate/price | |
| unit | text | qty | Unit of measurement |
| Name | Type | Description |
|---|---|---|
| item_id | string | |
| name | string | |
| rate | number |
Get all items/products from Zoho Books
| Field | Type | Default | Description |
|---|---|---|---|
| is_active | checkbox | 1 | Show only active items |
| Name | Type | Description |
|---|---|---|
| items | array | |
| item_count | number |
Record a payment received against an invoice
| Field | Type | Default | Description |
|---|---|---|---|
| customer_id | text | Customer making the payment | |
| amount | number | Amount received | |
| payment_mode | select | cash | |
| reference_number | text | Payment reference |
| Name | Type | Description |
|---|---|---|
| payment_id | string | |
| amount | number | |
| payment_mode | string |
Create a new expense entry in Zoho Books
| Field | Type | Default | Description |
|---|---|---|---|
| account_id | text | Expense account ID | |
| amount | number | Expense amount | |
| description | text | Expense description | |
| expense_date | text | today | Date the expense occurred |
| vendor_id | text | Vendor/supplier ID |
| Name | Type | Description |
|---|---|---|
| expense_id | string | |
| amount | number | |
| description | string |
Customer relationship management and sales automation platform with comprehensive CRM features
Notes:
Get list of available CRM modules
| Name | Type | Description |
|---|---|---|
| modules | array | |
| count | number | |
| success | boolean |
Get records from a specific CRM module
| Field | Type | Default | Description |
|---|---|---|---|
| module | select | CRM module to get records from | |
| page | number | 1 | Page number for pagination |
| perPage | number | 200 | Number of records per page (max 200) |
| sortBy | text | Field name to sort by (e.g., Created_Time, Modified_Time) | |
| sortOrder | select | Sort order for records |
| Name | Type | Description |
|---|---|---|
| records | array | |
| count | number | |
| hasMore | boolean | |
| success | boolean |
Get details of a specific record
| Field | Type | Default | Description |
|---|---|---|---|
| module | select | CRM module containing the record | |
| recordId | text | The ID of the record to retrieve |
| Name | Type | Description |
|---|---|---|
| record | object | |
| recordId | string | |
| module | string | |
| success | boolean |
Create a new record in a CRM module
| Field | Type | Default | Description |
|---|---|---|---|
| module | select | CRM module to create record in | |
| recordData | textarea | Record data as JSON object (e.g., {"First_Name": "John", "Last_Name": "Doe", "Email": "john@example.com"}) | |
| trigger | select | true | Whether to trigger Zoho workflows and automation |
| Name | Type | Description |
|---|---|---|
| recordId | string | |
| record | object | |
| status | string | |
| success | boolean |
Update an existing record in a CRM module
| Field | Type | Default | Description |
|---|---|---|---|
| module | select | CRM module containing the record | |
| recordId | text | The ID of the record to update | |
| recordData | textarea | Fields to update as JSON object (e.g., {"Lead_Status": "Qualified", "Rating": "Hot"}) | |
| trigger | select | true | Whether to trigger Zoho workflows and automation |
| Name | Type | Description |
|---|---|---|
| recordId | string | |
| record | object | |
| updated | boolean | |
| success | boolean |
Delete a record from a CRM module
| Field | Type | Default | Description |
|---|---|---|---|
| module | select | CRM module containing the record | |
| recordId | text | The ID of the record to delete |
| Name | Type | Description |
|---|---|---|
| deleted | boolean | |
| recordId | string | |
| success | boolean |
Search for records using criteria or keywords
| Field | Type | Default | Description |
|---|---|---|---|
| module | select | CRM module to search in | |
| searchType | select | Type of search to perform | |
| searchValue | text | Search criteria, keyword, email, or phone number | |
| limit | number | 200 | Maximum number of results to return |
| Name | Type | Description |
|---|---|---|
| records | array | |
| count | number | |
| searchQuery | string | |
| success | boolean |
Convert a lead to contact, account, and deal
| Field | Type | Default | Description |
|---|---|---|---|
| leadId | text | The ID of the lead to convert | |
| assignTo | text | User ID to assign the converted records to | |
| notifyOwner | select | false | Whether to notify the record owner |
| dealData | textarea | Optional deal data for conversion (e.g., {"Deal_Name": "New Opportunity", "Amount": 10000}) |
| Name | Type | Description |
|---|---|---|
| contactId | string | |
| accountId | string | |
| dealId | string | |
| conversion | object | |
| success | boolean |
Get list of CRM users
| Field | Type | Default | Description |
|---|---|---|---|
| type | select | Filter users by type |
| Name | Type | Description |
|---|---|---|
| users | array | |
| count | number | |
| success | boolean |
Add a note to a record
| Field | Type | Default | Description |
|---|---|---|---|
| module | select | CRM module containing the record | |
| recordId | text | The ID of the record to add note to | |
| noteTitle | text | Title of the note | |
| noteContent | textarea | Content of the note |
| Name | Type | Description |
|---|---|---|
| noteId | string | |
| note | object | |
| success | boolean |
Project management application with task tracking, collaboration, and reporting tools
Notes:
Create a new task in Zoho Projects
| Field | Type | Default | Description |
|---|---|---|---|
| project_id | text | The ID of the project | |
| name | text | The name of the task |
| Name | Type | Description |
|---|---|---|
| task_id | string | The unique ID of the created task |
Webinar hosting and automation platform with interactive features and analytics
Notes:
Create a new Zoom webinar
| Field | Type | Default | Description |
|---|---|---|---|
| topic | text | The title of the webinar | |
| type | select | 5 | |
| start_time | text | ISO 8601 format (e.g., 2024-12-25T10:00:00Z) | |
| duration | number | 60 | Webinar duration in minutes |
| timezone | text | UTC | e.g., America/New_York, Europe/London |
| agenda | textarea | Webinar agenda/description | |
| password | text | Webinar password (leave empty for no password) | |
| registration_required | checkbox | Require attendees to register before joining |
| Name | Type | Description |
|---|---|---|
| webinar_id | string | |
| join_url | string | |
| registration_url | string | |
| start_url | string | |
| success | boolean |
Retrieve details of a specific webinar
| Field | Type | Default | Description |
|---|---|---|---|
| webinar_id | text | The ID of the webinar |
| Name | Type | Description |
|---|---|---|
| topic | string | |
| start_time | string | |
| duration | number | |
| join_url | string | |
| registration_url | string | |
| status | string | |
| success | boolean |
Register a user for a webinar
| Field | Type | Default | Description |
|---|---|---|---|
| webinar_id | text | The ID of the webinar | |
| text | Registrant email address | ||
| first_name | text | Registrant first name | |
| last_name | text | Registrant last name | |
| phone | text | Registrant phone number | |
| organization | text | Registrant organization |
| Name | Type | Description |
|---|---|---|
| registrant_id | string | |
| join_url | string | |
| success | boolean |
Retrieve list of webinar registrants
| Field | Type | Default | Description |
|---|---|---|---|
| webinar_id | text | The ID of the webinar | |
| status | select | approved | |
| page_size | number | 30 | Number of records per page (max 300) |
| Name | Type | Description |
|---|---|---|
| registrants | array | |
| total_records | number | |
| success | boolean |
Update webinar status (start/end)
| Field | Type | Default | Description |
|---|---|---|---|
| webinar_id | text | The ID of the webinar | |
| action | select |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| status | string |
List webinars for the authenticated user
| Field | Type | Default | Description |
|---|---|---|---|
| type | select | scheduled | |
| page_size | number | 30 | Number of records per page (max 300) |
| Name | Type | Description |
|---|---|---|
| webinars | array | |
| total_records | number | |
| success | boolean |
B2B contact and company intelligence platform with advanced search, enrichment, intent data, and technographics for sales prospecting
Notes:
Search ZoomInfo database for B2B contacts with advanced filters
| Field | Type | Default | Description |
|---|---|---|---|
| first_name | text | Contact first name to search for | |
| last_name | text | Contact last name to search for | |
| text | Contact email address to search for | ||
| company_name | text | Company name to search within | |
| job_title | text | Job title or role to search for | |
| job_levels | textarea | [] | Array of job levels (e.g., ["C-Level", "VP", "Director", "Manager"]) |
| industries | textarea | [] | Array of industry names to filter by |
| locations | textarea | [] | Array of geographic locations (cities, states, countries) |
| company_size | select | Filter by company employee count | |
| limit | number | 25 | Maximum number of contacts to return (default: 25, max: 100) |
| Name | Type | Description |
|---|---|---|
| contacts | array | Array of found contacts with detailed information |
| total_results | number | Total number of contacts matching the search criteria |
| search_filters | object | The filters that were applied to the search |
Get detailed information and intelligence about a specific contact
| Field | Type | Default | Description |
|---|---|---|---|
| text | Contact email address to enrich | ||
| contact_id | text | ZoomInfo contact ID to enrich | |
| include_company_data | checkbox | 1 | Include detailed company information for the contact |
| include_social_profiles | checkbox | 1 | Include social media profiles and links |
| Name | Type | Description |
|---|---|---|
| contact | object | Enriched contact information with intelligence data |
| company | object | Detailed company information and intelligence |
| social_profiles | array | Social media profiles and professional links |
| data_quality_score | number | ZoomInfo data quality and confidence score |
Search ZoomInfo database for companies with business intelligence
| Field | Type | Default | Description |
|---|---|---|---|
| company_name | text | Company name or domain to search for | |
| website | text | Company website or domain | |
| industries | textarea | [] | Array of industry names to filter by |
| locations | textarea | [] | Array of geographic locations |
| employee_count_min | number | Minimum number of employees | |
| employee_count_max | number | Maximum number of employees | |
| revenue_min | number | Minimum annual revenue in USD | |
| revenue_max | number | Maximum annual revenue in USD | |
| limit | number | 25 | Maximum number of companies to return (default: 25, max: 100) |
| Name | Type | Description |
|---|---|---|
| companies | array | Array of found companies with business intelligence |
| total_results | number | Total number of companies matching the search |
Get comprehensive business intelligence about a specific company
| Field | Type | Default | Description |
|---|---|---|---|
| company_name | text | Company name to enrich | |
| website | text | Company website or domain | |
| company_id | text | ZoomInfo company ID to enrich | |
| include_financials | checkbox | 1 | Include revenue, funding, and financial information |
| include_technologies | checkbox | 1 | Include technology and software usage data |
| Name | Type | Description |
|---|---|---|
| company | object | Comprehensive company information and intelligence |
| financial_data | object | Revenue, funding, and financial metrics |
| technology_stack | array | Technologies and software used by the company |
| key_contacts | array | Executive and key personnel contacts |
Retrieve all contacts from a specific company
| Field | Type | Default | Description |
|---|---|---|---|
| company_id | text | ZoomInfo company ID | |
| company_name | text | Company name to get contacts from | |
| job_levels | textarea | [] | Filter by job levels (e.g., ["C-Level", "VP", "Director"]) |
| departments | textarea | [] | Filter by departments (e.g., ["Marketing", "Sales", "IT"]) |
| limit | number | 25 | Maximum number of contacts to return (default: 25, max: 100) |
| Name | Type | Description |
|---|---|---|
| contacts | array | Contacts from the specified company |
| company_info | object | Basic company information |
| total_contacts | number | Total number of contacts at the company |
Get technology usage and adoption data for companies
| Field | Type | Default | Description |
|---|---|---|---|
| technologies | textarea | [] | Array of technology names to search for (e.g., ["Salesforce", "HubSpot", "AWS"]) |
| technology_categories | textarea | [] | Array of technology categories (e.g., ["CRM", "Marketing Automation", "Cloud Infrastructure"]) |
| company_size | select | Filter by company size | |
| industries | textarea | [] | Array of industry names to filter by |
| limit | number | 25 | Maximum number of companies to return (default: 25, max: 100) |
| Name | Type | Description |
|---|---|---|
| companies | array | Companies using the specified technologies |
| technology_insights | object | Technology adoption trends and insights |
| market_analysis | object | Market penetration and competitive analysis |
Retrieve buying intent and behavioral signals for companies
| Field | Type | Default | Description |
|---|---|---|---|
| intent_topics | textarea | [] | Array of intent topics to track (e.g., ["CRM Software", "Marketing Automation"]) |
| company_names | textarea | [] | Array of specific company names to get intent data for |
| intent_strength | select | Minimum intent strength to include | |
| date_range | select | Time period for intent data | |
| limit | number | 25 | Maximum number of intent signals to return (default: 25, max: 100) |
| Name | Type | Description |
|---|---|---|
| intent_signals | array | Buying intent signals and behavioral data |
| trending_topics | array | Currently trending intent topics |
| intent_summary | object | Summary of intent data and trends |
Retrieve recent news and business events for companies
| Field | Type | Default | Description |
|---|---|---|---|
| company_id | text | ZoomInfo company ID | |
| company_name | text | Company name to get news for | |
| news_types | textarea | [] | Array of news types (e.g., ["funding", "acquisition", "executive_change", "product_launch"]) |
| date_range | select | Time period for news data | |
| limit | number | 10 | Maximum number of news items to return (default: 10, max: 50) |
| Name | Type | Description |
|---|---|---|
| news_items | array | Recent news and business events |
| company_info | object | Basic company information |
| news_summary | object | Summary of recent company activity |
Connect to GitHub repositories for commit monitoring, issue management, and automated workflows
Notes:
Triggered when commits are pushed to a repository
| Field | Type | Default | Description |
|---|---|---|---|
| webhook_url | text | Configure this URL in your GitHub repository webhook settings | |
| webhook_secret | password | Secret for webhook verification (set in GitHub webhook settings) |
| Name | Type | Description |
|---|---|---|
| repository | object | Repository information |
| commits | array | Array of commit objects |
| head_commit | object | The latest commit in the push |
| pusher | object | User who pushed the commits |
| ref | string | Git reference (branch/tag) that was pushed |
Triggered when an issue is created, updated, or closed
| Field | Type | Default | Description |
|---|---|---|---|
| webhook_url | text | Configure this URL in your GitHub repository webhook settings | |
| webhook_secret | password | Secret for webhook verification |
| Name | Type | Description |
|---|---|---|
| action | string | Action performed (opened, closed, edited, etc.) |
| issue | object | Complete issue object |
| issue_number | number | Issue number |
| issue_title | string | Title of the issue |
| issue_body | string | Body content of the issue |
Triggered when a pull request is created, updated, or merged
| Field | Type | Default | Description |
|---|---|---|---|
| webhook_url | text | Configure this URL in your GitHub repository webhook settings | |
| webhook_secret | password | Secret for webhook verification |
| Name | Type | Description |
|---|---|---|
| action | string | Action performed (opened, closed, merged, etc.) |
| pull_request | object | Complete pull request object |
| pr_number | number | Pull request number |
| pr_title | string | Title of the pull request |
| pr_body | string | Body content of the pull request |
Periodically check for new commits in a repository
| Field | Type | Default | Description |
|---|---|---|---|
| repo_owner | text | GitHub username or organization name | |
| repo_name | text | Name of the repository | |
| branch | text | main | Branch to monitor for commits |
| Name | Type | Description |
|---|---|---|
| commit | object | Commit object with full details |
| sha | string | Unique commit identifier |
| message | string | Commit message |
| author | object | Commit author information |
| url | string | URL to view the commit on GitHub |
Retrieve information about a GitHub repository
| Field | Type | Default | Description |
|---|---|---|---|
| repo_owner | text | GitHub username or organization name | |
| repo_name | text | Name of the repository |
| Name | Type | Description |
|---|---|---|
| repository | object | Complete repository object |
| name | string | Name of the repository |
| description | string | Repository description |
| html_url | string | URL to view repository on GitHub |
| default_branch | string | Default branch name |
Retrieve commits from a repository branch
| Field | Type | Default | Description |
|---|---|---|---|
| repo_owner | text | GitHub username or organization name | |
| repo_name | text | Name of the repository | |
| branch | text | main | Branch to get commits from |
| limit | number | 10 | Maximum number of commits to retrieve (1-100) |
| Name | Type | Description |
|---|---|---|
| commits | array | Array of commit objects |
| count | number | Number of commits returned |
Create a new issue in a GitHub repository
| Field | Type | Default | Description |
|---|---|---|---|
| repo_owner | text | GitHub username or organization name | |
| repo_name | text | Name of the repository | |
| title | text | Title of the issue | |
| body | textarea | Description of the issue (Markdown supported) | |
| labels | text | Comma-separated list of labels |
| Name | Type | Description |
|---|---|---|
| issue | object | Complete issue object |
| issue_number | number | Issue number |
| html_url | string | URL to view the issue on GitHub |
Add a comment to an existing GitHub issue
| Field | Type | Default | Description |
|---|---|---|---|
| repo_owner | text | GitHub username or organization name | |
| repo_name | text | Name of the repository | |
| issue_number | number | The issue number to comment on | |
| body | textarea | The content of the comment (Markdown supported) |
| Name | Type | Description |
|---|---|---|
| comment | object | Complete comment object |
| comment_id | number | Unique identifier of the comment |
| html_url | string | URL to view the comment on GitHub |
| issue_url | string | URL to the issue |
Add one or more labels to a GitHub issue
| Field | Type | Default | Description |
|---|---|---|---|
| repo_owner | text | GitHub username or organization name | |
| repo_name | text | Name of the repository | |
| issue_number | number | The issue number to add labels to | |
| labels | text | Comma-separated list of labels to add |
| Name | Type | Description |
|---|---|---|
| labels | array | Array of label objects on the issue |
| count | number | Number of labels now on the issue |
Retrieve the content of a file from a repository
| Field | Type | Default | Description |
|---|---|---|---|
| repo_owner | text | GitHub username or organization name | |
| repo_name | text | Name of the repository | |
| file_path | text | Path to the file in the repository (e.g., README.md, src/index.js) | |
| branch | text | main | Branch to get the file from |
| Name | Type | Description |
|---|---|---|
| content | string | Raw content of the file |
| file | object | Complete file metadata object |
| name | string | Name of the file |
| path | string | Full path to the file |
| size | number | Size of the file in bytes |
| download_url | string | Direct download URL for the file |
Create a new GitHub repository
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name of the new repository | |
| description | textarea | A short description of the repository | |
| isPrivate | select | Set repository visibility | |
| organization | text | Organization name (leave empty for personal repository) | |
| readmeContent | textarea | Content for the README.md file (Markdown supported). Repository will be automatically initialized with README. |
| Name | Type | Description |
|---|---|---|
| repository | object | Complete repository object |
| name | string | Name of the created repository |
| full_name | string | Full repository name (owner/repo) |
| description | string | Repository description |
| html_url | string | URL to view repository on GitHub |
| clone_url | string | HTTPS URL for cloning the repository |
| ssh_url | string | SSH URL for cloning the repository |
| default_branch | string | Default branch name |
| private | boolean | Whether the repository is private |
Advanced 2D to 3D conversion tool that generates detailed 3D models, textures, and Gaussian splats from input images. Supports multiple output formats and quality controls for professional 3D asset creation.
Notes:
Convert images to 3D models with textures using Trellis
| Field | Type | Default | Description |
|---|---|---|---|
| images | textarea | One or more image URLs to convert to 3D (one per line). You can use [[nodes.x.image_url]] to reference images from other nodes. | |
| texture_size | select | 2048 | Resolution of generated textures |
| mesh_simplify | number | 0.9 | Mesh complexity (0.1=simple, 1.0=detailed) |
| generate_model | checkbox | 1 | Generate the main 3D mesh model |
| generate_color | checkbox | 1 | Generate color/albedo texture maps |
| generate_normal | checkbox | Generate normal maps for surface detail | |
| save_gaussian_ply | checkbox | 1 | Generate Gaussian splatting PLY file |
| return_no_background | checkbox | Generate model without background elements | |
| ss_sampling_steps | number | 38 | Quality vs speed for sparse structure (higher = better quality) |
| slat_sampling_steps | number | 12 | Quality vs speed for texture generation |
| ss_guidance_strength | number | 7.5 | How closely to follow input for structure |
| slat_guidance_strength | number | 3 | How closely to follow input for textures |
| randomize_seed | checkbox | 1 | Use random seed for varied results |
| seed | number | 0 | Fixed seed for reproducible results (only used if randomize is off) |
| Name | Type | Description |
|---|---|---|
| model_files | array | Generated 3D model files and textures |
| model_data | binary | Primary 3D model file |
| metadata | object | Metadata about the generated 3D assets |
Connect to Google Ads for comprehensive PPC campaign management and automation. Create, manage, and optimize search, display, and video campaigns with advanced bidding strategies, keyword management, and detailed performance reporting.
Notes:
Retrieve campaigns from Google Ads account
| Field | Type | Default | Description |
|---|---|---|---|
| status_filter | select |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of campaign objects |
| total | number |
Create a new Google Ads campaign
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | ||
| budget_amount | number | Daily budget in micros (e.g., 10000000 = $10) | |
| campaign_type | select | SEARCH | |
| bidding_strategy | select | MANUAL_CPC | |
| target_cpa | number | Only for Target CPA bidding (e.g., 5000000 = $5) | |
| networks | select | SEARCH |
| Name | Type | Description |
|---|---|---|
| campaign_id | string | |
| campaign_name | string | |
| status | string |
Update an existing campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | ||
| name | text | ||
| status | select | ||
| budget_amount | number |
| Name | Type | Description |
|---|---|---|
| campaign_id | string | |
| campaign_name | string | |
| status | string |
Retrieve ad groups from a specific campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text |
| Name | Type | Description |
|---|---|---|
| ad_groups | array | Array of ad group objects |
| total | number |
Create a new ad group within a campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | ||
| name | text | ||
| cpc_bid_micros | number | Default CPC bid in micros (e.g., 1000000 = $1) |
| Name | Type | Description |
|---|---|---|
| ad_group_id | string | |
| ad_group_name | string | |
| status | string |
Retrieve keywords from an ad group
| Field | Type | Default | Description |
|---|---|---|---|
| ad_group_id | text |
| Name | Type | Description |
|---|---|---|
| keywords | array | Array of keyword objects |
| total | number |
Add keywords to an ad group
| Field | Type | Default | Description |
|---|---|---|---|
| ad_group_id | text | ||
| keywords | textarea | Keywords as JSON array: [{"text":"keyword","match_type":"BROAD","cpc_bid_micros":1000000}] |
| Name | Type | Description |
|---|---|---|
| keywords_added | number | |
| success | boolean |
Update a keyword bid or status
| Field | Type | Default | Description |
|---|---|---|---|
| keyword_id | text | ||
| cpc_bid_micros | number | ||
| status | select |
| Name | Type | Description |
|---|---|---|
| keyword_id | string | |
| status | string |
Retrieve ads from an ad group
| Field | Type | Default | Description |
|---|---|---|---|
| ad_group_id | text |
| Name | Type | Description |
|---|---|---|
| ads | array | Array of ad objects |
| total | number |
Create a responsive search ad
| Field | Type | Default | Description |
|---|---|---|---|
| ad_group_id | text | ||
| headlines | textarea | Array of headlines: ["Headline 1", "Headline 2", "Headline 3"] | |
| descriptions | textarea | Array of descriptions: ["Description 1", "Description 2"] | |
| final_urls | textarea | Array of landing page URLs: ["https://example.com"] |
| Name | Type | Description |
|---|---|---|
| ad_id | string | |
| status | string |
Update an ad status
| Field | Type | Default | Description |
|---|---|---|---|
| ad_id | text | ||
| status | select |
| Name | Type | Description |
|---|---|---|
| ad_id | string | |
| status | string |
Get performance metrics for campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | Leave empty for all campaigns | |
| date_range | select | LAST_7_DAYS |
| Name | Type | Description |
|---|---|---|
| impressions | number | |
| clicks | number | |
| ctr | number | |
| cost_micros | number | |
| average_cpc | number | |
| conversions | number | |
| conversion_rate | number |
Get performance metrics for keywords
| Field | Type | Default | Description |
|---|---|---|---|
| ad_group_id | text | Leave empty for all keywords | |
| date_range | select | LAST_7_DAYS |
| Name | Type | Description |
|---|---|---|
| keywords_report | array | Array of keyword performance data |
| total_keywords | number |
Add negative keywords to a campaign or ad group
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | ||
| ad_group_id | text | Leave empty for campaign-level negative keywords | |
| negative_keywords | textarea | Array of negative keywords: ["keyword1", "keyword2"] | |
| match_type | select | BROAD |
| Name | Type | Description |
|---|---|---|
| negative_keywords_added | number | |
| success | boolean |
Update campaign budget
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | ||
| budget_amount | number | New daily budget in micros (e.g., 10000000 = $10) |
| Name | Type | Description |
|---|---|---|
| budget_id | string | |
| amount_micros | number |
Send, receive, and manage emails with Microsoft Outlook
Notes:
Retrieve a specific email by its ID
| Field | Type | Default | Description |
|---|---|---|---|
| message_id | text | The ID of the email to retrieve |
| Name | Type | Description |
|---|---|---|
| id | string | |
| subject | string | |
| from | object | |
| to | array | |
| cc | array | |
| body | string | |
| bodyPreview | string | |
| receivedDateTime | string | |
| isRead | boolean | |
| hasAttachments | boolean |
List emails from inbox or a specific folder
| Field | Type | Default | Description |
|---|---|---|---|
| folder | select | inbox | |
| max_results | number | 10 | Maximum number of emails to retrieve (1-50) |
| filter | select | all |
| Name | Type | Description |
|---|---|---|
| messages | array | |
| count | number |
Search emails using a query string
| Field | Type | Default | Description |
|---|---|---|---|
| query | text | Search terms (e.g., "from:john@example.com" or "subject:meeting") | |
| max_results | number | 10 | Maximum number of results (1-50) |
| Name | Type | Description |
|---|---|---|
| messages | array | |
| count | number |
Send a new email
| Field | Type | Default | Description |
|---|---|---|---|
| to | text | Recipient email address (or comma-separated list) | |
| subject | text | ||
| body | textarea | ||
| cc | text | CC recipients (comma-separated) | |
| bcc | text | BCC recipients (comma-separated) | |
| body_type | select | html |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message_id | string | |
| message | string |
Reply to an existing email
| Field | Type | Default | Description |
|---|---|---|---|
| message_id | text | The ID of the email to reply to | |
| body | textarea | ||
| reply_all | checkbox | Reply to all recipients |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string |
Forward an email to other recipients
| Field | Type | Default | Description |
|---|---|---|---|
| message_id | text | The ID of the email to forward | |
| to | text | Recipient email address (or comma-separated list) | |
| comment | textarea | Additional message to include |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string |
Mark an email as read
| Field | Type | Default | Description |
|---|---|---|---|
| message_id | text |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string |
Mark an email as unread
| Field | Type | Default | Description |
|---|---|---|---|
| message_id | text |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string |
Permanently delete an email
| Field | Type | Default | Description |
|---|---|---|---|
| message_id | text |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string |
Move an email to a different folder
| Field | Type | Default | Description |
|---|---|---|---|
| message_id | text | ||
| destination_folder | select |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string |
Move an email to the archive folder
| Field | Type | Default | Description |
|---|---|---|---|
| message_id | text |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string |
List all mail folders
| Name | Type | Description |
|---|---|---|
| folders | array | |
| count | number |
Create a new mail folder
| Field | Type | Default | Description |
|---|---|---|---|
| folder_name | text |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| folder_id | string | |
| message | string |
Download an email attachment
| Field | Type | Default | Description |
|---|---|---|---|
| message_id | text | ||
| attachment_id | text |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| attachment_data | binary | Binary file data |
| filename | string | |
| content_type | string |
Extract company data, investments, and market insights from PitchBook company profiles. Get detailed information about funding rounds, valuations, executives, and growth metrics.
Notes:
Extract detailed company information from PitchBook URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | PitchBook company URLs to scrape |
| Name | Type | Description |
|---|---|---|
| companies | array | Detailed company information with investments, valuations, and market insights |
| count | number | Number of companies scraped |
Extract questions, answers, and engagement data from Quora. Get detailed information about posts, authors, upvotes, views, and discover related content through question-based search.
Notes:
Extract detailed post information from Quora URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Quora post URLs to scrape (questions, answers, or spaces) |
| Name | Type | Description |
|---|---|---|
| posts | array | Detailed post information with questions, answers, and engagement metrics |
| count | number | Number of posts scraped |
Find related posts using Quora question URLs
| Field | Type | Default | Description |
|---|---|---|---|
| searchUrls | textarea | Quora question URLs to discover related content from |
| Name | Type | Description |
|---|---|---|
| posts | array | Related posts and content discovered from the question URLs |
| count | number | Number of posts discovered |
Extract property listings from realestate.com.au including prices, details, agent information, and market data. Support for buy, rent, and sold properties with advanced search filtering.
Extract property listings from realtor.com with advanced filtering options. Search by location, property type, listing status, and market timing for both buy and rent properties.
Notes:
Extract detailed property information from realtor.com URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Realtor property URLs from realtor.com to scrape |
| Name | Type | Description |
|---|---|---|
| properties | array | Detailed property information with prices, details, and location data |
| count | number | Number of properties scraped |
Discover properties using advanced search criteria and filters
| Field | Type | Default | Description |
|---|---|---|---|
| searchText | text | Location to search (city, state, or ZIP code) | |
| propertyTypes | textarea | Property types to search for | |
| listingStatus | textarea | Listing status filters | |
| daysOnRealtor | textarea | How long properties have been listed | |
| buyOrRent | select | Whether to search for purchase or rental properties |
| Name | Type | Description |
|---|---|---|
| properties | array | Properties matching the extended filter criteria |
| count | number | Number of properties discovered |
Discover properties using realtor.com search URLs
| Field | Type | Default | Description |
|---|---|---|---|
| searchUrls | textarea | Search URLs from realtor.com to discover properties from |
| Name | Type | Description |
|---|---|---|
| properties | array | Properties discovered from the search URLs |
| count | number | Number of properties discovered |
Extract posts, comments, and engagement data from Reddit. Search by keywords, scrape specific subreddits, and analyze comment threads with detailed filtering options.
Notes:
Extract detailed post information from Reddit URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Reddit post URLs to scrape |
| Name | Type | Description |
|---|---|---|
| posts | array | Detailed post information with content, upvotes, and metadata |
| count | number | Number of posts scraped |
Find Reddit posts using keyword search with filtering options
| Field | Type | Default | Description |
|---|---|---|---|
| keyword | text | Keyword to search for posts | |
| date | select | Time period to search within | |
| sortBy | select | How to sort the results |
| Name | Type | Description |
|---|---|---|
| posts | array | Posts matching the keyword search |
| count | number | Number of posts discovered |
Extract posts from specific subreddit URLs with sorting options
| Field | Type | Default | Description |
|---|---|---|---|
| subredditUrls | textarea | Reddit subreddit URLs to scrape posts from | |
| sortBy | select | How to sort the results | |
| sortByTime | select | Time period for sorting |
| Name | Type | Description |
|---|---|---|
| posts | array | Posts from the specified subreddits |
| count | number | Number of posts discovered |
Extract comments from Reddit post or comment URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Reddit comment or post URLs to scrape comments from | |
| daysBack | number | Number of days back to scrape comments (leave empty for all) | |
| loadAllReplies | select | Whether to load all reply threads | |
| commentLimit | number | Maximum number of comments to scrape (leave empty for no limit) |
| Name | Type | Description |
|---|---|---|
| comments | array | Detailed comment information with replies and scores |
| count | number | Number of comments scraped |
Extract posts from Snapchat Spotlight and scrape profile information. Discover content by profiles and search queries with detailed filtering options.
Notes:
Extract post information from Snapchat Spotlight URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Snapchat Spotlight post URLs to scrape |
| Name | Type | Description |
|---|---|---|
| posts | array | Detailed post information with content and engagement metrics |
| count | number | Number of posts scraped |
Discover posts from Snapchat profile URLs with tab filtering
| Field | Type | Default | Description |
|---|---|---|---|
| profileUrls | textarea | Snapchat profile URLs to discover posts from | |
| tab | select | Type of content to scrape from profile |
| Name | Type | Description |
|---|---|---|
| posts | array | Posts discovered from the profile |
| count | number | Number of posts discovered |
Discover posts using Snapchat search URLs with tab filtering
| Field | Type | Default | Description |
|---|---|---|---|
| searchUrls | textarea | Snapchat search URLs to discover posts from | |
| tab | select | Search tab to scrape results from |
| Name | Type | Description |
|---|---|---|
| posts | array | Posts discovered from search URLs |
| count | number | Number of posts discovered |
Extract detailed profile information from Snapchat profile URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Snapchat profile URLs to scrape | |
| collectAllHighlights | select | Whether to collect all highlights from the profile |
| Name | Type | Description |
|---|---|---|
| profiles | array | Detailed profile information with stories and highlights |
| count | number | Number of profiles scraped |
Extract product data from Target.com including prices, reviews, availability, and inventory. Search by keywords, UPC codes, or scrape specific categories with location-based filtering.
Notes:
Extract detailed product information from Target URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Target product URLs to scrape |
| Name | Type | Description |
|---|---|---|
| products | array | Detailed product information with prices, reviews, and availability |
| count | number | Number of products scraped |
Find Target products using keyword search
| Field | Type | Default | Description |
|---|---|---|---|
| keywords | text | Keywords to search for products |
| Name | Type | Description |
|---|---|---|
| products | array | Products matching the keyword search |
| count | number | Number of products discovered |
Find Target products using UPC codes with location filtering
| Field | Type | Default | Description |
|---|---|---|---|
| upc | text | Universal Product Code to search for | |
| zipcode | text | ZIP code for location-based availability | |
| allVariations | select | Whether to include all product variations |
| Name | Type | Description |
|---|---|---|
| products | array | Products matching the UPC code |
| count | number | Number of products discovered |
Discover products using Target category or search URLs
| Field | Type | Default | Description |
|---|---|---|---|
| searchUrls | textarea | Target category or search URLs to discover products from | |
| zipcode | text | ZIP code for location-based availability | |
| shippingType | select | Filter by shipping/pickup availability |
| Name | Type | Description |
|---|---|---|
| products | array | Products discovered from the search URLs |
| count | number | Number of products discovered |
Extract customer reviews and business ratings from Trustpilot. Analyze business reputation, customer feedback, and review sentiment with detailed metadata and filtering options.
Notes:
Extract business reviews and ratings from Trustpilot URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Trustpilot business review page URLs to scrape | |
| datePosted | text | Filter reviews by date posted (leave empty for all reviews) |
| Name | Type | Description |
|---|---|---|
| reviews | array | Detailed business reviews with ratings, comments, and customer information |
| count | number | Number of reviews scraped |
Extract software and product reviews from TrustRadius. Analyze customer feedback, ratings, and reviewer profiles with LinkedIn integration and product comparison data.
Notes:
Extract detailed product reviews from TrustRadius URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | TrustRadius product review URLs to scrape | |
| authorLinkedinUrl | text | Filter reviews by author LinkedIn profile (optional) |
| Name | Type | Description |
|---|---|---|
| reviews | array | Detailed product reviews with ratings, comments, and reviewer information |
| count | number | Number of reviews scraped |
Discover all reviews from TrustRadius product pages
| Field | Type | Default | Description |
|---|---|---|---|
| productUrls | textarea | TrustRadius product review pages to discover reviews from | |
| pages | number | Number of review pages to scrape (leave empty for all) |
| Name | Type | Description |
|---|---|---|
| reviews | array | Reviews discovered from the product pages |
| count | number | Number of reviews discovered |
Extract live stream data from Twitch including viewer counts, streamer profiles, and engagement metrics. Discover streams by categories, games, or keyword search.
Notes:
Extract detailed stream information from Twitch streamer URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Twitch streamer URLs to scrape stream data from |
| Name | Type | Description |
|---|---|---|
| streams | array | Detailed stream information with viewer counts, tags, and metadata |
| count | number | Number of streams scraped |
Discover live streams from Twitch category/game pages
| Field | Type | Default | Description |
|---|---|---|---|
| categoryUrls | textarea | Twitch category/game URLs to discover streams from |
| Name | Type | Description |
|---|---|---|
| streams | array | Streams discovered from the category pages |
| count | number | Number of streams discovered |
Find Twitch streams using keyword search
| Field | Type | Default | Description |
|---|---|---|---|
| searchKeywords | text | Keywords to search for streams |
| Name | Type | Description |
|---|---|---|
| streams | array | Streams matching the keyword search |
| count | number | Number of streams discovered |
Extract startup profiles and company information from VentureRadar. Analyze industry classifications, technology stacks, and business model insights for emerging companies.
Notes:
Extract startup and company information from VentureRadar URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | VentureRadar company profile URLs to scrape |
| Name | Type | Description |
|---|---|---|
| companies | array | Detailed company information with profiles and industry classifications |
| count | number | Number of companies scraped |
Extract video data from Vimeo with Creative Commons license filtering. Search by keywords, discover from categories, and analyze video metadata and engagement metrics.
Notes:
Extract detailed video information from Vimeo URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Vimeo video URLs to scrape |
| Name | Type | Description |
|---|---|---|
| videos | array | Detailed video information with metadata and engagement metrics |
| count | number | Number of videos scraped |
Find Vimeo videos using keyword search with Creative Commons license filtering
| Field | Type | Default | Description |
|---|---|---|---|
| keyword | text | Keyword to search for videos | |
| license | select | Creative Commons license filter | |
| pages | number | Number of result pages to scrape |
| Name | Type | Description |
|---|---|---|
| videos | array | Videos matching keyword and license criteria |
| count | number | Number of videos discovered |
Discover videos from Vimeo category or collection URLs
| Field | Type | Default | Description |
|---|---|---|---|
| categoryUrls | textarea | Vimeo category or Creative Commons URLs to discover videos from | |
| keyword | text | Optional keyword to filter results within the category | |
| pages | number | Number of result pages to scrape |
| Name | Type | Description |
|---|---|---|
| videos | array | Videos discovered from the category URLs |
| count | number | Number of videos discovered |
Extract article content and metadata from Wikipedia. Search by keywords with pagination support and analyze contributor data, references, and revision history.
Notes:
Extract detailed article information from Wikipedia URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Wikipedia article URLs to scrape |
| Name | Type | Description |
|---|---|---|
| articles | array | Detailed article information with content, metadata, and contributor data |
| count | number | Number of articles scraped |
Find Wikipedia articles using keyword search with pagination
| Field | Type | Default | Description |
|---|---|---|---|
| keyword | text | Keyword to search for articles | |
| pagesLoad | number | Number of pages to load (each page contains up to 20 articles) |
| Name | Type | Description |
|---|---|---|
| articles | array | Articles matching the keyword search |
| count | number | Number of articles discovered |
Extract posts and profile data from X (Twitter). Analyze engagement metrics, discover posts by date ranges, and scrape profile information with follower analytics.
Notes:
Extract detailed post information from X (Twitter) URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | X (Twitter) post URLs to scrape |
| Name | Type | Description |
|---|---|---|
| posts | array | Detailed post information with engagement metrics and metadata |
| count | number | Number of posts scraped |
Discover posts from X (Twitter) profile URLs with date filtering
| Field | Type | Default | Description |
|---|---|---|---|
| profileUrls | textarea | X (Twitter) profile URLs to discover posts from | |
| startDate | text | Start date for post discovery (leave empty for all) | |
| endDate | text | End date for post discovery (leave empty for all) |
| Name | Type | Description |
|---|---|---|
| posts | array | Posts discovered from the profile within date range |
| count | number | Number of posts discovered |
Extract detailed profile information from X (Twitter) URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | X (Twitter) profile URLs to scrape | |
| maxNumberOfPosts | number | Maximum number of recent posts to include with profile |
| Name | Type | Description |
|---|---|---|
| profiles | array | Detailed profile information with recent posts and metrics |
| count | number | Number of profiles scraped |
Find X (Twitter) profiles using usernames
| Field | Type | Default | Description |
|---|---|---|---|
| usernames | textarea | X (Twitter) usernames to discover profiles for |
| Name | Type | Description |
|---|---|---|
| profiles | array | Profiles discovered from the usernames |
| count | number | Number of profiles discovered |
Extract professional profiles and network connections from Xing. Analyze career information, skills, and professional relationships.
Notes:
Extract professional profile information from Xing URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Xing profile URLs to scrape |
| Name | Type | Description |
|---|---|---|
| profiles | array | Professional profiles with career and connection information |
| count | number | Number of profiles scraped |
Extract stock prices, financial metrics, and market data from Yahoo Finance. Search by keywords and analyze financial trends.
Notes:
Extract financial information from Yahoo Finance URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Yahoo Finance URLs to scrape |
| Name | Type | Description |
|---|---|---|
| financialData | array | Stock prices, metrics, and company financial information |
| count | number | Number of financial records scraped |
Find financial data using keyword search
| Field | Type | Default | Description |
|---|---|---|---|
| keyword | text | Keyword to search for financial data |
| Name | Type | Description |
|---|---|---|
| financialData | array | Financial data matching keyword search |
| count | number | Number of results found |
Extract business profiles and customer reviews from Yelp. Search by categories and locations, analyze ratings, and gather competitive business intelligence.
Notes:
Extract detailed business information from Yelp URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Yelp business URLs to scrape |
| Name | Type | Description |
|---|---|---|
| businesses | array | Detailed business information with ratings, hours, and contact details |
| count | number | Number of businesses scraped |
Find Yelp businesses using category and location filters
| Field | Type | Default | Description |
|---|---|---|---|
| category | text | Category of businesses to search for | |
| location | text | Location to search within | |
| country | text | Country code for search |
| Name | Type | Description |
|---|---|---|
| businesses | array | Businesses matching the search criteria |
| count | number | Number of businesses discovered |
Extract customer reviews from Yelp business URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Yelp business URLs to scrape reviews from |
| Name | Type | Description |
|---|---|---|
| reviews | array | Detailed customer reviews with ratings and user information |
| count | number | Number of reviews scraped |
Find Yelp reviews using category and location filters
| Field | Type | Default | Description |
|---|---|---|---|
| category | text | Category of businesses to get reviews from | |
| location | text | Location to search within | |
| country | text | Country code for search |
| Name | Type | Description |
|---|---|---|
| reviews | array | Reviews from businesses matching the search criteria |
| count | number | Number of reviews discovered |
Extract comprehensive YouTube data including videos, channels, and comments. Advanced search with hashtags, keywords, filters, and channel discovery capabilities.
Notes:
Extract detailed video information from YouTube URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | YouTube video URLs to scrape | |
| country | text | Country code for geo-specific data |
| Name | Type | Description |
|---|---|---|
| videos | array | Detailed video information with metadata and engagement |
| count | number | Number of videos scraped |
Find YouTube videos using hashtag search
| Field | Type | Default | Description |
|---|---|---|---|
| hashtag | text | Hashtag to search videos by | |
| numOfPosts | number | Maximum number of posts to retrieve |
| Name | Type | Description |
|---|---|---|
| videos | array | Videos matching the hashtag |
| count | number | Number of videos found |
Find YouTube videos using keyword search
| Field | Type | Default | Description |
|---|---|---|---|
| keyword | text | Keyword to search videos by | |
| numOfPosts | number | Maximum number of posts to retrieve |
| Name | Type | Description |
|---|---|---|
| videos | array | Videos matching keyword |
| count | number | Number of videos found |
Find YouTube videos using advanced search filters
| Field | Type | Default | Description |
|---|---|---|---|
| keywordSearch | text | Keywords to search for videos | |
| uploadDate | select | Filter by upload date | |
| duration | select | Filter by video duration |
| Name | Type | Description |
|---|---|---|
| videos | array | Videos matching filters |
| count | number | Number of videos found |
Extract videos from specific YouTube channel URLs
| Field | Type | Default | Description |
|---|---|---|---|
| channelUrls | textarea | YouTube channel URLs to extract videos from | |
| numOfPosts | number | Maximum number of posts to retrieve from each channel |
| Name | Type | Description |
|---|---|---|
| videos | array | Videos from channels |
| count | number | Number of videos found |
Extract detailed channel information from YouTube URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | YouTube channel URLs to scrape |
| Name | Type | Description |
|---|---|---|
| profiles | array | Channel information and statistics |
| count | number | Number of profiles scraped |
Find YouTube channels using keyword search
| Field | Type | Default | Description |
|---|---|---|---|
| keyword | text | Keyword related to channels to find |
| Name | Type | Description |
|---|---|---|
| profiles | array | Channels matching keyword |
| count | number | Number of channels found |
Extract comments from YouTube video URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | YouTube video URLs to scrape comments from | |
| sortBy | select | How to sort the comments |
| Name | Type | Description |
|---|---|---|
| comments | array | Video comments and replies |
| count | number | Number of comments scraped |
Extract fashion product data from Zara including prices, availability, colors, and sizes. Analyze fashion trends and inventory.
Notes:
Extract product information from Zara URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Zara product URLs to scrape |
| Name | Type | Description |
|---|---|---|
| products | array | Fashion product details with pricing and availability |
| count | number | Number of products scraped |
Extract property listings and real estate data from Zillow. Search by location, property type, and analyze market trends.
Notes:
Extract property information from Zillow URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Zillow property URLs to scrape |
| Name | Type | Description |
|---|---|---|
| properties | array | Property listings with prices and agent information |
| count | number | Number of properties scraped |
Find properties using location and category filters
| Field | Type | Default | Description |
|---|---|---|---|
| location | text | Location to search (city, ZIP code, or exact address) | |
| listingCategory | select | Type of property listing | |
| homeType | select | Type of home to search for |
| Name | Type | Description |
|---|---|---|
| properties | array | Properties matching search filters |
| count | number | Number of properties found |
Extract company profiles and business intelligence from ZoomInfo. Search by industry, location, and discover contact information with competitive analysis.
Extract UK property listings from Zoopla with prices, agent details, and market analysis. Comprehensive UK real estate intelligence.
Notes:
Extract property information from Zoopla URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Zoopla property URLs to scrape |
| Name | Type | Description |
|---|---|---|
| properties | array | UK property listings with prices and agent details |
| count | number | Number of properties scraped |
Connect to ActiveCampaign for advanced email marketing automation, CRM management, and sales pipeline tracking. Manage contacts, lists, campaigns, automations, and deals all in one powerful platform.
Notes:
Retrieve contacts from your ActiveCampaign account
| Field | Type | Default | Description |
|---|---|---|---|
| text | Optional: Filter by specific email address | ||
| limit | number | 20 | Number of contacts to retrieve (max 100) |
| Name | Type | Description |
|---|---|---|
| contacts | array | Array of contact objects |
| total | number |
Create a new contact in ActiveCampaign
| Field | Type | Default | Description |
|---|---|---|---|
| text | |||
| firstName | text | ||
| lastName | text | ||
| phone | text | ||
| fieldValues | textarea | [] | Custom field values as JSON array (e.g., [{"field":"1","value":"test"}]) |
| Name | Type | Description |
|---|---|---|
| contact_id | string | |
| string | ||
| firstName | string | |
| lastName | string |
Update an existing contact
| Field | Type | Default | Description |
|---|---|---|---|
| contact_id | text | The ID of the contact to update | |
| text | |||
| firstName | text | ||
| lastName | text | ||
| phone | text | ||
| fieldValues | textarea | [] | Custom field values as JSON array |
| Name | Type | Description |
|---|---|---|
| contact_id | string | |
| string | ||
| firstName | string | |
| lastName | string |
Delete a contact from ActiveCampaign
| Field | Type | Default | Description |
|---|---|---|---|
| contact_id | text |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string |
Retrieve all lists/audiences from ActiveCampaign
| Name | Type | Description |
|---|---|---|
| lists | array | Array of list objects |
| total | number |
Create a new list/audience
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | ||
| stringid | text | Unique identifier for the list (no spaces, lowercase) | |
| sender_url | text | Your website URL | |
| sender_reminder | textarea | Reminder text about how they subscribed |
| Name | Type | Description |
|---|---|---|
| list_id | string | |
| name | string | |
| stringid | string |
Subscribe a contact to a specific list
| Field | Type | Default | Description |
|---|---|---|---|
| contact_id | text | ||
| list_id | text | ||
| status | select | 1 |
| Name | Type | Description |
|---|---|---|
| contactList_id | string | |
| contact_id | string | |
| list_id | string | |
| status | string |
Unsubscribe a contact from a specific list
| Field | Type | Default | Description |
|---|---|---|---|
| contactList_id | text | The ID of the contact-list relationship |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string |
Retrieve email campaigns from ActiveCampaign
| Field | Type | Default | Description |
|---|---|---|---|
| type | select |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of campaign objects |
| total | number |
Create a new email campaign
| Field | Type | Default | Description |
|---|---|---|---|
| type | select | single | |
| name | text | ||
| subject | text | ||
| fromname | text | ||
| fromemail | text | ||
| reply2 | text | ||
| htmlcontent | code_editor | ||
| textcontent | textarea |
| Name | Type | Description |
|---|---|---|
| campaign_id | string | |
| name | string | |
| subject | string | |
| status | string |
Send a campaign to a specific list
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | ||
| list_id | text | The list to send the campaign to | |
| schedule_time | text | ISO format (e.g., 2024-01-15T10:00:00) - leave empty to send immediately |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string | |
| campaignMessage_id | string |
Retrieve automations from ActiveCampaign
| Name | Type | Description |
|---|---|---|
| automations | array | Array of automation objects |
| total | number |
Add a contact to an automation sequence
| Field | Type | Default | Description |
|---|---|---|---|
| contact_id | text | ||
| automation_id | text |
| Name | Type | Description |
|---|---|---|
| contactAutomation_id | string | |
| contact_id | string | |
| automation_id | string |
Remove a contact from an automation sequence
| Field | Type | Default | Description |
|---|---|---|---|
| contactAutomation_id | text |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string |
Retrieve deals from ActiveCampaign CRM
| Field | Type | Default | Description |
|---|---|---|---|
| stage_id | text |
| Name | Type | Description |
|---|---|---|
| deals | array | Array of deal objects |
| total | number |
Create a new deal in ActiveCampaign CRM
| Field | Type | Default | Description |
|---|---|---|---|
| title | text | ||
| contact_id | text | ||
| value | number | Deal value in cents (e.g., 5000 for $50.00) | |
| currency | text | USD | 3-letter currency code (e.g., USD, EUR) |
| pipeline_id | text | ||
| stage_id | text | ||
| description | textarea |
| Name | Type | Description |
|---|---|---|
| deal_id | string | |
| title | string | |
| value | number | |
| status | string |
Update an existing deal
| Field | Type | Default | Description |
|---|---|---|---|
| deal_id | text | ||
| title | text | ||
| value | number | ||
| stage_id | text | ||
| status | select | ||
| description | textarea |
| Name | Type | Description |
|---|---|---|
| deal_id | string | |
| title | string | |
| value | number | |
| status | string |
Add a tag to a contact
| Field | Type | Default | Description |
|---|---|---|---|
| contact_id | text | ||
| tag_id | text |
| Name | Type | Description |
|---|---|---|
| contactTag_id | string | |
| contact_id | string | |
| tag_id | string |
Remove a tag from a contact
| Field | Type | Default | Description |
|---|---|---|---|
| contactTag_id | text |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string |
Retrieve all tags from ActiveCampaign
| Name | Type | Description |
|---|---|---|
| tags | array | Array of tag objects |
| total | number |
Connect to Klaviyo for e-commerce focused email and SMS marketing automation. Manage customer profiles, behavioral tracking, advanced segmentation, and revenue optimization with powerful automation flows.
Notes:
Retrieve customer profiles from Klaviyo
| Field | Type | Default | Description |
|---|---|---|---|
| text | Optional: Filter by specific email address | ||
| limit | number | 20 | Number of profiles to retrieve (max 100) |
| Name | Type | Description |
|---|---|---|
| profiles | array | Array of profile objects |
| total | number |
Create or update a customer profile in Klaviyo
| Field | Type | Default | Description |
|---|---|---|---|
| text | |||
| firstName | text | ||
| lastName | text | ||
| phoneNumber | text | Phone number in E.164 format (e.g., +1234567890) | |
| location | textarea | {} | Location data as JSON (e.g., {"city":"New York","country":"US"}) |
| properties | textarea | {} | Custom properties as JSON object |
| Name | Type | Description |
|---|---|---|
| profile_id | string | |
| string | ||
| firstName | string | |
| lastName | string |
Update an existing profile
| Field | Type | Default | Description |
|---|---|---|---|
| profile_id | text | ||
| text | |||
| firstName | text | ||
| lastName | text | ||
| phoneNumber | text | ||
| location | textarea | {} | |
| properties | textarea | {} |
| Name | Type | Description |
|---|---|---|
| profile_id | string | |
| string | ||
| firstName | string | |
| lastName | string |
Retrieve all lists/segments from Klaviyo
| Name | Type | Description |
|---|---|---|
| lists | array | Array of list objects |
| total | number |
Create a new list/segment
| Field | Type | Default | Description |
|---|---|---|---|
| name | text |
| Name | Type | Description |
|---|---|---|
| list_id | string | |
| name | string |
Subscribe a profile to a specific list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | ||
| profile_id | text |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string |
Unsubscribe a profile from a specific list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | ||
| profile_id | text |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string |
Get all profiles in a specific list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | ||
| limit | number | 20 | Number of profiles to retrieve (max 100) |
| Name | Type | Description |
|---|---|---|
| profiles | array | Array of profile objects in the list |
| total | number | |
| list_id | string |
Retrieve email campaigns from Klaviyo
| Field | Type | Default | Description |
|---|---|---|---|
| status | select |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of campaign objects |
| total | number |
Create a new email campaign
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | ||
| subject | text | ||
| fromEmail | text | ||
| fromName | text | ||
| htmlContent | code_editor | ||
| textContent | textarea |
| Name | Type | Description |
|---|---|---|
| campaign_id | string | |
| name | string | |
| status | string |
Send a campaign to a specific list
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | ||
| list_id | text | The list to send the campaign to | |
| send_time | text | ISO 8601 format (e.g., 2024-01-15T10:00:00Z) - leave empty to send immediately |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string | |
| campaign_id | string |
Get performance metrics for a sent campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text |
| Name | Type | Description |
|---|---|---|
| opens_total | number | |
| opens_unique | number | |
| open_rate | number | |
| clicks_total | number | |
| clicks_unique | number | |
| click_rate | number | |
| unsubscribes | number | |
| bounces | number |
Track a custom event for behavioral targeting
| Field | Type | Default | Description |
|---|---|---|---|
| profile_id | text | ||
| event_name | text | Name of the event (e.g., "Viewed Product", "Made Purchase") | |
| properties | textarea | {} | Event properties as JSON object (e.g., {"product_id":"123","value":29.99}) |
| value | number | Monetary value of the event (for revenue tracking) |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string | |
| event_id | string |
Retrieve events for a profile
| Field | Type | Default | Description |
|---|---|---|---|
| profile_id | text | ||
| event_name | text |
| Name | Type | Description |
|---|---|---|
| events | array | Array of event objects |
| total | number |
Retrieve email flows/automations from Klaviyo
| Name | Type | Description |
|---|---|---|
| flows | array | Array of flow objects |
| total | number |
Trigger a flow for a specific profile
| Field | Type | Default | Description |
|---|---|---|---|
| flow_id | text | ||
| profile_id | text |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string |
Retrieve available metrics for tracking
| Name | Type | Description |
|---|---|---|
| metrics | array | Array of available metric objects |
| total | number |
Retrieve email templates
| Name | Type | Description |
|---|---|---|
| templates | array | Array of template objects |
| total | number |
Connect to Mailchimp for email marketing automation, list management, and campaign analytics. Send targeted campaigns, manage subscribers, and track performance.
Notes:
Retrieve all mailing lists from your Mailchimp account
| Name | Type | Description |
|---|---|---|
| lists | array | Array of list objects with id, name, and member count |
| total_items | number |
Create a new mailing list/audience
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | Name for your mailing list | |
| company | text | Your company or organization name | |
| address1 | text | Street address | |
| city | text | ||
| state | text | ||
| zip | text | ||
| country | text | US | 2-letter country code (e.g., US, GB) |
| from_name | text | Default sender name for campaigns | |
| from_email | text | Default sender email for campaigns | |
| permission_reminder | textarea | You are receiving this email because you signed up on our website. | Remind people how they signed up to your list |
| Name | Type | Description |
|---|---|---|
| list_id | string | |
| name | string | |
| web_id | number |
Add a new subscriber to a mailing list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | The ID of the list to add the subscriber to | |
| text | |||
| status | select | subscribed | |
| merge_fields | textarea | {} | Additional fields as JSON (e.g., {"FNAME": "John", "LNAME": "Doe"}) |
| tags | text | Comma-separated list of tags |
| Name | Type | Description |
|---|---|---|
| id | string | |
| email_address | string | |
| status | string | |
| list_id | string |
Update an existing subscriber's information
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | ||
| text | The subscriber's current email address | ||
| merge_fields | textarea | {} | Fields to update as JSON (e.g., {"FNAME": "Jane", "LNAME": "Smith"}) |
| tags | text | Comma-separated list of tags to add | |
| status | select |
| Name | Type | Description |
|---|---|---|
| id | string | |
| email_address | string | |
| status | string |
Unsubscribe or delete a subscriber from a list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | ||
| text | |||
| action | select | unsubscribe |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string |
Retrieve members of a specific mailing list
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | ||
| status | select | ||
| count | number | 100 | Maximum number of members to retrieve (max 1000) |
| Name | Type | Description |
|---|---|---|
| members | array | Array of member objects |
| total_items | number | |
| list_id | string |
Create a new email campaign
| Field | Type | Default | Description |
|---|---|---|---|
| list_id | text | The list/audience to send to | |
| subject_line | text | ||
| preview_text | text | The preview text for the campaign | |
| from_name | text | ||
| reply_to | text | ||
| html_content | code_editor | The HTML content of your email | |
| plain_text_content | textarea | Plain text version (auto-generated if not provided) |
| Name | Type | Description |
|---|---|---|
| campaign_id | string | |
| web_id | number | |
| status | string | |
| emails_sent | number |
Send a campaign immediately
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | The ID of the campaign to send |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| message | string |
Schedule a campaign to be sent at a specific time
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | ||
| schedule_time | text | ISO 8601 format (e.g., 2024-01-15T10:00:00+00:00) |
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| schedule_time | string |
Get performance report for a sent campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text |
| Name | Type | Description |
|---|---|---|
| emails_sent | number | |
| opens_total | number | |
| unique_opens | number | |
| open_rate | number | |
| clicks_total | number | |
| unique_clicks | number | |
| click_rate | number | |
| unsubscribed | number | |
| bounce_rate | number |
Retrieve available email templates
| Field | Type | Default | Description |
|---|---|---|---|
| type | select |
| Name | Type | Description |
|---|---|---|
| templates | array | Array of template objects |
| total_items | number |
A version of flux-dev, a text to image model, that supports fast fine-tuned lora inference.
Notes:
Generate images using Flux Dev with custom LoRA styles
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Describe the image you want to generate | |
| lora_weights | text | LoRA model to use (e.g., "fofr/flux-80s-cyberpunk"). Leave empty for base model. | |
| aspect_ratio | select | 1:1 | The aspect ratio of the generated image |
| num_outputs | number | 1 | Number of images to generate |
| guidance | number | 3 | How closely to follow the prompt (0-10) |
| lora_scale | number | 1 | Strength of the LoRA style (-1 to 2) |
| prompt_strength | number | 0.8 | How much the prompt influences the output (0-1) |
| num_inference_steps | number | 28 | Number of denoising steps (more = higher quality) |
| megapixels | select | 1 | Resolution in megapixels |
| output_format | select | webp | The file format for the generated image |
| output_quality | number | 80 | JPEG/WebP compression quality (1-100) |
| go_fast | checkbox | 1 | Generate faster with slightly lower quality |
| Name | Type | Description |
|---|---|---|
| images | array | Array of generated images with URLs and metadata |
| image_data | binary | Binary data of the first generated image |
| image_url | string | Public URL of the first generated image |
A premium text-based image editing model that delivers maximum performance and improved typography generation for transforming images through natural language prompts
Notes:
Transform images with maximum quality using Flux Kontext Max
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Describe how you want to transform the image (e.g., "Make the letters 3D, floating in space on a city street") | |
| input_image | text | URL of the image to edit. You can use [[nodes.x.image_url]] to reference images from other nodes | |
| aspect_ratio | select | match_input_image | The aspect ratio of the output image |
| output_format | select | jpg | The file format for the edited image |
| safety_tolerance | number | 2 | Safety filter level: 1 (strictest) to 5 (most permissive). Default is 2. |
| Name | Type | Description |
|---|---|---|
| image_data | binary | The edited image file |
| image_url | string | Public URL to access the edited image |
| metadata | object | Metadata about the edited image |
A state-of-the-art text-based image editing model that delivers high-quality outputs with excellent prompt following and consistent results for transforming images through natural language.
Notes:
Transform images using natural language with Flux Kontext Pro
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Describe how you want to transform the image (e.g., "Make this a 90s cartoon") | |
| input_image | text | URL of the image to edit. You can use [[nodes.x.image_url]] to reference images from other nodes | |
| aspect_ratio | select | match_input_image | The aspect ratio of the output image |
| output_format | select | jpg | The file format for the edited image |
| safety_tolerance | number | 2 | Safety filter level: 1 (strictest) to 5 (most permissive). Default is 2. |
| Name | Type | Description |
|---|---|---|
| image_data | binary | The edited image file |
| image_url | string | Public URL to access the edited image |
| metadata | object | Metadata about the edited image |
A faster and cheaper Imagen 3 model, for when price or speed are more important than final image quality
Notes:
Generate images quickly using Google Imagen 3 Fast - reliable quality at speed
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Describe the image you want to generate. Imagen 3 Fast excels at dynamic scenes and artistic effects. | |
| aspect_ratio | select | 16:9 | The aspect ratio of the generated image |
| output_format | select | jpg | The file format for the generated image |
| safety_filter_level | select | block_medium_and_above | Safety filter level for content moderation |
| Name | Type | Description |
|---|---|---|
| image_data | binary | The generated image file from Imagen 3 Fast |
| image_url | string | Public URL to access the image |
| metadata | object | Metadata about the generated image |
Generate high-quality images using Google's state-of-the-art Imagen 4 AI model. Create stunning visuals from text descriptions with advanced control over aspect ratios and safety filters.
Notes:
Generate images using Google Imagen 4
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Describe the image you want to generate | |
| aspect_ratio | select | 1:1 | The aspect ratio of the generated image |
| output_format | select | jpg | The file format for the generated image |
| safety_filter_level | select | block_medium_and_above | Safety filter level for content moderation |
| Name | Type | Description |
|---|---|---|
| image_data | binary | The generated image file |
| image_url | string | Public URL to access the image |
| metadata | object | Metadata about the generated image |
Notes:
Generate high-quality images quickly using Google Imagen 4 Fast
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Describe the image you want to generate. Fast variant excels at dynamic, action-oriented scenes. | |
| aspect_ratio | select | 4:3 | The aspect ratio of the generated image |
| output_format | select | jpg | The file format for the generated image |
| safety_filter_level | select | block_only_high | Safety filter level for content moderation |
| Name | Type | Description |
|---|---|---|
| image_data | binary | The quickly generated high-quality image file |
| image_url | string | Public URL to access the image |
| metadata | object | Metadata about the generated image |
The highest quality variant of Google Imagen 4. Optimized for photorealistic and cinematic image generation with ultra-high quality processing. Excels at complex scenes with detailed descriptions.
Notes:
Generate ultra-high quality images using Google Imagen 4 Ultra
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Detailed description of the image. Ultra works best with cinematic, photorealistic prompts with specific details about lighting, composition, and style. | |
| aspect_ratio | select | 16:9 | The aspect ratio of the generated image |
| output_format | select | jpg | The file format for the generated image |
| safety_filter_level | select | block_only_high | Safety filter level for content moderation |
| Name | Type | Description |
|---|---|---|
| image_data | binary | The ultra-high quality generated image file |
| image_url | string | Public URL to access the image |
| metadata | object | Metadata about the generated image |
A fast image model with state of the art inpainting, prompt comprehension and text rendering.
Notes:
Generate images with embedded text using Ideogram V2 Turbo
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Describe the image and specify any text you want included (e.g., "A gold running shoe with the text 'Run AI with an API' written on it") | |
| aspect_ratio | select | 1:1 | The aspect ratio of the generated image |
| style_type | select | None | The artistic style for the generated image |
| resolution | select | None | Output resolution quality |
| magic_prompt_option | select | Auto | Automatically enhance prompts for better results |
| Name | Type | Description |
|---|---|---|
| image_data | binary | The generated image file with embedded text |
| image_url | string | Public URL to access the image |
| metadata | object | Metadata about the generated image |
High-quality image generation model with built-in prompt optimization. Automatically enhances your prompts for better results and supports multiple aspect ratios.
Notes:
Generate high-quality images using MiniMax Image-01
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Describe the image you want to generate (e.g., "A close-up portrait of a leopard with distinctive spotted pattern") | |
| aspect_ratio | select | 1:1 | The aspect ratio of the generated image |
| number_of_images | number | 1 | Number of images to generate (1-4) |
| prompt_optimizer | checkbox | 1 | Automatically enhance your prompt for better results |
| Name | Type | Description |
|---|---|---|
| images | array | Array of generated images with URLs and metadata |
| image_data | binary | Binary data of the first generated image |
| image_url | string | Public URL of the first generated image |
| optimized_prompt | string | The optimized version of your prompt (if optimizer was enabled) |
Advanced image generation model specialized in creating high-quality images with specific artistic styles. Choose from realistic photos, digital illustrations, vector art, and many specialized substyles.
Notes:
Generate high-quality images with specific artistic styles using Recraft AI V3
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Describe the image you want to generate (e.g., "a wildlife photography photo of a red panda using a laptop") | |
| style | select | any | The artistic style for the generated image |
| size_mode | select | aspect_ratio | Choose how to specify image dimensions |
| aspect_ratio | select | 1:1 | The aspect ratio when using aspect ratio mode |
| size | select | 1024x1024 | Exact pixel dimensions when using custom size mode |
| Name | Type | Description |
|---|---|---|
| image_data | binary | The generated image file |
| image_url | string | Public URL to access the generated image |
| metadata | object | Metadata about the generated image |
SDXL-Lightning by ByteDance: a fast text-to-image model that makes high-quality images in 4 steps
Notes:
Generate high-quality images in just 4 steps using SDXL Lightning
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Describe the image you want to generate (e.g., "self-portrait of a woman, lightning in the background") | |
| negative_prompt | textarea | worst quality, low quality | Describe what you want to avoid in the image |
| width | select | 1024 | Width of the generated image |
| height | select | 1024 | Height of the generated image |
| num_outputs | number | 1 | Number of images to generate (1-4) |
| scheduler | select | K_EULER | Sampling scheduler algorithm |
| num_inference_steps | number | 4 | Number of denoising steps (optimized for 4 steps) |
| guidance_scale | number | 0 | How closely to follow the prompt (0 = disabled for Lightning) |
| seed | number | Random seed for reproducible results. Leave empty for random. |
| Name | Type | Description |
|---|---|---|
| images | array | Array of generated images with URLs and metadata |
| image_data | binary | Binary data of the first generated image |
| image_url | string | Public URL of the first generated image |
Professional SEO data API for keyword research, search volume, CPC data, and competition analysis
Notes:
Get search volume, CPC, and competition data for keywords
| Field | Type | Default | Description |
|---|---|---|---|
| keywords | textarea | Enter keywords (one per line or JSON array) | |
| location_code | select | 2840 | Target location for search data |
| language_code | select | en | Language for search results |
| Name | Type | Description |
|---|---|---|
| data | object | |
| success | boolean |
Generate keyword suggestions from a seed keyword
| Field | Type | Default | Description |
|---|---|---|---|
| seed_keyword | text | Base keyword to generate suggestions from | |
| limit | number | 100 | Maximum number of keyword suggestions to return |
| location_code | select | 2840 | |
| language_code | select | en |
| Name | Type | Description |
|---|---|---|
| data | object | |
| success | boolean |
Get all keywords a domain ranks for with ranking positions
| Field | Type | Default | Description |
|---|---|---|---|
| target | text | Domain to analyze (without https://) | |
| limit | number | 100 | Maximum keywords to return |
| location_code | select | 2840 | |
| language_code | select | en |
| Name | Type | Description |
|---|---|---|
| data | object | |
| success | boolean |
Find domains competing with target domain in organic search
| Field | Type | Default | Description |
|---|---|---|---|
| target | text | Domain to analyze | |
| limit | number | 100 | |
| location_code | select | 2840 | |
| language_code | select | en |
| Name | Type | Description |
|---|---|---|
| data | object | |
| success | boolean |
Find shared keyword rankings between multiple domains
| Field | Type | Default | Description |
|---|---|---|---|
| targets | textarea | Enter domains (one per line, 2-10 domains) | |
| limit | number | 100 | |
| location_code | select | 2840 | |
| language_code | select | en |
| Name | Type | Description |
|---|---|---|
| data | object | |
| success | boolean |
Find keyword ideas relevant to a specific domain
| Field | Type | Default | Description |
|---|---|---|---|
| target | text | ||
| limit | number | 100 | |
| location_code | select | 2840 | |
| language_code | select | en |
| Name | Type | Description |
|---|---|---|
| data | object | |
| success | boolean |
Extract "searches related to" keywords from Google SERP
| Field | Type | Default | Description |
|---|---|---|---|
| keyword | text | ||
| location_code | select | 2840 | |
| language_code | select | en |
| Name | Type | Description |
|---|---|---|
| data | object | |
| success | boolean |
Get organic and paid search results for a keyword
| Field | Type | Default | Description |
|---|---|---|---|
| keyword | text | ||
| location_code | select | 2840 | |
| language_code | select | en | |
| depth | number | 10 | Number of results to retrieve |
| Name | Type | Description |
|---|---|---|
| data | object | |
| success | boolean |
Get complete backlink profile overview for a domain
| Field | Type | Default | Description |
|---|---|---|---|
| target | text |
| Name | Type | Description |
|---|---|---|
| data | object | |
| success | boolean |
Get detailed list of backlinks pointing to a domain or URL
| Field | Type | Default | Description |
|---|---|---|---|
| target | text | ||
| limit | number | 100 |
| Name | Type | Description |
|---|---|---|
| data | object | |
| success | boolean |
Get domains linking to the target with backlink metrics
| Field | Type | Default | Description |
|---|---|---|---|
| target | text | ||
| limit | number | 100 |
| Name | Type | Description |
|---|---|---|
| data | object | |
| success | boolean |
Get anchor text analysis for target backlinks
| Field | Type | Default | Description |
|---|---|---|---|
| target | text |
| Name | Type | Description |
|---|---|---|
| data | object | |
| success | boolean |
Extract product data, reviews, seller information, and search results from Amazon with 8 different scraping operations
Notes:
Extract detailed product information from Amazon product URLs
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Enter Amazon product URLs to scrape data from | |
| zipcode | text | Zipcode for location-specific pricing and availability | |
| language | text | Language code (e.g., en_US, es_ES) for localized results |
| Name | Type | Description |
|---|---|---|
| products | array | Array of Amazon product information |
| count | number | Number of products scraped |
Find products from Amazon bestseller category pages
| Field | Type | Default | Description |
|---|---|---|---|
| category_urls | textarea | Enter Amazon bestseller category URLs |
| Name | Type | Description |
|---|---|---|
| products | array | Array of products from bestseller categories |
| count | number | Number of products found |
Find products from Amazon category pages with sorting options
| Field | Type | Default | Description |
|---|---|---|---|
| category_urls | textarea | Enter Amazon category URLs | |
| sort_by | select | How to sort the category results | |
| zipcode | text | Zipcode for location-specific results |
| Name | Type | Description |
|---|---|---|
| products | array | Array of products from categories |
| count | number | Number of products found |
Search for Amazon products using keywords
| Field | Type | Default | Description |
|---|---|---|---|
| keywords | textarea | Enter search keywords to find products |
| Name | Type | Description |
|---|---|---|
| products | array | Array of products matching keywords |
| count | number | Number of products found |
Find Amazon products by UPC codes
| Field | Type | Default | Description |
|---|---|---|---|
| upc_codes | textarea | Enter UPC codes to find matching products |
| Name | Type | Description |
|---|---|---|
| products | array | Array of products matching UPC codes |
| count | number | Number of products found |
Extract customer reviews from Amazon product pages
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Enter Amazon product URLs to scrape reviews from |
| Name | Type | Description |
|---|---|---|
| reviews | array | Array of customer reviews data |
| count | number | Number of reviews scraped |
Extract seller details from Amazon seller pages
| Field | Type | Default | Description |
|---|---|---|---|
| urls | textarea | Enter Amazon seller URLs to scrape information from |
| Name | Type | Description |
|---|---|---|
| sellers | array | Array of seller details and data |
| count | number | Number of sellers scraped |
Search Amazon for products with pagination support
| Field | Type | Default | Description |
|---|---|---|---|
| keywords | textarea | Enter keywords to search for products | |
| domain | select | Amazon domain to search on | |
| pages_to_search | number | 1 | Number of search result pages to scrape (1-20) |
| Name | Type | Description |
|---|---|---|
| products | array | Array of products from search results |
| count | number | Number of products found |
Scrape up to 50,000 leads from Apollo.io People Search URLs with contact information and company data
Notes:
Execute Apollo scraper and return dataset items directly
| Field | Type | Default | Description |
|---|---|---|---|
| url | text | Enter the Apollo.io People Search URL to scrape leads from | |
| totalRecords | number | 200 | Maximum number of records to scrape |
| cleanOutput | checkbox | 1 | Remove unnecessary fields and return only main important fields |
| Name | Type | Description |
|---|---|---|
| leads | array | Array of leads with contact information and company data |
| count | number | Number of leads scraped |
Start an async Apollo scraping run and return run information
| Field | Type | Default | Description |
|---|---|---|---|
| url | text | Enter the Apollo.io People Search URL to scrape leads from | |
| totalRecords | number | 1000 | Maximum number of records to scrape (leave empty for all up to 1k) |
| fileName | text | Apollo Prospects | Custom name for this run to help identify it in history |
| cleanOutput | checkbox | 1 | Remove unnecessary fields and return only main important fields |
| Name | Type | Description |
|---|---|---|
| runId | string | Unique identifier for the scraping run |
| status | string | Current status of the run |
| datasetId | string | ID of the dataset containing results |
Execute Apollo scraper and return output from key-value store
| Field | Type | Default | Description |
|---|---|---|---|
| url | text | Enter the Apollo.io People Search URL to scrape leads from | |
| totalRecords | number | 1000 | Maximum number of records to scrape (leave empty for all up to 1k) |
| fileName | text | Apollo Prospects | Custom name for this run to help identify it in history |
| cleanOutput | checkbox | 1 | Remove unnecessary fields and return only main important fields |
| Name | Type | Description |
|---|---|---|
| output | object | Raw output from the Apollo scraper key-value store |
Extract TikTok videos, profiles, hashtags, and engagement data from the platform
Notes:
Extract videos from TikTok hashtags
| Field | Type | Default | Description |
|---|---|---|---|
| hashtags | textarea | TikTok hashtags to scrape (one per line). Example: funny, viral, trending | |
| resultsPerPage | number | 10 | Number of videos to scrape per hashtag |
| Name | Type | Description |
|---|---|---|
| videos | array | Array of videos with metadata and engagement data |
Extract videos from TikTok user profiles
| Field | Type | Default | Description |
|---|---|---|---|
| profiles | textarea | TikTok usernames to scrape (one per line). Example: username1, username2 | |
| resultsPerPage | number | 10 | Number of videos to scrape per profile |
| profileSorting | select | latest | How to sort videos from profiles |
| Name | Type | Description |
|---|---|---|
| videos | array | Array of videos with metadata and engagement data |
Extract data from specific TikTok video URLs
| Field | Type | Default | Description |
|---|---|---|---|
| postURLs | textarea | TikTok video URLs to scrape (one per line) |
| Name | Type | Description |
|---|---|---|
| videos | array | Array of videos with metadata and engagement data |
Search TikTok for videos, users, or content
| Field | Type | Default | Description |
|---|---|---|---|
| searchQueries | textarea | Search queries (one per line). Example: "funny cats", "cooking tips" | |
| searchSection | select | What type of content to search for | |
| resultsPerPage | number | 10 | Number of results to get per search query |
| Name | Type | Description |
|---|---|---|
| results | array | Array of search results (videos, users, or mixed) |
Connect to Facebook Ads (Meta Business API) for comprehensive social media advertising automation. Create and manage campaigns, ad sets, ads, custom audiences, and track detailed performance across Facebook and Instagram platforms.
Notes:
Retrieve campaigns from Facebook Ad Account
| Field | Type | Default | Description |
|---|---|---|---|
| status_filter | select |
| Name | Type | Description |
|---|---|---|
| campaigns | array | Array of campaign objects |
| total | number |
Create a new Facebook advertising campaign
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | ||
| objective | select | TRAFFIC | |
| status | select | PAUSED | |
| buying_type | select | AUCTION | |
| special_ad_categories | select |
| Name | Type | Description |
|---|---|---|
| campaign_id | string | |
| campaign_name | string | |
| status | string |
Update an existing campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | ||
| name | text | ||
| status | select |
| Name | Type | Description |
|---|---|---|
| campaign_id | string | |
| success | boolean |
Retrieve ad sets from a campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | Leave empty to get all ad sets |
| Name | Type | Description |
|---|---|---|
| ad_sets | array | Array of ad set objects |
| total | number |
Create a new ad set within a campaign
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | ||
| name | text | ||
| optimization_goal | select | LINK_CLICKS | |
| billing_event | select | LINK_CLICKS | |
| bid_amount | number | Bid amount in cents (e.g., 100 = $1.00). Leave empty for automatic bidding | |
| daily_budget | number | Daily budget in cents (e.g., 1000 = $10.00) | |
| targeting | textarea | {"geo_locations":{"countries":["US"]}} | Audience targeting as JSON object (e.g., {"geo_locations":{"countries":["US"]}}) |
| Name | Type | Description |
|---|---|---|
| ad_set_id | string | |
| ad_set_name | string | |
| status | string |
Update an existing ad set
| Field | Type | Default | Description |
|---|---|---|---|
| ad_set_id | text | ||
| name | text | ||
| status | select | ||
| daily_budget | number | ||
| bid_amount | number |
| Name | Type | Description |
|---|---|---|
| ad_set_id | string | |
| success | boolean |
Retrieve ads from an ad set or campaign
| Field | Type | Default | Description |
|---|---|---|---|
| ad_set_id | text | Leave empty to get all ads |
| Name | Type | Description |
|---|---|---|
| ads | array | Array of ad objects |
| total | number |
Create a new Facebook ad
| Field | Type | Default | Description |
|---|---|---|---|
| ad_set_id | text | ||
| name | text | ||
| creative_type | select | single_image | |
| title | text | ||
| body | textarea | ||
| link_url | text | ||
| call_to_action_type | select | LEARN_MORE | |
| image_url | text | URL to the image file (for single image ads) |
| Name | Type | Description |
|---|---|---|
| ad_id | string | |
| ad_name | string | |
| status | string |
Update an existing ad
| Field | Type | Default | Description |
|---|---|---|---|
| ad_id | text | ||
| name | text | ||
| status | select |
| Name | Type | Description |
|---|---|---|
| ad_id | string | |
| success | boolean |
Retrieve custom audiences from ad account
| Name | Type | Description |
|---|---|---|
| audiences | array | Array of custom audience objects |
| total | number |
Create a new custom audience
| Field | Type | Default | Description |
|---|---|---|---|
| name | text | ||
| subtype | select | CUSTOM | |
| description | textarea |
| Name | Type | Description |
|---|---|---|
| audience_id | string | |
| audience_name | string |
Add users to a custom audience
| Field | Type | Default | Description |
|---|---|---|---|
| audience_id | text | ||
| users | textarea | Array of user data: [{"email":"user@example.com"},{"phone":"+1234567890"}] | |
| schema | select | EMAIL_SHA256 |
| Name | Type | Description |
|---|---|---|
| audience_id | string | |
| users_added | number | |
| success | boolean |
Get performance metrics for campaigns
| Field | Type | Default | Description |
|---|---|---|---|
| campaign_id | text | Leave empty for all campaigns | |
| date_preset | select | last_7d |
| Name | Type | Description |
|---|---|---|
| impressions | number | |
| clicks | number | |
| ctr | number | |
| spend | number | |
| cpc | number | |
| cpm | number | |
| reach | number | |
| frequency | number |
Get performance metrics for ad sets
| Field | Type | Default | Description |
|---|---|---|---|
| ad_set_id | text | Leave empty for all ad sets | |
| date_preset | select | last_7d |
| Name | Type | Description |
|---|---|---|
| ad_sets_insights | array | Array of ad set performance data |
| total_ad_sets | number |
Get performance metrics for individual ads
| Field | Type | Default | Description |
|---|---|---|---|
| ad_id | text | Leave empty for all ads | |
| date_preset | select | last_7d |
| Name | Type | Description |
|---|---|---|
| ads_insights | array | Array of ad performance data |
| total_ads | number |
Get detailed performance data with custom date ranges, breakdowns, and all metrics including conversions
| Field | Type | Default | Description |
|---|---|---|---|
| ad_account_id | text | Override default ad account (e.g., act_123456). Leave empty to use configured account. | |
| level | select | campaign | |
| date_preset | select | Use preset OR custom date range below (not both) | |
| time_range_since | text | Custom start date for backfill (e.g., 2024-01-01) | |
| time_range_until | text | Custom end date for backfill (e.g., 2024-03-31) | |
| time_increment | select | 1 | Group data by day, week, or month |
| breakdowns | select | Split data by dimension | |
| limit | number | 1000 | Maximum number of results (default 1000) |
| Name | Type | Description |
|---|---|---|
| insights | array | Array of insight objects with all metrics |
| total | number |
Retrieve Facebook pages you manage
| Name | Type | Description |
|---|---|---|
| pages | array | Array of page objects |
| total | number |
Create a post on a Facebook page
| Field | Type | Default | Description |
|---|---|---|---|
| page_id | text | ||
| message | textarea | ||
| link | text | ||
| published | select | true |
| Name | Type | Description |
|---|---|---|
| post_id | string | |
| success | boolean |
Google's latest state-of-the-art video generation model. Produces extremely high-quality, realistic video content with automatic prompt enhancement for complex scenes and detailed environments.
Notes:
Generate ultra-high quality videos using Google Veo 3
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Detailed description of the video you want to generate. Be specific about actions, setting, characters, and visual style. | |
| enhance_prompt | checkbox | 1 | Automatically enhance your prompt for better video generation results |
| Name | Type | Description |
|---|---|---|
| video_data | binary | The ultra-high quality generated video file |
| video_url | string | Public URL to access the video |
| metadata | object | Metadata about the generated video |
Professional-grade video generation with enhanced quality and control options. Supports both text-to-video and image-to-video with fine CFG scale control and multiple aspect ratios.
Notes:
Generate professional quality 5-second videos using Kling V1.6 Pro
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Describe the video you want to generate (e.g., "Reflections in crystal mirrors, rainbow light, geometric world") | |
| aspect_ratio | select | 16:9 | Video aspect ratio for different platforms |
| cfg_scale | number | 0.5 | Controls prompt adherence (0.1-1.0). Higher values follow prompt more closely. |
| start_image | text | URL of an image to use as the starting frame for image-to-video generation | |
| negative_prompt | textarea | Describe what you want to avoid in the video |
| Name | Type | Description |
|---|---|---|
| video_data | binary | The professional quality generated video file |
| video_url | string | Public URL to access the video |
| metadata | object | Metadata about the generated video |
Reliable video generation at cost-effective pricing. Supports both text-to-video and image-to-video generation with good quality and faster processing than Pro version.
Notes:
Generate quality 5-second videos using Kling V1.6 Standard
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Describe the video you want to generate (e.g., "a portrait photo of a woman underwater with flowing hair") | |
| aspect_ratio | select | 16:9 | Video aspect ratio for different platforms |
| cfg_scale | number | 0.5 | Controls prompt adherence (0.1-1.0). Higher values follow prompt more closely. |
| start_image | text | URL of an image to use as the starting frame for image-to-video generation | |
| negative_prompt | textarea | Describe what you want to avoid in the video |
| Name | Type | Description |
|---|---|---|
| video_data | binary | The generated video file |
| video_url | string | Public URL to access the video |
| metadata | object | Metadata about the generated video |
State-of-the-art video generation model supporting both text-to-video and image-to-video generation. Offers professional and standard quality modes with advanced motion capabilities.
Notes:
Generate high-quality 5-second videos using Kling V2.1
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Describe the video you want to generate (e.g., "a woman takes her hands out her pockets and gestures, she is excited, behind her it is raining") | |
| mode | select | standard | Choose quality level - professional mode takes longer but produces higher quality |
| start_image | text | URL of an image to use as the starting frame for image-to-video generation | |
| negative_prompt | textarea | Describe what you want to avoid in the video |
| Name | Type | Description |
|---|---|---|
| video_data | binary | The generated video file |
| video_url | string | Public URL to access the video |
| metadata | object | Metadata about the generated video |
Fast, high-quality 720p video generation optimized for cinematic and anime-style content. Flash technology enables rapid processing with seamless loop options for social media.
Notes:
Generate fast, high-quality 720p videos using Luma Ray Flash 2
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Describe the video you want to generate (e.g., "A cinematic anime character intimate closeup, sitting at a cafe on a busy city street") | |
| aspect_ratio | select | 16:9 | Video aspect ratio for different platforms |
| loop | checkbox | Generate a seamless looping video |
| Name | Type | Description |
|---|---|---|
| video_data | binary | The generated 720p video file |
| video_url | string | Public URL to access the video |
| metadata | object | Metadata about the generated video |
High-quality video generation with built-in prompt optimizer. Excels at realistic human motion and urban environments with smooth, coherent video sequences.
Notes:
Generate high-quality videos with prompt optimization using MiniMax Video-01
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Describe the video you want to generate (e.g., "a woman walking through a busy Tokyo street at night, wearing dark sunglasses") | |
| prompt_optimizer | checkbox | 1 | Automatically enhance your prompt for better video generation results |
| Name | Type | Description |
|---|---|---|
| video_data | binary | The generated video file |
| video_url | string | Public URL to access the video |
| metadata | object | Metadata about the generated video |
Comprehensive video generation with extensive style and quality controls. Supports multiple artistic styles, visual effects, motion modes, and aspect ratios from 720p to 1080p quality.
Notes:
Generate videos with comprehensive style and quality controls using Pixverse V4.5
| Field | Type | Default | Description |
|---|---|---|---|
| prompt | textarea | Describe the video you want to generate (e.g., "a snow leopard walking carefully in a snowy landscape at twilight") | |
| quality | select | 1080p | Output video resolution |
| aspect_ratio | select | 16:9 | Video aspect ratio for different platforms |
| style | select | None | Artistic style to apply to the video |
| effect | select | None | Camera movement or time effect |
| motion_mode | select | normal | Amount of movement and action in the video |
| negative_prompt | textarea | Describe what you want to avoid in the video |
| Name | Type | Description |
|---|---|---|
| video_data | binary | The generated styled video file |
| video_url | string | Public URL to access the video |
| metadata | object | Metadata about the generated video |
Text-to-speech and voice cloning API with emotional control. Generate natural-sounding speech in multiple languages with customizable emotions.
Requires a valid API token. Include the token in the Authorization header as: Bearer {your_token}
Authorization: Bearer {your_api_token}
Base URL:
https://taskagi.net/api/hypervoice/v5
/tts
Generate text-to-speech audio using a voice from the library or a cloned voice.
| Name | Type | Required | Description |
|---|---|---|---|
text
|
string | Yes |
The text to convert to speech. Maximum 5000 characters.
Max: 5000 |
voice
|
string | Yes | Voice ID from the voice library or a cloned voice ID. |
speed
|
number | No |
Speaking rate multiplier. 0.5 = half speed, 2.0 = double speed.
Min: 0.5 Max: 2 Default: 1 |
format
|
string
wav | mp3 | webm |
No |
Output audio format.
Default: wav |
language
|
string | No | ISO language code (e.g., "en", "fr", "de", "ja"). Auto-detected if not specified. |
emotion
|
object | No | Emotion values object with keys: happy, sad, angry, fearful, disgusted, surprised. Values from 0 to 1. |
success
boolean - Whether the request succeeded
audio_url
string - URL to download the generated audio file
message
string - Error message (only on failure)
Request
{
"text": "Hello, welcome to TaskAGI!",
"voice": "emma",
"speed": 1.0,
"format": "mp3",
"emotion": {
"happy": 0.7
}
}
Response
{
"success": true,
"audio_url": "https://taskagi.net/storage/hypervoice/abc123.mp3"
}
/clone
Generate speech using an ad-hoc voice sample. Upload a reference audio file to clone the voice on-the-fly.
| Name | Type | Required | Description |
|---|---|---|---|
text
|
string | Yes |
The text to convert to speech.
Max: 5000 |
speaker_audio
|
file | Yes | Reference audio file of the voice to clone. |
speed
|
number | No |
Speaking rate multiplier.
Min: 0.5 Max: 2 Default: 1 |
format
|
string
wav | mp3 | webm |
No |
Output audio format.
Default: wav |
language
|
string | No | ISO language code for the output speech. |
success
boolean
audio_url
string
message
string (on error)
Request
multipart/form-data with speaker_audio file
Response
{
"success": true,
"audio_url": "https://taskagi.net/storage/hypervoice/xyz789.wav"
}
/voices
Get a list of all available voices in the library. Filter by language, gender, or category.
| Name | Type | Required | Description |
|---|---|---|---|
language
|
string | No | Filter voices by language code (e.g., "en", "fr"). |
gender
|
string
male | female |
No | Filter voices by gender. |
category
|
string | No | Filter voices by category (e.g., "professional", "casual"). |
voices
array - List of voice objects
clones
array - List of user's cloned voices (if authenticated)
Response
{
"voices": [
{
"id": "emma",
"name": "Emma",
"gender": "female",
"language": "en",
"category": "professional",
"description": "Warm, professional female voice"
}
],
"clones": []
}
/clones
Save a voice clone for reuse. Upload a reference audio file and give it a name.
| Name | Type | Required | Description |
|---|---|---|---|
name
|
string | Yes |
Name for the cloned voice.
Max: 100 |
audio
|
file | Yes | Reference audio file (5-30 seconds recommended). |
description
|
string | No |
Optional description of the voice.
Max: 500 |
success
boolean
clone
object - The saved clone details
message
string
/clones/{id}
Delete a saved voice clone.
| Name | Type | Required | Description |
|---|---|---|---|
id
|
integer | Yes | The ID of the clone to delete. |
success
boolean
message
string
TaskAGI provides a REST API for programmatic access to your agents and workflows.
Generate an API token from your account settings. Include it in the Authorization header.
Authorization: Bearer {your_api_token}
Base URL:
https://taskagi.net/api
/api/agents
List all your agents
/api/agents/{id}
Get a specific agent
/api/agents/{id}/execute
Execute an agent workflow
/api/executions
List execution history
/api/executions/{id}
Get execution details and results
/api/executions/{id}/status
Get execution status (for polling)
/webhook/{agentId}/{secret}
Trigger a webhook-based workflow
View the complete API reference with request/response examples, authentication details, and more.
View full API documentationStep-by-step guides to help you build common automation workflows.
Create a new agent with a Webhook trigger
Configure Slack to send events to your webhook URL
Add an OpenAI node to process incoming messages
Add a Slack node to send the AI response back
Deploy and test your bot
Set up a Schedule trigger to run daily
Use Google Sheets to read new leads
Add a Loop node to process each lead
Use Apollo or Hunter to enrich lead data
Write enriched data back to the spreadsheet
Trigger on a schedule or form submission
Use AI to generate article content
Generate images with DALL-E or Replicate
Format and publish to your CMS
Share on social media automatically
Start with one of our pre-built templates or create your own from scratch.
Browse TemplatesFind answers to common questions about TaskAGI.
Go to Integrations in your dashboard, find the integration you want to configure, and click "Configure". Enter your API credentials and save. Your credentials are encrypted and stored securely.
Failed executions are logged in your Execution History. You can view the error details, see which node failed, and debug the issue. Workflows can be configured to retry on failure.
Yes! You can connect your own OpenAI, Anthropic, or other AI provider API keys. We also support custom model endpoints via the HTTP Request node.
Credits are deducted based on the operations you use. AI model calls, data scraping, and certain premium integrations consume credits. Check each integration's documentation for specific costs.
Yes! Use the Schedule trigger to run workflows at specific times or intervals. You can set up cron expressions for complex scheduling needs.
Use node references with the syntax [[nodes.nodeId.property]]. Each node's output is accessible to subsequent nodes in the workflow.
The number of active agents depends on your subscription plan. Free users can have 1 agent, Personal plan allows 3, and Enterprise/LTD plans allow 7 or more.
Use the "Test" button in the workflow builder to run your workflow with sample data. You can see the output of each node and debug issues before going live.
Can't find what you're looking for? Reach out to our support team.
Contact Support