> ## Documentation Index
> Fetch the complete documentation index at: https://docs.withconvexity.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

> The products and capability sets available to your project.

The **Products** API exposes the catalog of products your project can subscribe to.
Each product maps to a plan and a set of capability keys that gate access to other
Infra operations.

## The product object

| Attribute      | Type             | Description                                                  |
| -------------- | ---------------- | ------------------------------------------------------------ |
| `id`           | `integer`        | Unique product id.                                           |
| `slug`         | `string`         | URL-safe identifier (e.g. `wallet-as-a-service`).            |
| `name`         | `string`         | Display name.                                                |
| `description`  | `string`         | What the product provides.                                   |
| `planId`       | `string`         | Plan the product maps to.                                    |
| `capabilities` | `string[]`       | Capability keys the product grants (e.g. `wallet.transfer`). |
| `metadata`     | `object`         | Arbitrary key/value metadata.                                |
| `status`       | `string`         | `active` for available products.                             |
| `createdBy`    | `string`         | Actor that created the product.                              |
| `deletedAt`    | `string \| null` | Soft-delete timestamp, or `null`.                            |
| `createdAt`    | `string`         | ISO 8601 UTC timestamp.                                      |
| `updatedAt`    | `string`         | ISO 8601 UTC timestamp.                                      |

<Tip>
  Capabilities granted by your product/plan determine which endpoints your token can
  call. See [Scopes & capabilities](/getting-started/authentication#scopes-%26-capabilities).
</Tip>
