Get trail
GET
/api/v1/trail/{id}
const url = 'https://example.com/api/v1/trail/example';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/trail/exampleRetrieves a trail by ID
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
string
Query Parameters
Section titled “Query Parameters”expand
string
share
string
Responses
Section titled “Responses”Trail
Not Found
Internal Server Error