Map Matching API

Hello, how i can get map matched points with time? I’m using this endpoint with these params:
/match?vehicle=car&type=json&points_encoded=false&details=time

with GPX points like that:

   <trkpt lat="42.68591044149316" lon="23.330615758895878">
        <ele>547.2</ele>
		<time>2022-11-24T18:39:09Z</time>
    </trkpt>
    <trkpt lat="42.68596167455766" lon="23.33080887794495">
        <ele>547.0</ele>
		<time>2022-11-24T18:39:39Z</time>
    </trkpt>

but in the response I have points only with coordinates and time like this:

"details": {

                "time": [
                    [
                        0,
                        1,
                        94
                    ],
                    [
                        1,
                        2,
                        94
                    ],

can I get matched points with coordinates and time?