Products
Products describe the items you sell. Each product can have multiple prices.
The Product object
{
"id": "prod_abc123",
"object": "product",
"name": "Premium Plan",
"description": "Full access to all features",
"active": true,
"metadata": {},
"created": 1708300800
}
Endpoints
| Method | Endpoint | Description |
|---|---|---|
POST | /v1/products | Create a product |
GET | /v1/products/{id} | Retrieve a product |
PATCH | /v1/products/{id} | Update a product |
DELETE | /v1/products/{id} | Delete a product |
GET | /v1/products | List products |