Skip to content

GET /v1/firmware/[id]

This endpoint returns information about a specific firmware.

Request

GET https://thingify.tools/api/v1/firmware/[id]

Response Schema

type ApiFirmware = {
id: string;
name: string;
description: string;
image: string;
createdAt: number | null;
updatedAt: number | null;
versions: ApiFirmwareVersion[];
};
type ApiFirmwareVersion = {
id: string;
version: string;
changelog: string;
downloadCount: number;
createdAt: number | null;
};

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,
"versions": [
{
"id": "C5hQeF5ykUKjF-T73A7hN",
"version": "1.0.0",
"changelog": "the 1.0",
"downloadCount": 1500,
"createdAt": 1731554678000
}
]
}