Marketplace API
In-app marketplace for paid industry packs, template bundles, and workflows.
Endpoints
| Method | Path | Description |
|---|---|---|
| GET | `/api/v1/marketplace/items` | Catalog |
| GET | `/api/v1/marketplace/items/:slug` | Item detail |
| POST | `/api/v1/marketplace/items/:slug/purchase` | Checkout |
| GET | `/api/v1/marketplace/purchases` | Your purchases |
| GET | `/api/v1/marketplace/purchases/:id` | One purchase |
Checkout
paymentMethod can be STRIPE, CRYPTO, EPAY, or ALIPAY. The response carries a paymentSession.url to redirect the buyer.
Every response uses the standard envelope:
{
"success": true,
"data": { /* resource or array */ },
"meta": { "total": 100, "cursor": "...", "hasMore": true },
"error": { "code": "ERROR_CODE", "message": "Human readable" }
}error is omitted on success; meta is omitted when not paginating.
Rate Limits
Subject to the standard 200 req/min/tenant authenticated limit. See [Rate Limits](/docs/api-reference/rate-limits) for full details and the per-endpoint overrides.