"aligned" data feed?

Hi,
I’m trying to use the EmonCMS data feeds (to create my own dashboard system). I read from Emoncms - site api for documentation

I’m able to use the “last data” options, but for some reason the data.json feed doesn’t seem to work:

https://emoncms.org/feed/data.json?apikey=MYREADKEY&id=175125&start=1505232337&end=1505750739
returns just “false”, whilst
https://emoncms.org/feed/data.json?mode=daily&apikey=MYREADKEY&id=175125&start=1505232337&end=1505750739
returns just “[]”

Feed id 175125 is valid (and is the cumulative use_kwh one). Other feed IDs show the same behaviour regardless…

Am I missing something?

Best,

Fabre

The trick (rather annoyingly) is to add 3 more zeros to each timestamp as the api’s use unixtime expressed as milliseconds since epoch. eg

https://emoncms.org/feed/data.json?apikey=MYREADKEY&id=175125&start=1505232337000&end=1505750739000