Discover/wiley.com API
live

wiley.com APIwiley.com

Search Wiley.com books by keyword and locale, retrieve editions and formats, and fetch ISBN, page count, and descriptions via a simple REST API.

Endpoints
2
Updated
4mo ago
Try it
Page number for pagination.
Search keyword (e.g. 'Nursing', 'Calculus').
Locale for search results (e.g. 'en-us', 'en-gb').
api.parse.bot/scraper/902d00c5-40f9-4a46-8ec2-cd409265ab53/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/902d00c5-40f9-4a46-8ec2-cd409265ab53/search_books?page=1&query=Calculus&locale=en-us' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalclick to expand

Search for books on Wiley.com by keyword. Returns paginated results including title, author, edition, formats, pricing, and product URLs.

Input
ParamTypeDescription
pageintegerPage number for pagination.
queryrequiredstringSearch keyword (e.g. 'Nursing', 'Calculus').
localestringLocale for search results (e.g. 'en-us', 'en-gb').
Response
{
  "type": "object",
  "fields": {
    "items": "array of book objects with keys: title, author, edition, publish_date, formats, price, currency, item_id, product_url, image_url",
    "query": "string echoed search query",
    "locale": "string echoed locale",
    "current_page": "integer current page number",
    "total_results": "integer total number of matching results"
  },
  "sample": {
    "data": {
      "items": [
        {
          "price": "54.00",
          "title": "Calculus: Single and Multivariable, 8th Edition",
          "author": "Deborah Hughes-Hallett, Andrew M. Gleason, William G. McCallum",
          "edition": "8",
          "formats": [
            "E-Book",
            "WileyPLUS",
            "Knewton Alta",
            "Print"
          ],
          "item_id": "00098515",
          "currency": "USD",
          "image_url": "https://media.wiley.com/product_data/coverImage300/50/11196965/1119696550.jpg",
          "product_url": "https://www.wiley.com/en-us/Calculus%3A+Single+and+Multivariable%2C+8th+Edition-p-00098515",
          "publish_date": "nov 2020"
        }
      ],
      "query": "Calculus",
      "locale": "en-us",
      "current_page": 1,
      "total_results": 0
    },
    "status": "success"
  }
}

About the wiley.com API

The Wiley.com API provides 2 endpoints for searching the Wiley book catalog and retrieving detailed product metadata. Use search_books to query titles by keyword across different locales and get back paginated results with author, edition, pricing, available formats, and product URLs. Use get_book_metadata to pull ISBN, page count, and full description HTML from any Wiley product page URL.

Search the Wiley Catalog

The search_books endpoint accepts a required query string and optional locale (e.g. en-us, en-gb) and page parameters. Each item in the items array includes title, author, edition, publish_date, formats, price, currency, item_id, product_url, and image_url. The total_results field tells you the full result count so you can page through large queries. Locale affects which regional catalog is searched, which matters when pricing or availability differs by market.

Retrieve Book Metadata

The get_book_metadata endpoint takes a full Wiley product URL — typically sourced from product_url in search_books results — and returns isbn, pages, and description. The description field contains HTML markup as found on the product page. Note that isbn, pages, and description may be null if the data is absent on that particular product page; this varies by title.

Data Shape and Coverage

The search results cover books across Wiley's catalog including academic, professional, and technical titles. Format details per title (e.g. hardcover, paperback, e-book) appear in the formats array within each search result. The two endpoints are designed to be used together: search to discover titles and collect product_url values, then call get_book_metadata per URL to enrich with ISBN and page count for downstream cataloging or comparison workflows.

Common use cases
  • Build a book price tracker for Wiley titles across different locales using price and currency fields
  • Aggregate ISBN and page count data for academic reading list tools using get_book_metadata
  • Discover all available formats (hardcover, ebook, paperback) for a given title from formats in search results
  • Feed a course materials database with Wiley textbook metadata including author, edition, and publish date
  • Monitor new editions of specific titles by periodically querying search_books with a title keyword and comparing edition values
  • Populate a library catalog with structured Wiley book records including descriptions and cover images
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Wiley have an official developer API?+
Wiley offers Wiley Online Library APIs for journal article and research content access (https://onlinelibrary.wiley.com/library-info/resources/text-and-datamining), but there is no publicly documented developer API for the Wiley.com book store catalog specifically.
What does `search_books` return beyond just titles?+
Each result object includes title, author, edition, publish_date, formats, price, currency, item_id, product_url, and image_url. The formats field lists available purchase formats for that title. Pagination is supported via the page parameter, and total_results tells you how many matching records exist across all pages.
Are `isbn`, `pages`, and `description` always present in `get_book_metadata` responses?+
No. All three fields — isbn, pages, and description — may return null if the data does not appear on the specific product page. Availability varies by title, so downstream code should handle null values for all three fields.
Does the API cover Wiley journal articles or research papers?+
Not currently. The API covers the Wiley.com book catalog — search results and book product page metadata. Journal articles and Wiley Online Library content are not included. You can fork this API on Parse and revise it to add an endpoint targeting journal or article data.
Can I retrieve all editions of a specific book title?+
You can retrieve multiple editions by running search_books with a specific title as the query string. Results include an edition field per item. However, there is no dedicated endpoint for listing all editions of a single title by ID — the API returns whatever the search results surface. You can fork this API on Parse and revise it to add a dedicated editions-listing endpoint.
Page content last updated . Spec covers 2 endpoints from wiley.com.
Related APIs in EducationSee all →
barnesandnoble.com API
Search for books and discover detailed information including metadata, pricing, and customer reviews from Barnes & Noble's catalog. Browse bestsellers by category and access comprehensive book details to find your next read or compare prices and ratings.
bookshop.org API
Search for books by keyword or category, view detailed information like metadata and pricing, discover curated reading lists, and find independent bookstores near you on Bookshop.org. Filter results by format and browse new releases to discover your next read.
alibris.com API
Search for books and retrieve seller listings from Alibris. Access detailed book information including title, author, condition, pricing, and seller data across the platform.
valorebooks.com API
Search for books and instantly compare prices across ValoreBooks' inventory while getting real-time buyback quotes for books you want to sell. Access detailed book information including pricing and resale values to find the best deals on textbooks and used books.
booksrun.com API
Search millions of books and get instant buyback quotes on BooksRun. Browse bestsellers and categories, view detailed book information, and check condition guidelines to understand buyback prices and acceptance criteria.
springer.com API
Search and retrieve metadata for millions of articles, books, and journals from Springer Nature's research library using DOI or ISBN lookups, with powerful filtering and pagination options. Get detailed information about academic publications including journal details, article metadata, and book information to power your research tools and discovery applications.
abebooks.com API
Search for books by title or ISBN, view detailed listing information, and discover available sellers offering new and used copies. Find the best deals by comparing prices across multiple sellers and browsing their inventory.
bookwalker.jp API
Search and browse Japanese ebooks including manga and light novels on BookWalker Japan, with access to book details, rankings, category listings, and autocomplete suggestions. Discover new titles through curated rankings and explore the full catalog by category.