Skip to main content
Manage Kernel apps, deployments, and invocations.

Actions

ActionDescription
list_appsDiscover apps.
invokeExecute an app action.
get_deploymentRetrieve a deployment by ID.
list_deploymentsCheck deployment status.
get_invocationCheck action results.

Parameters

ParameterDescription
actionOperation to perform. Required.
app_name(list_apps, invoke, list_deployments) App name filter or target.
action_name(invoke) Action to execute within the app.
payload(invoke) JSON string with action parameters.
version(list_apps, invoke) App version filter. Defaults to latest for invoke.
deployment_id(get_deployment) Deployment ID to retrieve.
invocation_id(get_invocation) Invocation ID to retrieve.
limit(list_apps, list_deployments) Max results. Default 50.
offset(list_apps, list_deployments) Pagination offset. Default 0.

Example

{
  "action": "invoke",
  "app_name": "web-scraper",
  "action_name": "scrape",
  "payload": "{\"url\": \"https://reddit.com\"}"
}