LaraCopilot
LaraCopilot
API ReferenceEndpointsSubscription

List subscription plans

Returns all subscription plans ordered by display sort order. Sensitive fields like Stripe price/product IDs are hidden from the response.

GET
/subscription-plans
AuthorizationBearer <token>

In: header

Response Body

application/json

curl -X GET "https://builder.laracopilot.com/api/v1/subscription-plans"
{
  "data": [
    {
      "id": 0,
      "name": "string",
      "slug": "string",
      "price": "string",
      "credits_per_month": 0,
      "credits_per_dollar": "string",
      "max_projects": 0,
      "max_team_seats": 0,
      "features": [
        null
      ],
      "is_active": true,
      "is_featured": true,
      "is_custom": true,
      "sort_order": 0,
      "stripe_price_id": "string",
      "new_stripe_price_id": "string",
      "stripe_product_id": "string",
      "new_stripe_product_id": "string",
      "created_at": "2019-08-24T14:15:22Z",
      "updated_at": "2019-08-24T14:15:22Z",
      "price_display": "string"
    }
  ]
}