Skip to main content
GET
/
quotes
/
{id}
/
analytics
Get quote analytics
curl --request GET \
  --url https://dev.seqhq.io/api/quotes/{id}/analytics \
  --header 'Authorization: <authorization>'
{
  "totalViews": 42,
  "uniqueViewers": [
    {
      "visitorIdentifier": "0190dae7-7228-7619-aad8-c51f56733b2b",
      "lastViewedAt": "2024-01-07T10:30:00Z",
      "loginType": "SEQUENCE_USER",
      "email": "[email protected]"
    }
  ],
  "viewsByDay": [
    {
      "date": "2024-01-07",
      "totalViews": 15
    }
  ]
}

Headers

Authorization
string
required

Your API credentials. Eg. Basic {credentials}.

Sequence-Version
enum<string>

Use this header to select an API version

Available options:
2024-07-30

Path Parameters

id
string
required

Quote ID

Response

OK

totalViews
integer<int32>
required
Example:

42

uniqueViewers
object[]
required
Example:
[
{
"visitorIdentifier": "0190dae7-7228-7619-aad8-c51f56733b2b",
"lastViewedAt": "2024-01-07T10:30:00Z",
"loginType": "SEQUENCE_USER",
"email": "[email protected]"
}
]
viewsByDay
object[]
required
Example:
[{ "date": "2024-01-07", "totalViews": 15 }]