Skip to content

Geographical Statistics

Geographical stats provide information on email opens and clicks, broken down by country. This helps you identify possible engagement issues with recipients from specific regions. With those details in mind, you can update your sendings to focus on countries that are performing well, or address issues with markets that are underperforming.

Use the /geostatistics resource to get information on opens and clicks by country.

Example

curl -s \
	-X GET \
	--user "$MJ_APIKEY_PUBLIC:$MJ_APIKEY_PRIVATE" \
	https://api.mailjet.com/v3/REST/geostatistics \

API Response

{
	"Count": 1,
	"Data": [
		{
			"ClickedCount": 10,
			"Country": "US",
			"OpenedCount": 5
		}
	],
	"Total": 1
}