GET api/book/titleinfo/{ean}

V1 - Gets the title info for a book, as is it available in the Yindo Aggregator (which is kept up to date based on the CB Onix feed)

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ean

EAN

string

Required

Body Parameters

None.

Response Information

Resource Description

TitelInfo
NameDescriptionTypeAdditional information
EAN

The EAN

string

None.

Title

The Title

string

None.

SubTitle

The subtitle, if any.

string

None.

Series

The series this title belongs to, if any.

string

None.

NumberInSeries

The number within the series this title belongs to, if any.

string

None.

Medium

The medium for this book. Possible values include (but are not limited to):

  • audio download
  • bladmuziek
  • boek
  • cd-rom
  • dvd
  • eBoekbundel
  • e-book
  • e-book text
  • ePub
  • hardback
  • onbekend
  • paperback
  • PDF

string

None.

LanguageCode

The languagecode for this title.

string

None.

PublicationDate

The publicationdate for this title.

string

None.

NumberOfPages

The number of pages this title contains.

string

None.

Description

A description for this title

string

None.

ShortDescription

A short description for this title

string

None.

Edition

The edition for this title

string

None.

Width

The physical width in mm

decimal number

None.

Height

The physical height in mm

decimal number

None.

Authors

A list of authors connected to this title. The list is separated by the pipe symbol.

string

None.

Editors

A list of editors connected to this title. The list is separated by the pipe symbol.

string

None.

Illustrators

A list of illustrators connected to this title. The list is separated by the pipe symbol.

string

None.

NUR

The NUR code for this title.

string

None.

Price

The price for this title.

integer

None.

Publisher

The publisher for this title.

string

None.

PublisherImprint

The publishers imprint for this title, if any.

string

None.

Category

The main category for this title.

string

None.

SubCategory

The subcategory for this title.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "EAN": "sample string 1",
  "Title": "sample string 2",
  "SubTitle": "sample string 3",
  "Series": "sample string 4",
  "NumberInSeries": "sample string 5",
  "Medium": "sample string 6",
  "LanguageCode": "sample string 7",
  "PublicationDate": "sample string 8",
  "NumberOfPages": "sample string 9",
  "Description": "sample string 10",
  "ShortDescription": "sample string 11",
  "Edition": "sample string 12",
  "Width": 13.0,
  "Height": 14.0,
  "Authors": "sample string 15",
  "Editors": "sample string 16",
  "Illustrators": "sample string 17",
  "NUR": "sample string 18",
  "Price": 19,
  "Publisher": "sample string 20",
  "PublisherImprint": "sample string 21",
  "Category": "sample string 22",
  "SubCategory": "sample string 23"
}

text/javascript

Sample:
{"EAN":"sample string 1","Title":"sample string 2","SubTitle":"sample string 3","Series":"sample string 4","NumberInSeries":"sample string 5","Medium":"sample string 6","LanguageCode":"sample string 7","PublicationDate":"sample string 8","NumberOfPages":"sample string 9","Description":"sample string 10","ShortDescription":"sample string 11","Edition":"sample string 12","Width":13.0,"Height":14.0,"Authors":"sample string 15","Editors":"sample string 16","Illustrators":"sample string 17","NUR":"sample string 18","Price":19,"Publisher":"sample string 20","PublisherImprint":"sample string 21","Category":"sample string 22","SubCategory":"sample string 23"}

application/xml, text/xml

Sample:
<TitelInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VersionedVendorApi.Models">
  <Authors>sample string 15</Authors>
  <Category>sample string 22</Category>
  <Description>sample string 10</Description>
  <EAN>sample string 1</EAN>
  <Edition>sample string 12</Edition>
  <Editors>sample string 16</Editors>
  <Height>14</Height>
  <Illustrators>sample string 17</Illustrators>
  <LanguageCode>sample string 7</LanguageCode>
  <Medium>sample string 6</Medium>
  <NUR>sample string 18</NUR>
  <NumberInSeries>sample string 5</NumberInSeries>
  <NumberOfPages>sample string 9</NumberOfPages>
  <Price>19</Price>
  <PublicationDate>sample string 8</PublicationDate>
  <Publisher>sample string 20</Publisher>
  <PublisherImprint>sample string 21</PublisherImprint>
  <Series>sample string 4</Series>
  <ShortDescription>sample string 11</ShortDescription>
  <SubCategory>sample string 23</SubCategory>
  <SubTitle>sample string 3</SubTitle>
  <Title>sample string 2</Title>
  <Width>13</Width>
</TitelInfo>