This web service responds with a list of locations where the portal was most frequently accessed in a selected period.
Method | Endpoint |
---|---|
POST |
/analytics/api/v3/traffic/countries-top |
Request example
{
"startDate": "2023-05-29",
"endDate": "2023-06-29"
}
Field | Type | Required? | Description |
---|---|---|---|
startDate |
String | Yes | The inclusive start date of the period. Must be in the past year. |
endDate |
String | Yes | The exclusive end date of the period. Must be later than the start date. |
Response body
The following lines show an example of a JSON response body:
{
"startDate": "2023-05-29",
"endDate": "2023-06-29",
"results": [
{
"countryCode": "FRA",
"countryName": "France",
"percentage": 13.482392349,
"httpRequestCount": 32500
}
]
}
- Traffic is based on the number of HTTP requests sent to the server by browsers or via the API.
countryCode
andcountryName
can have theUNKNOWN
value. This is the value associated to users visiting through an internal network.
Field | Type | Description |
---|---|---|
startDate |
String | The inclusive start date of the period as defined in the request body. |
endDate |
String | The exclusive end date of the period as defined in the request body. |
countryCode |
String | The country's ISO-3166 Alpha-3 code. Can be unknown . |
countryName |
String | The name of the country. Can be unknown . |
percentage |
Number | The percentage of visits that occurred in the country out of the total number of visits during the period. |
queryCount |
Number | The number of queries that users living in the country submitted during the period. |
Return code | Description |
---|---|
200 OK |
Returns results. |