KosmoKrator

marketing

Unbounce CLI for Headless Automation

Use the Unbounce CLI for headless automation with headless JSON commands, schema discovery, credentials, and permission controls.

6 functions 6 read 0 write Bearer token auth

Unbounce CLI for Headless Automation

Use KosmoKrator as a non-interactive integration runtime for local automations and wrappers.

Use headless automation when another tool needs a stable local command surface. The Unbounce CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.

Command Shape

# Unbounce CLI for Headless Automation
kosmokrator integrations:configure unbounce --set access_token="$UNBOUNCE_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmo integrations:call unbounce.unbounce_list_pages '{"limit":1,"offset":1,"sort":"example_sort"}' --json

Discovery Before Execution

Agents and scripts can inspect Unbounce docs and schemas before choosing a function.

kosmo integrations:docs unbounce --json
kosmo integrations:docs unbounce.unbounce_list_pages --json
kosmo integrations:schema unbounce.unbounce_list_pages --json
kosmo integrations:search "Unbounce" --json
kosmo integrations:list --json

Useful Unbounce CLI Functions

FunctionTypeParametersDescription
unbounce.unbounce_list_pages Read limit, offset, sort List landing pages in Unbounce. Returns page IDs, names, URLs, and metadata. Use this to discover available pages before querying leads or page details.
unbounce.unbounce_get_page Read page_id Get details of a specific Unbounce landing page by its ID. Returns the page name, URL, variants, conversion rates, and other metadata.
unbounce.unbounce_list_leads Read page_id, limit, offset List form submissions (leads) for a specific Unbounce landing page. Returns lead data including form field values, submission timestamps, and conversion details.
unbounce.unbounce_get_lead Read lead_id Get details of a specific Unbounce lead (form submission) by its ID. Returns all submitted form field values, metadata, and conversion information.
unbounce.unbounce_list_sub_accounts Read limit, offset List sub-accounts in Unbounce. Sub-accounts group pages and are useful for organizing landing pages by client, brand, or campaign.
unbounce.unbounce_get_current_user Read none Get the currently authenticated Unbounce user profile. Returns account name, email, and other account details.

Automation Notes

Related Unbounce CLI Pages