Skip to content

GET /v1/firmware

This endpoint returns information about the firmware running on the device.

Request

GET https://thingify.tools/api/v1/firmware

Response Schema

type ApiFirmware = {
id: string;
name: string;
description: string;
image: string;
createdAt: number | null;
updatedAt: number | null;
totalDownloads: number;
}[];

Response Example

[
{
"id": "4HcPVPLN7j7Un-azeE0CE",
"name": "test firmware 2",
"description": "test test test\r\n\r\ntest test test",
"image": "https://thingify.tools/files/images/firmware/4HcPVPLN7j7Un-azeE0CE.png",
"createdAt": 1731554151000,
"updatedAt": 1731613517000,
"totalDownloads": 1500
},
{
"id": "OX90TdPClZQ_zM391IHFf",
"name": "test firmware",
"description": "test",
"image": "https://thingify.tools/files/images/firmware/OX90TdPClZQ_zM391IHFf.png",
"createdAt": 1731554138000,
"updatedAt": null,
"totalDownloads": 0
}
]