We have received multiple requests to implement ability to do free text search in content/memo of actions across EOS History.
Example:
curl -d '{"data":"BlockOne", "from_date": "2019-01-27" ,"to_date":"2019-01-27"}' -X POST https://api.eostribe.io/v1/history/find_actions
Would return a number of transactions that took place on 2019-01-27 with a sub-string of "BlockOne" in it's memo.
Alternatively user could use last param to specify last days: 2d, hours: 12h, etc:
curl -d '{"data":"BlockOne", "last":"2d"}' -X POST https://api.eostribe.io/v1/history/find_actions
Alternatively you could simply make call without date range:
curl -d '{"data":"BlockOne" }' -X POST https://api.eostribe.io/v1/history/find_actions
In which case the last 1000 of records are returned.
All response is capped to 1000 records max for endpoint performance.
The applications for this new endpoint are many and we hope community will find this new endpoint useful.
Website | Medium | Github | Telegram | Twitter