---
title: "Integrations & Billing in the CLI"
canonical: https://trickest.com/docs/developer-tools/cli/integrations-billing
description: "Manage Docker registry integrations and view billing status from the trickest CLI."
---

# Integrations & Billing in the CLI

## `trickest integrations`

Connect private **Docker registries** so the platform can pull your custom tool images.

| Subcommand | Description |
|---|---|
| `integrations ls` | List integrations |
| `integrations get <id>` | Integration details |
| `integrations create` | Create a registry integration |
| `integrations rm <id>` | Delete |

### `integrations ls`

```bash
trickest integrations ls
```
```json
[]
```

An empty array means no registries are configured yet.

### `integrations create`

```bash
trickest integrations create --help
```

Run with `--help` for registry URL, credentials, and naming flags on your version.

<Info>
UI walkthrough: [Connecting a private registry](/docs/using-the-app/private-execution-networking/connecting-private-registry).
</Info>

## `trickest billing`

Read-only billing and usage views.

| Subcommand | Description |
|---|---|
| `billing status` | Plan and billing status |
| `billing usage` | Current usage metrics |
| `billing charges` | List charges |
| `billing payment-methods` | Payment methods on file |

```bash
trickest billing status
trickest billing usage
```

<Warning>
You may see `ERR_AUTH` / "Invalid token" for **billing only**, while
the same token works for `space ls`, `users ls`, and other commands. Billing is
separately gated — do not treat a billing auth error as proof your token is invalid
globally.
</Warning>

## Related

<CardGroup cols={2}>
  <Card title="Library, Tools & Modules" icon="cube" href="/docs/developer-tools/cli/library-tools-modules">
    Private tools often pull images from integrated registries.
  </Card>
  <Card title="Fleet" icon="server" href="/docs/developer-tools/cli/fleet">
    Execution capacity and machine counts affect usage.
  </Card>
</CardGroup>

---
_Markdown source of https://trickest.com/docs/developer-tools/cli/integrations-billing._
