Welcome, Developers
Documentation & Guides for the Automation Cloud
Smart Actions
We provide the missing API to critical services available on third-party websites using web automation.
Smart Feed
Get fresh, highly scalable, aggregated price and inventory hotel data collected from web pages and existing APIs.
Secure Vault
Securely transfer sensitive card data to our infrastructure to be injected into the automation at the required time.
JavaScript Client for Smart Actions API
For speedy integration and prototyping, try our JavaScript/TypeScript client library.
import { Client } from '@automationcloud/client';
// Create a Client instance
const client = new Client({
serviceId: 'service-uuid-from-dashboard',
auth: 'app-secret-key',
});
// Create a new job
const job = await client.createJob({
input: { ... }
});
// Wait for outputs
const [products, terms] = await job.waitForOutputs('products', 'terms');
// Wait for completion
await job.waitForCompletion();