curl --request POST \
--url https://api.wirespeed.co/team/statistics/geography \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"startDate": "<string>",
"endDate": "<string>",
"days": 123
}
'{
"detectionLocations": [
{
"country": "<string>",
"count": 123
}
],
"suspiciousLoginLocations": [
{
"country": "<string>",
"count": 123
}
]
}curl --request POST \
--url https://api.wirespeed.co/team/statistics/geography \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"startDate": "<string>",
"endDate": "<string>",
"days": 123
}
'{
"detectionLocations": [
{
"country": "<string>",
"count": 123
}
],
"suspiciousLoginLocations": [
{
"country": "<string>",
"count": 123
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.