moment unix timestamp and include it in the next call as query param after_timestamp to fetch the next page of records. If you are persisting records in your own application, you can obviously stop fetching for more records when the last record's moment unix timestamp exceeds the record(s) you already have.curl --location --request GET 'https://api.mithra.network/public/v1/sensor//readings?after_timestamp=1751883202' \
--header 'Authorization: Bearer <token>'{
"readings": [
{
"errors": [
"Some error",
"Another error"
],
"measurements": [
{
"label": "Water level",
"measured": 29.7,
"state": null,
"threshold": 26,
"title": "85% tot vol"
},
{
"label": "Water level (raw)",
"measured": 29.7,
"state": true,
"threshold": 26,
"title": null
}
],
"moment": 1751877546,
"moment_string": "2025-07-07 08:39:06.160Z"
}
]
}