Report details
Purpose
Send a GET request to retrieve detailed information about a specific report generated by the Area Analytics service.
Request data
HTTPS method: GET
For ease of viewing and identification:
- Constants and parameters enclosed in curly brackets { } must be replaced with their values.
- See the following Request parameters section with the required and optional parameters tables for their values. The generic request format is as follows.
Format
https://{baseURL}/areaanalytics/reports/{reportID}?key={Your_API_Key}
Example
https://api.tomtom.com/areaanalytics/reports/a782dd83-2294-4eb4-acd4-ca5cf6008457?key={Your_API_Key}
Request parameters
Required parameters | Description |
---|---|
| The base URL for calling TomTom services. Value: |
| The unique identifier for the specific report. |
| Authorization key for access to the API. Value: Your valid API key. |
Response data
Response example
Here is an example showing the correct response.
1{2 "id": "3b105bbf-5924-432f-afbe-8ea4df2fe01f",3 "startDate": "2024-08-06",4 "endDate": "2024-08-06",5 "frcs": [6 0,7 1,8 2,9 3,10 4,11 512 ],13 "hours": [14 7,15 816 ],17 "name": "Amsterdam",18 "dataTypes": [19 "NETWORK_LENGTH",20 "CONGESTION_LEVEL",21 "FREE_FLOW_SPEED",22 "TRAVEL_TIME",23 "SPEED"24 ],25 "status": "DONE",26 "createdAt": "2025-08-26T15:10:26.331897",27 "price": 1,28 "archived": false29}
Response structure
This response will return a structured object containing metadata about the report. The following tables describe the main fields in the response.
Metadata structure
Field | Description |
---|---|
| Unique identifier for the report. |
| Start date of the report in |
| End date of the report in |
| Set of integers representing the FRCS (Functional Road Classes). |
| Set of integers representing the hours included in the report. |
| Name of the report. |
| List of data types.
Possible values:
|
| Current status of the report.
Possible values: |
| Creation date of the report in ISO 8601 format. |
| Token price associated with the report. |
| Indicates whether the report is archived. |
Errors
If the supplied parameters are invalid or an internal error occurs, the API returns an error response in the requested format.
Response codes
Code | Meaning & possible causes |
---|---|
| OK |
| Bad Request |
| Unauthorized |
| Forbidden |
| Not Found |