Commet
  • Pricing
Log InTry out
Activate add-on POSTCreate add-on POSTDeactivate add-on DELETEDelete add-on DELETEGet add-on GETList active add-ons GETList add-ons GETUpdate add-on PUT
DocumentationKnowledge BaseBuild with AIAPI ReferenceWebhooks

List add-ons

List all add-ons with cursor-based pagination.

List active add-ons GET

List all active add-ons for a customer's subscription.

Update add-on PUT

Update an add-on's name, description, or pricing.

GET
/addons

Authorization

ApiKeyAuth
x-api-key<token>

In: header

Query Parameters

limit?integer
cursor?string

Response Body

application/json

curl -X GET "https://commet.co/api/v1/addons"

List all add-ons with cursor-based pagination.

Max 100, default 25

{
  "success": true,
  "data": [
    {
      "object": "addon",
      "livemode": true,
      "id": "string",
      "name": "string",
      "slug": "string",
      "description": "string",
      "basePrice": 0,












"consumptionModel": "boolean",
"featureCode": "string",
"featureName": "string",
"includedUnits": 0,
"overageRate": 0,
"creditCost": 0,
"createdAt": "string",
"updatedAt": "string"
}
],
"hasMore": true,
"nextCursor": "string"
}