Get GeoJSON Audio Track

Get the GPS track for an audio file in GeoJSON format.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

API Library Examples

from fulcrum import Fulcrum
import json
fulcrum = Fulcrum('{token}')

tracks = fulcrum.audio.track('{id}', 'geojson')

with open('track.geojson', 'w') as f:
  json.dump(tracks, f)
const { Client } = require('fulcrum-app');
const fs = require('fs');
const client = new Client('{token}');

client.audio.track('{id}', 'geojson')
  .then(track => fs.writeFile('track.geojson', track, function () {
    console.log('track downloaded!');
  }))
  .catch(err => console.log(err));
require 'fulcrum'

client = Fulcrum::Client.new('{token}')

track = client.audio.track('{id}', 'geojson')

File.open('track.geojson','w') do |f|
  f.write(track)
end
Path Params
string
required

The unique identifier of the audio file.

Query Params
string

Set value to points to fetch tracks as GeoJSON points

Responses

Language
Credentials
Header
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json