Inicia sesión en tu cuenta de Altimeter Cloud
¿No tienes cuenta? Crear una
Te enviaremos un enlace de confirmación por correo. Revisa tu carpeta de spam si no lo recibes.
¿Ya tienes cuenta? Iniciar sesión
Actualización de firmwarev1.2
Carga de registro de vuelov1.1
Portal USB en Líneav1.0
Configurador WiFi USB en líneav1.1
3D parts toolv1.0
Calculadora de orificios de ventilaciónv1.0
API de Altimeter Cloudv1.0
Predictor de altitudv1.0
Calculadora de resistencia del tubov1.0
Calculadora de descensov1.0
Calculadora de carga de eyecciónv1.0
programador web ESPv1.0
Calculadora de aleteo de aletasv1.0
Actualización de firmwarev1.2
Carga de registro de vuelov1.1
Verificación del registro de vuelov1.1
Disenador de piezas laserv1.0
Portal USB en Líneav1.0
Configurador WiFi USB en líneav1.1
Calculadora de velocidad de rielv1.0
Calculadora de derivav1.0
Calculadora de visibilidadv1.0CSV flight logs produced by our altimeters include a SHA-256 verification hash. This API verifies whether a flight log is genuine and exactly as written by the altimeter, or whether it has been modified.
The hash is generated inside the altimeter by AES-256 encrypted firmware — making it computationally infeasible to forge. Both the flight data and header settings must be unchanged to pass verification.
This currently supports the Nano Altimeter, with support for all devices coming soon. You can also verify logs using the upload tool.
csv
POST the entire CSV flight log, unedited, to the endpoint above. The CSV content should be sent under the parameter csv.
The API returns JSON. On success you will receive the verified flight details:
{
"success": true,
"log_lines": 825,
"apogee": 2.54,
"apogee_time": 826,
"flight_unique_id": "e1eb3e800d780a0b69670f03a88e2f45c592b6e79065fc08cf83241530a60c5a"
}
If the flight log fails verification or the request is empty:
{
"success": false,
"log_lines": 825,
"error": {
"code": "400",
"message": "Flight log failed verification (STEP=SHA256)"
}
}
{
"success": false,
"error": {
"code": "412",
"message": "No flight log supplied as a POST using the parameter csv="
}
}
| Field | Type | Description |
|---|---|---|
success | boolean | Whether the flight log passed SHA-256 verification |
log_lines | integer | Number of data lines in the flight log |
apogee | float | Peak altitude in metres |
apogee_time | integer | Time of apogee in milliseconds |
flight_unique_id | string | SHA-256 verification hash from the flight log |
error.code | string | HTTP-style error code (on failure) |
error.message | string | Human-readable error description (on failure) |
Test the API live. We've pre-loaded a sample Nano V1 flight log below — click Run to verify it, or edit the data to test a failed verification.
csv