Property values

Get distinct values for a specific event property with search and pagination. Useful for discovering all the unique pathnames, event names, referrers, UTMs, countries, etc. that exist in your project.

POST
https://api.seline.com/api/v1/property-values
Click anywhere to copy

Parameters

property
stringRequired
The property to get distinct values for. One of page_pathname, visitor_referrer, visitor_campaign, visitor_source, visitor_medium, visitor_content, visitor_term, visitor_country, visitor_browser, visitor_os, hostname, event_name.
search
string
Search term to filter results. Case-insensitive.
page
number
Page number for pagination
limit
number
Number of results per page. Default is 10. Maximum is 1000.
Example request
curl -X POST 'https://api.seline.com/api/v1/property-values' \
-H 'Authorization: Bearer API_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"property": "event_name",
"search": "user:",
"page": 1,
"limit": 100
}'
Click anywhere to copy
Response
{
"items": [
"user: signed up",
"user: deleted",
"user: invited"
],
"hasMore": false
}
Click anywhere to copy