cURL
curl --request POST \ --url https://api.infera.org/daily_points \ --header 'Content-Type: application/json' \ --header 'api_key: <api-key>' \ --data '{ "node_name": "<string>", "last_days": 123 }'
[ { "date": "<any>", "points": 123 } ]
Endpoint to fetch daily points for a specific node by making a request to the storage service.
:param request: Request payload containing node_name and last_days. :return: List of daily points for the specified node fetched from the storage service.
Successful Response