Skip to main content
GET
/
v1
/
analytics
/
visitors
/
breakdown
Visitor acquisition breakdown (first-touch)
curl --request GET \
  --url https://api.scribe-mail.com/v1/analytics/visitors/breakdown \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "label": "<string>",
      "count": 123
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "total_count": 123,
    "total_pages": 123,
    "has_more": true
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

group_by
enum<string>
required
Available options:
signature_template,
teammate
page
integer
limit
integer

Response

Success

data
object[]
required
pagination
object
required

Offset (page/limit) pagination. The single pagination shape returned by every paginated list endpoint in the public API.