Skip to main content
GET
/
profiles
List profiles
curl --request GET \
  --url https://api.funnelfox.io/public/v1/profiles \
  --header 'Fox-Secret: <fox-secret>'
{
  "data": [
    {
      "id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "email": "<string>",
      "preview": true,
      "country": "<string>",
      "funnel_id": "<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[email]
string

Filter by email (partial match)

filter[funnel_id]
string

Filter by Funnel ID

Response

Profiles list

data
object[]
required
pagination
object
required