> ## Documentation Index
> Fetch the complete documentation index at: https://tbd-6fc993ce-hypeship-docs-website-deploy-hook.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# manage_apps

> List apps, invoke actions, and check deployments and invocations

Manage Kernel apps, deployments, and invocations.

## Actions

| Action             | Description                  |
| ------------------ | ---------------------------- |
| `list_apps`        | Discover apps.               |
| `invoke`           | Execute an app action.       |
| `get_deployment`   | Retrieve a deployment by ID. |
| `list_deployments` | Check deployment status.     |
| `get_invocation`   | Check action results.        |

## Parameters

| Parameter       | Description                                                               |
| --------------- | ------------------------------------------------------------------------- |
| `action`        | Operation 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

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