Skip to main content
GET
/
sessions
List sessions
curl --request GET \
  --url https://api.funnelfox.io/public/v1/sessions \
  --header 'Fox-Secret: <fox-secret>'
{
  "data": [
    {
      "id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "funnel_id": "<string>",
      "profile_id": "<string>",
      "funnel_version": 123,
      "city": "<string>",
      "country": "<string>",
      "ip": "<string>",
      "origin": "<string>",
      "postal": "<string>",
      "user_agent": "<string>"
    }
  ],
  "pagination": {
    "total": 123,
    "has_more": true,
    "next_cursor": "<string>"
  }
}

Headers

Fox-Secret
string
required

Project Secret Key

Example:

"secret_"

Query Parameters

limit
integer
default:20

Maximum number of items to return

Required range: 1 <= x <= 500
cursor
string

Cursor for pagination

filter[profile_id]
string

Filter by Profile ID

filter[funnel_id]
string

Filter by Funnel ID

Response

Sessions list

data
object[]
required
pagination
object
required