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

# Trade Items

> Trade items are products that can be priced and sold within a supply chain.

## What is a Trade Item?

A `trade item` in the TrustStack is anything that can be priced and sold within a supply chain. This could be anything from wheat, livestock, canned products, fresh produce, and so forth.

## Trade Item Management

Use the TrustStack SDK or API to manage trade items.

```typescript theme={null}
import {TrustStack} from "@truststack/sdk";

const truststack = new TrustStack({
  apiKey: "your-api-key",
});

const tradeItem = await truststack.masterData.tradeItems.create(
  {
    name: "Wheat",
  },
  {
    organizationId: "org_123",
  }
);

console.log(tradeItem);
```

```json theme={null}
{
  "id": "trade-item-id",
  "name": "Wheat"
}
```
