# ISBN Book Metadata Catalog Enrichment

**Use case:** 

Look up titles, authors, publishers, publication dates, cover images, and descriptions for a list of ISBN-10 or ISBN-13 values.

## Input

```json
{
  "isbns": [
    "9780143127741",
    "9780061120084",
    "0451524934"
  ],
  "includeGoogleBooks": true,
  "skipNotFound": false,
  "outputFields": [
    "isbn13",
    "isbn10",
    "title",
    "authors",
    "publisher",
    "publishDate",
    "pageCount",
    "subjects",
    "description",
    "language",
    "coverImageUrl",
    "googleBooksUrl",
    "openLibraryUrl",
    "googleRating",
    "googleRatingsCount",
    "inputIsbn",
    "source",
    "error"
  ]
}
```

## Output

```json
{
  "isbn13": {
    "label": "ISBN-13"
  },
  "isbn10": {
    "label": "ISBN-10"
  },
  "title": {
    "label": "Title"
  },
  "authors": {
    "label": "Authors"
  },
  "publisher": {
    "label": "Publisher"
  },
  "publishDate": {
    "label": "Publish Date"
  },
  "pageCount": {
    "label": "Pages",
    "format": "number"
  },
  "subjects": {
    "label": "Subjects"
  },
  "description": {
    "label": "Description"
  },
  "language": {
    "label": "Language"
  },
  "coverImageUrl": {
    "label": "Cover",
    "format": "image"
  },
  "googleBooksUrl": {
    "label": "Google Books",
    "format": "link"
  },
  "openLibraryUrl": {
    "label": "Open Library",
    "format": "link"
  },
  "googleRating": {
    "label": "Rating",
    "format": "number"
  },
  "googleRatingsCount": {
    "label": "Ratings",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [ISBN Book Metadata Lookup](https://apify.com/automation-lab/isbn-lookup) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/isbn-lookup) to learn more, explore other use cases, and run it yourself.