Skip to main content

Base URL

All API requests should be made to:
https://app.splox.io/api/v1

Webhook URL Format

Workflow webhooks use the same base URL:
https://app.splox.io/api/v1/webhooks/{webhook_id}
Example:
https://app.splox.io/api/v1/webhooks/0199eeeb-d60e-7ffd-9131-4cc5ab040ee7

Authentication

Webhooks can be configured as public (no authentication) or private (requires authentication). For authenticated endpoints, include your API token in the Authorization header:
Authorization: Bearer YOUR_API_TOKEN
You can generate API tokens from your Splox Dashboard.

Endpoints

The Splox API provides two main endpoints:
  1. Trigger Workflow - Send data to webhook to execute workflow
  2. Get Workflow Request - Check execution status and retrieve results

Response Format

API responses return JSON data directly: Webhook trigger response:
{
  "workflow_request_id": "0199f123-d60e-7ffd-9131-4cc5ab040ee8",
  "event": "user.signup",
  "email": "[email protected]"
}
Workflow request response:
{
  "id": "0199f123-d60e-7ffd-9131-4cc5ab040ee8",
  "status": "completed",
  "workflow_version_id": "0199e001-a23b-7c8d-1234-567890abcdef",
  "query": { ... },
  "output": { ... },
  "created_at": "2025-10-22T12:15:30Z"
}

Support

Need help with the API? Reach out to us: