Landing Analytics LogoLanding Analytics

Get depth graph for a project

Retrieve the graph showing impressions and time spent per section for current tracking alternatives

GET
/depth_graph/{id_project}
AuthorizationBearer <token>

In: header

Path Parameters

id_projectstring

The unique identifier for the project

Response Body

curl -X GET "https://backend-landing-analytics.fly.dev/api/v0/exploration/depth_graph/string"
{
  "success": true,
  "message": "string",
  "content": [
    {
      "section": "string",
      "id_tracking_data": "string",
      "time_spent_ms": 0,
      "total_visitors": 0
    }
  ]
}
{
  "success": true,
  "message": "string",
  "content": {}
}