Skip to main content
GET
/
v1
/
features
/
list
get features
curl --request GET \
  --url https://api.unprice.dev/v1/features/list \
  --header 'Authorization: Bearer <token>'
{
  "features": [
    {
      "id": "<string>",
      "projectId": "<string>",
      "slug": "<string>",
      "code": 123,
      "unitOfMeasure": "<string>",
      "title": "<string>",
      "description": "<string>",
      "meterConfig": {
        "eventId": "<string>",
        "eventSlug": "<string>",
        "aggregationField": "<string>",
        "filters": {},
        "groupBy": [
          "<string>"
        ]
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

The result of the get features

features
object[]
required