GET
/
v1
/
project
/
getFeatures
curl --request GET \
  --url https://api.unprice.dev/v1/project/getFeatures \
  --header 'Authorization: Bearer <token>'
{
  "features": [
    {
      "id": "<string>",
      "projectId": "<string>",
      "slug": "<string>",
      "code": 123,
      "title": "<string>",
      "description": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json

The result of the get features

The response is of type object.