GET
/
studies
/
{studyId}
/
quotes
List quotes from a study
curl --request GET \
  --url https://api.conveo.ai/v1/studies/{studyId}/quotes \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "cm7xv9dqb049ls64i0btp9pql",
      "text": "I think the new electric model is a game changer. The acceleration is incredible and range anxiety is no longer an issue."
    }
  ],
  "pagination": {
    "total": 42,
    "page": 2,
    "pageSize": 20
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

studyId
string
required

Query Parameters

page
integer
default:1
Required range: x >= 1
pageSize
integer
default:20
Required range: 1 <= x <= 100

Response

200
application/json

A paginated list of quotes from the study

The response is of type object.