This endpoint returns information about a specific version.
GET https://thingify.tools/api/v1/version/[id]
type ApiVersion = { id: string; firmwareId: string; version: string; changelog: string; tag: string; downloadCount: number; createdAt: number | null; files: ApiVersionFile[];}; type ApiVersionFile = { id: string; fileName: string; fileSize: number; createdAt: number | null; downloadUrl: string;};
{ "id": "C5hQeF5ykUKjF-T73A7hN", "firmwareId": "4HcPVPLN7j7Un-azeE0CE", "version": "1.0.0", "changelog": "the 1.0", "tag": "archive", "downloadCount": 1500, "createdAt": 1731554678000, "files": [ { "id": "zIVHF2H21-isGluHwqX2c", "fileName": "file.zip", "fileSize": 995, "createdAt": 1731563061000, "downloadUrl": "https://thingify.tools/files/blob/4HcPVPLN7j7Un-azeE0CE/C5hQeF5ykUKjF-T73A7hN/zIVHF2H21-isGluHwqX2c?name=file.zip" } ]}