Get engagement by location
GET
/v1/email/stats/locations
const { data } = await bird.email.stats.byLocation({
from: "2026-05-01",
to: "2026-05-31",
limit: 25,
});
for (const row of data) console.log(row.country, row.engagement.unique_opens);stats = client.email.stats.by_location(
from_="2026-05-01", to="2026-05-25", group_by="country",
)
for row in stats.data:
print(row)stats, err := client.Email.Stats.ByLocation(context.Background(), bird.EmailStatsByLocationParams{
GroupBy: "country",
})
if err != nil {
log.Fatal(err)
}
fmt.Println(stats.Data)$stats = $bird->email->stats->byLocation([
'from' => '2026-05-01',
'to' => '2026-05-31',
'limit' => 25,
]);
foreach ($stats->getData() ?? [] as $row) {
echo $row->getCountry(), ' ', $row->getEngagement()?->getUniqueOpens(), "\n";
}bird email stats by-locationcurl -X GET "https://us1.platform.bird.com/v1/email/stats/locations" \
-H "Authorization: Bearer $TOKEN" \
--url-query "group_by=country" \
--url-query "sort=unique_opens" \
--url-query "limit=50"Response200
{
"period": {
"from": "2026-05-01T00:00:00Z",
"to": "2026-05-25T00:00:00Z",
"data_as_of": "2026-05-25T14:03:10Z"
},
"data": [
{
"country": "US",
"region": "California",
"city": "San Francisco",
"engagement": {
"opens": 5420,
"opens_non_prefetched": 3210,
"unique_opens": 3640,
"unique_opens_non_prefetched": 2480,
"clicks": 924,
"unique_clicks": 621
}
}
],
"total": 86
}
Returns engagement counts (opens and clicks) for the requested period, grouped by the location they were recorded from. Use it to see where your audience engages, for example the top countries by unique opens. The reading location is only known from open and click events, so rows have engagement counts but no delivery counts or rates.
Use group_by to choose the granularity: country (the default), region, or city. Each row has the location hierarchy down to the requested level, so a city grouping also reports that row's region and country. Rows are ranked by the sort metric, unique_opens by default, and capped at the requested limit (50 by default, 200 at most).
Rows are computed against event time rather than send time. The window can span at most 365 days. Ask for more and you get a 422.
Query Parameters
from
string
Start date (inclusive) in YYYY-MM-DD, interpreted as a calendar day in timezone (a UTC day when timezone is omitted). Defaults to 30 days before to when omitted.
to
string
End date (inclusive) in YYYY-MM-DD, interpreted as a calendar day in timezone (a UTC day when timezone is omitted). Defaults to today in that timezone when omitted. Window may not exceed 365 days.
timezone
string
IANA timezone identifier used to group statistics, for example Asia/Kathmandu. The default is UTC. Day and hour boundaries, including the default window when from and to are omitted, follow this timezone. When this parameter is set, pass from and to as calendar days or Z instants instead of timestamps with explicit UTC offsets.
category
string
Not supported on breakdown endpoints; supplying it returns 422. To compare categories use GET /v1/email/stats/categories; the summary, daily, and hourly statistics accept category as a filter.
group_by
string
Location granularity for each row. country (default) groups by country; region groups by region within country; city groups by city within region. Each row reports the location hierarchy down to the chosen level.
Possible values: country, region, city
sort
string
Metric to rank rows by, applied descending. It defaults to unique_opens. Only engagement counts are sortable. This breakdown has no rates.
Possible values: opens, opens_non_prefetched, unique_opens, unique_opens_non_prefetched, clicks, unique_clicks
limit
integer
Maximum number of location rows to return, ranked by the sort field descending.
Response Payload
period
object
required
The date range the response covers (echoed back from the request), plus data_as_of, the freshness boundary the data is current to.
Show child attributes
period.from
string
required
Inclusive start date the response covers (YYYY-MM-DD).
period.to
string
required
Inclusive end date the response covers (YYYY-MM-DD).
period.data_as_of
nullable string
The instant the statistics in this response are current to: events recorded up to roughly this time are reflected, while more recent events may not be yet. Statistics are served from a rolling aggregation that refreshes every few seconds, so a response reflects data from up to a few seconds ago. Use this field to label data freshness (for example "as of 14:03") rather than assuming the numbers are to-the-second. Null when the freshness boundary is not being reported.
data
array of object
required
Location breakdown rows, ranked by the sort metric (default unique_opens) descending. Empty when no opens or clicks with a resolved location occurred in the period.
Show child attributes
data.country
string
required
The country this row aggregates, as a two-letter country code (ISO 3166-1 alpha-2) resolved from the open or click event. Always present.
data.region
nullable string
required
The region (state or province) within the country. Populated when group_by is region or city; null at coarser groupings.
data.city
nullable string
required
The city within the region. Populated when group_by is city; null at coarser groupings.
data.engagement
object
required
Show child attributes
data.engagement.opens
integer
required
Distinct open events, counting repeat opens from the same recipient and opens auto-fetched by inbox privacy features (such as Apple Mail Privacy Protection and the Gmail image proxy).
data.engagement.opens_non_prefetched
integer
required
Distinct open events excluding those auto-fetched by inbox privacy features. Same event-counting semantics as opens, with prefetched opens removed.
data.engagement.unique_opens
integer
required
Distinct recipients who opened at least once, including opens auto-fetched by inbox privacy features.
data.engagement.unique_opens_non_prefetched
integer
required
Distinct recipients who opened at least once, excluding opens auto-fetched by inbox privacy features.
data.engagement.clicks
integer
required
Distinct click events, counting repeat clicks from the same recipient.
data.engagement.unique_clicks
integer
required
Distinct recipients who clicked at least once.
total
integer
required
Total number of distinct locations at the requested group_by level with activity in the period, regardless of limit. When it exceeds the number of rows returned, the ranking was capped. Raise limit (up to 200) or narrow the window to see more.