Export Trip Summary as GPX

This API helps you to export trip data in the .gpx format.

Export Trip Summary as GPX

GET https://api.roam.ai/v1/api/trips/export/

Query Parameters

NameTypeDescription

trip_id

string

trip_id required to export its data in gpx format. E.g.- 5fdc5470203bda0000abacc0

type

string

format to be given in which data need to be exported. E.g.- gpx

Headers

NameTypeDescription

Api-key

string

Auth-key E.g.- 083591a3392c483e838f66ac788126eb

{
    "status": true,
    "msg": "Success.",
    "code": 200,
    "data": {
        "download_url": "https://geospark-gpx-files.s3.amazonaws.com/5fdc5470203bda0000abacc0.gpx"
    }
}

Sample Request

curl --location --request GET 'https://api.roam.ai/v1/api/trips/export/?trip_id=5f44a2fce289b825457e5497&type=gpx' \
--header 'Api-key: <API-KEY>'

Last updated