Skip to content

HTTP API Reference

This document provides a detailed reference for the HTTP API endpoints available in the Velovision Rearview system. The API is designed to facilitate communication with the server for retrieving system information, managing video files, and monitoring device status.


Quick Reference Table

FunctionalityHTTP MethodPathExample curl Command
Basic test connectionGET/curl http://velovision-rearview.local:8000
Battery state of charge (%)GET/battery-percentcurl http://velovision-rearview.local:8000/battery-percent
Battery cell voltage (mV)GET/battery-millivoltscurl http://velovision-rearview.local:8000/battery-millivolts
CPU temperature (°C)GET/cpu-tempcurl http://velovision-rearview.local:8000/cpu-temp
External power statusGET/is-chargingcurl http://velovision-rearview.local:8000/is-charging
List local videosGET/list-local-videoscurl http://velovision-rearview.local:8000/list-local-videos
Delete all videosGET/wipe-local-videoscurl http://velovision-rearview.local:8000/wipe-local-videos
Download videoGET/download-videocurl -o log0001.mp4 http://velovision-rearview.local:8000/download-video?/opt/velovision/standalone_videos/log0001.mkv
Download thumbnailGET/download-thumbnailcurl -o log0001.jpg http://velovision-rearview.local:8000/download-thumbnail?/opt/velovision/standalone_videos/log0001_1713198307.jpg

Detailed Documentation

1. Basic Test Connection

Tests the connection to the server.

Path/
HTTP MethodGET
Response"Welcome to Velovision Rearview", 200

Example curl Command:

Terminal window
curl http://velovision-rearview.local:8000

2. Battery State of Charge

Retrieves the battery’s state of charge as a percentage.

Path/battery-percent
HTTP MethodGET
ResponseSuccess: Percentage (integer), 200.
Failure: "Failed to get battery state of charge", 500.
  • The percentage is rounded to the nearest integer (e.g., 87).
  • The value may exceed 100.

Example curl Command:

Terminal window
curl http://velovision-rearview.local:8000/battery-percent

3. Battery Cell Voltage

Retrieves the battery cell voltage in millivolts.

Path/battery-millivolts
HTTP MethodGET
ResponseSuccess: Voltage (integer, mV), 200.
Failure: "Failed to get battery voltage", 500.
  • The voltage is rounded to the nearest millivolt (e.g., 3845).

Example curl Command:

Terminal window
curl http://velovision-rearview.local:8000/battery-millivolts

4. CPU Temperature

Retrieves the CPU temperature in degrees Celsius.

Path/cpu-temp
HTTP MethodGET
ResponseSuccess: Temperature (integer), 200.
Failure: "Failed to read CPU temperature", 500.
  • The temperature is rounded to the nearest integer (e.g., 50).

Example curl Command:

Terminal window
curl http://velovision-rearview.local:8000/cpu-temp

5. External Power Status

Checks if the device is connected to external power (e.g., USB-C).

Path/is-charging
HTTP MethodGET
ResponseSuccess: Boolean (true or false), 200.
Failure: "Failed to get charging status", 500.
  • true: USB-C power is connected and supplying power.
  • false: USB-C power is not connected.

Example curl Command:

Terminal window
curl http://velovision-rearview.local:8000/is-charging

6. List Local Videos

Retrieves a list of standalone video files stored on the server, including their paths and last update times.

Path/list-local-videos
HTTP MethodGET
ResponseJSON array of video metadata, 200.

Example Response:

[
{
"path": "/opt/standalone_videos/log0001.mkv",
"date_updated": "1713198307"
},
...
]

Example curl Command:

Terminal window
curl http://velovision-rearview.local:8000/list-local-videos

7. Delete All Videos

Deletes all standalone video and thumbnail files stored on the server.

Path/wipe-local-videos
HTTP MethodGET
ResponseJSON object with status and message, 200.
Failure: JSON object with error message, 500.
  • Deletes all video and thumbnail files in the /opt/velovision/standalone_videos directory.
  • Returns the number of files deleted upon success.

Example Response (Success):

{
"status": "success",
"message": "Deleted 10 video/image files."
}

8. Download Video

Downloads a specified video file in .mp4 format.

Path/download-video
HTTP MethodGET
ResponseVideo file (.mp4), 200.
  • The query string (after ?) must include the full path to the .mkv video file on the server, as provided by the /list-local-videos endpoint.
  • The video is converted to .mp4 format before being sent to the client.
  • The .mp4 file is deleted from the server immediately after being sent.

Example curl Command:

Terminal window
curl -o log0001.mp4 http://velovision-rearview.local:8000/download-video?/opt/velovision/standalone_videos/log0001.mkv

9. Download Thumbnail

Downloads the thumbnail image for a given video.

Path/download-thumbnail
HTTP MethodGET
ResponseThumbnail image (.jpg), 200.
  • The query string (after ?) must include the full path to the thumbnail file on the server.
  • The thumbnail file name matches the video file name, with a timestamp appended.

Example curl Command:

Terminal window
curl -o log0001.jpg http://velovision-rearview.local:8000/download-thumbnail?/opt/velovision/standalone_videos/log0001_1713198307.jpg

Error Handling

If the server receives a GET request with an invalid path, it responds with:

  • Message: "Unknown GET request"
  • Status Code: 501