Skip to content

Get library book

GET
/api/library/{id}

Retrieve a single organized book with its files

Parameters

Path Parameters

id*

Book UUID

Type
string
Required
Format
"uuid"

Responses

Book with files

application/json
JSON
{
  
"id": "string",
  
"status": "string",
  
"title": "string",
  
"author": "string",
  
"isbn10": "string",
  
"isbn13": "string",
  
"publisher": "string",
  
"publishedYear": 0,
  
"language": "string",
  
"description": "string",
  
"coverUrl": "string",
  
"coverPath": "string",
  
"pageCount": 0,
  
"series": "string",
  
"seriesIndex": 0,
  
"genres": [
  
  
"string"
  
],
  
"tags": [
  
  
"string"
  
],
  
"hardcoverBookId": 0,
  
"hardcoverEditionId": 0,
  
"createdBy": "string",
  
"possibleDuplicateOf": "string",
  
"approvedAt": "string",
  
"createdAt": "string",
  
"updatedAt": "string",
  
"files": [
  
  
{
  
  
  
"id": "string",
  
  
  
"format": "string",
  
  
  
"originalName": "string",
  
  
  
"fileSize": "string",
  
  
  
"storagePath": "string",
  
  
  
"checksum": "string"
  
  
}
  
],
  
"uploader": {
  
  
"id": "string",
  
  
"label": "string"
  
},
  
"progress": {
  
  
"percentage": 0,
  
  
"status": "string",
  
  
"lastDevice": "string",
  
  
"lastTimestamp": 0,
  
  
"startedAt": "string",
  
  
"finishedAt": "string",
  
  
"pausedAt": "string",
  
  
"manuallySet": true,
  
  
"externallySet": true
  
}
}

Samples