Per Direction Arrival Estimates
Vehicles API not returning vehicles for a route
CORS Support
Can't find agency ID for Playa Vista
No data - Harvard shuttle - just one route (no data sometimes/large periods, and then it comes back - see example)
How is the data from the segments endpoint encoded?
Empty Data Array
Arrival Estimate Question
Stops by specific route
Real Time/GTFS discrepancies- Columbia University
429 Too Many Requests
Reliability Problems
For arrival estimates
too many requests
Getting 429 "Too many requests"
Data Object is Empty
Date Range Parameter
RTS agency Not Appearing
Ability to request a single vehicle?
400 Bad Request for routes, stops, and vehicles with agency Id = 48
Agency 367 (C-TRAN) not recognized
The API appears to be down right now
data
CCRTA Missing
Vehicles segment_id
400 Bad Request when requesting routes, stops, or arrival times and limiting by agency
400 Bad Request Or StopID Not Recognized
Attribute Clarifications
GTFS, mashape identifiers
Empty variables in API console
Method Not Allowed
To utilize unirest for node.js install the the npm module:
$ npm install unirest
After installing the npm package you can now start simplifying requests like so:
var unirest = require('unirest');
unirest.("https://transloc-api-1-2.p.rapidapi.com") .header("X-RapidAPI-Key", "undefined") .header("Content-Type", "application/x-www-form-urlencoded") .end(function (result) { console.log(result.status, result.headers, result.body); });