post https://api.lytics.io/api/segment/size
Get size of a single Segment using SegmentQL, not saved.
This api is very rate throttled, 1/10 seconds.
# Post a SegmentQL query to size api to fetch size
curl -s -XPOST "https://api.lytics.io/api/segment/size" \
-H "Content-type: text/plain" \
-H "Authorization: your_api_token" \
-d'
FILTER AND (
visits > 5,
last_visit >= "now-30d",
scores.momentum > 10
)
' | jq '.'