How to HERE route matching v8 service transactions are counted

Hello,

HERE is a sample request to HERE Route Matching v8 service and a simplified explanation of the transactions count projecting on the same request for your understanding and reference.

| | | |
| --- | --- | --- |
| Item | Info | Remarks |
| Route matching v8 request | POST url https://routematching.hereapi.com/v8/match/routelinks?routeMatch=1&mode=fastest;car;traffic:disabled&attributes=SPEED_LIMITS_FCn(FROM_REF_SPEED_LIMIT,TO_REF_SPEED_LIMIT),LINK_ATTRIBUTE_FCn(ISO_COUNTRY_CODE)&apiKey={{HERE_APIKey}} POST body latitude,longitude,speed_kmh 47.188005,39.620847,8 47.18803,39.620755,9 47.188037,39.620688,9 POST Man reference | |
| Transactions count | Route Matching transaction = 1 transaction / request + Speed_Limit_FCn = (1 * no of tiles retrieved) transaction(s) / request + Link_Attribute_FCn = (1 * no of tiles retrieved) transaction(s) / request | For every map layer attribute requested the transactions count by the number of tiles required to retrieve all the information on the matched route. If the matched route falls in 5 tiles and user requested 3 map layers attributes for example: + SPEED_LIMITS_FCn + ROAD_GEOM_FCn + ROAD_ROUGHNESS_FCn Then it results in (3*5) transactions PLUS the main route match request transaction. |