Overview
The Splox integration provides built-in tools and utilities for workflow automation, data management, and agent orchestration within the Splox platform.Workflow Builder
Data Storage
Utilities
LLM Operations
Setup
The Splox integration is automatically available in all workflows - no additional setup required.Available Actions
Workflow Builder
Create Workflow
Create Workflow
name- Workflow namedescription- Workflow description (optional)nodes- Array of node configurationsedges- Array of edge connectionssettings- Workflow settings (optional)
workflow_id- Created workflow IDname- Workflow namecreated_at- Creation timestamp
Get Workflow
Get Workflow
workflow_id- Workflow ID to retrieve
id- Workflow IDname- Workflow namedescription- Workflow descriptionnodes- Array of nodesedges- Array of edgessettings- Workflow settingscreated_at- Creation dateupdated_at- Last update date
Delete Nodes
Delete Nodes
workflow_id- Target workflow IDnode_ids- Array of node IDs to delete
success- Deletion success statusdeleted_count- Number of nodes deleted
Create Agent
Create Agent
name- Agent namedescription- Agent descriptionllm_config- LLM configurationprovider- AI provider (openai, anthropic, etc.)model- Model nametemperature- Temperature settingmax_tokens- Max token limit
system_prompt- Agent system prompttools- Array of tool IDs to attach
agent_id- Created agent IDname- Agent namecreated_at- Creation timestamp
Update Agent Configuration
Update Agent Configuration
agent_id- Agent ID to updatename- New name (optional)description- New description (optional)llm_config- Updated LLM config (optional)system_prompt- New system prompt (optional)
agent_id- Updated agent IDupdated_at- Update timestamp
Add Tools to Agent
Add Tools to Agent
agent_id- Target agent IDtool_ids- Array of tool IDs to add
agent_id- Agent IDtools- Updated tool listtool_count- Total number of tools
Connect Agents
Connect Agents
agent_ids- Array of agent IDs to connectconnection_type- Connection type (sequential, parallel, hierarchical)communication_protocol- How agents communicate
connection_id- Created connection IDagent_count- Number of connected agents
Create Multi-Agent System
Create Multi-Agent System
name- System namedescription- System descriptionagents- Array of agent configurationsorchestration_type- How agents work togethersequential- One after anotherparallel- All at oncehierarchical- Manager and workersdebate- Agents debate and vote
communication- Communication settings
system_id- Created system IDagent_ids- Array of created agent IDsorchestration- Orchestration configuration
Search Integrations
Search Integrations
query- Search querycategory- Filter by category (llm, social, productivity, etc.)limit- Number of results
integrations- Array of matching integrationsid- Integration IDname- Integration namedescription- Integration descriptioncategory- Integration categoryactions- Available actions
List User MCPs
List User MCPs
mcps- Array of user MCP serversid- MCP IDname- MCP nameurl- MCP endpointstatus- Connection statustools- Available tools
List Public MCP Templates
List Public MCP Templates
category- Filter by category (optional)limit- Number of results
templates- Array of MCP templatesid- Template IDname- Template namedescription- Template descriptionauthor- Template creatortools- Included toolsinstall_url- Installation URL
Key-Value Store
KV Get
KV Get
key- Key to retrieveworkspace_id- Workspace ID (optional)
value- Stored valueexists- Whether key exists
KV Set
KV Set
key- Key to storevalue- Value to storeworkspace_id- Workspace ID (optional)ttl- Time to live in seconds (optional)
success- Operation success status
KV Delete
KV Delete
key- Key to deleteworkspace_id- Workspace ID (optional)
success- Deletion success status
KV Append
KV Append
key- Key to append tovalue- Value to appendworkspace_id- Workspace ID (optional)
new_value- Updated valuelength- New length
KV Append Array
KV Append Array
key- Key to append toitems- Array of items to appendworkspace_id- Workspace ID (optional)
new_array- Updated arraylength- New array length
KV Increment
KV Increment
key- Key to incrementincrement_by- Amount to increment (default: 1)workspace_id- Workspace ID (optional)
new_value- Updated value
KV Decrement
KV Decrement
key- Key to decrementdecrement_by- Amount to decrement (default: 1)workspace_id- Workspace ID (optional)
new_value- Updated value
Vector Store
Vector Store Insert
Vector Store Insert
documents- Array of documents to insertid- Document ID (optional)text- Document text contentmetadata- Document metadata (optional)
collection_name- Collection name (optional)
inserted_ids- Array of inserted document IDscount- Number of documents inserted
Vector Store Search
Vector Store Search
query- Search query textlimit- Maximum number of results (default: 10)collection_name- Collection name (optional)filter- Metadata filter (optional)
results- Array of matching documentsid- Document IDtext- Document textscore- Similarity scoremetadata- Document metadata
Vector Store Hybrid Search
Vector Store Hybrid Search
query- Search query textlimit- Maximum number of results (default: 10)collection_name- Collection name (optional)filter- Metadata filter (optional)alpha- Weight between vector (1.0) and keyword (0.0) search
results- Array of matching documents with hybrid scores
Vector Store Rerank
Vector Store Rerank
query- Search query textdocuments- Array of documents to reranktop_k- Number of top results to return
reranked_results- Array of reranked documents with scores
Date & Time
Get Current Date/Time
Get Current Date/Time
timezone- Timezone (optional, default: UTC)format- Output format (optional)
datetime- Current date/timetimestamp- Unix timestamptimezone- Used timezone
Format Date/Time
Format Date/Time
datetime- Date/time to formatformat- Desired format (e.g., “YYYY-MM-DD HH:mm:ss”)timezone- Timezone (optional)
formatted- Formatted date/time string
Add Time to Date
Add Time to Date
datetime- Starting date/timeyears- Years to add (optional)months- Months to add (optional)days- Days to add (optional)hours- Hours to add (optional)minutes- Minutes to add (optional)seconds- Seconds to add (optional)
result- New date/time
Subtract Time from Date
Subtract Time from Date
datetime- Starting date/timeyears- Years to subtract (optional)months- Months to subtract (optional)days- Days to subtract (optional)hours- Hours to subtract (optional)minutes- Minutes to subtract (optional)seconds- Seconds to subtract (optional)
result- New date/time
Extract Date Part
Extract Date Part
datetime- Date/time to extract frompart- Part to extract (year, month, day, hour, minute, second, weekday)
value- Extracted value
Calculate Time Difference
Calculate Time Difference
start_datetime- Start date/timeend_datetime- End date/timeunit- Unit of measurement (days, hours, minutes, seconds)
difference- Time difference in specified unit
Round Date/Time
Round Date/Time
datetime- Date/time to roundunit- Unit to round to (hour, day, week, month, year)direction- Rounding direction (up, down, nearest)
rounded- Rounded date/time
Crypto
Crypto Generate
Crypto Generate
type- Type to generate (uuid, random_bytes, random_string)length- Length of output (for bytes/string)charset- Character set for strings (optional)
value- Generated cryptographic data
Crypto Hash
Crypto Hash
data- Data to hashalgorithm- Hash algorithm (md5, sha1, sha256, sha512)encoding- Output encoding (hex, base64)
hash- Generated hashalgorithm- Used algorithm
Crypto HMAC
Crypto HMAC
data- Data to signsecret- Secret keyalgorithm- HMAC algorithm (sha256, sha512)encoding- Output encoding (hex, base64)
hmac- Generated HMAC signature
Crypto Sign
Crypto Sign
data- Data to signprivate_key- Private key for signingalgorithm- Signing algorithm (RSA, ECDSA)
signature- Generated signaturealgorithm- Used algorithm
Conversion
Convert HTML to PDF
Convert HTML to PDF
html- HTML content to convertoptions- Conversion options (optional)page_size- Page size (A4, Letter, etc.)orientation- Page orientation (portrait, landscape)margins- Page margins
pdf_url- URL to generated PDFfile_size- PDF file size
Convert HTML to Image
Convert HTML to Image
html- HTML content to convertformat- Image format (png, jpeg)width- Image width (optional)height- Image height (optional)
image_url- URL to generated imagedimensions- Image dimensions
Merge PDFs
Merge PDFs
pdf_urls- Array of PDF file URLs to mergeorder- Order of merging (optional)
merged_pdf_url- URL to merged PDFpage_count- Total pages in merged PDF
Take Screenshot
Take Screenshot
url- URL to captureformat- Image format (png, jpeg)full_page- Capture full page or viewportwidth- Viewport width (optional)height- Viewport height (optional)
screenshot_url- URL to screenshotdimensions- Screenshot dimensions
Convert Audio
Convert Audio
audio_url- URL of audio file to converttarget_format- Target format (mp3, wav, ogg, etc.)bitrate- Audio bitrate (optional)sample_rate- Sample rate (optional)
converted_url- URL to converted audioduration- Audio durationformat- Output format
LLM Operations
List LLM Models
List LLM Models
provider- Filter by provider (optional)category- Filter by category (optional)
models- Array of available modelsid- Model IDname- Model nameprovider- Model providercapabilities- Model capabilitiescontext_window- Context window size
Create Chat Completion Token
Create Chat Completion Token
duration- Token validity duration (optional)permissions- Token permissions (optional)
token- Generated API tokenexpires_at- Token expiration time
Internal Workflow Communication
Send Message
Send Message
chat_id- Workflow chat IDmessage- Message contentmetadata- Optional metadata
message_id- Sent message IDtimestamp- Message timestamp
Message Complete
Message Complete
chat_id- Workflow chat IDmessage_id- Message to mark complete
success- Completion status
Utility
API Request
API Request
url- API endpoint URLmethod- HTTP method (GET, POST, PUT, DELETE, PATCH)headers- Request headers (optional)body- Request body (optional)params- Query parameters (optional)auth- Authentication details (optional)
status_code- HTTP status codebody- Response bodyheaders- Response headers
Workflow Request Status
Workflow Request Status
workflow_request_id- Workflow execution ID
status- Execution statusprogress- Execution progressresult- Execution result (if complete)error- Error message (if failed)
Use Cases
Persistent Data Storage
Persistent Data Storage
Semantic Search
Semantic Search
Workflow Automation
Workflow Automation
Multi-Agent Systems
Multi-Agent Systems
Document Processing
Document Processing
Data Transformation
Data Transformation
Best Practices
Data Management
Vector Search
Agent Design
Error Handling
Security
Performance
Limitations
- KV Store: 10MB max value size per key
- Vector Store: 100,000 documents per collection
- Workflow Size: 1000 nodes per workflow
- Agent Systems: 50 agents per multi-agent system
- API Requests: 60 requests per minute
- File Conversions: 50MB max file size

