Discover/Wiley API
live

Wiley APIwiley.com

Search Wiley's book catalog and fetch ISBN, page count, and article metadata including DOI, abstract, and authors via 3 structured endpoints.

This API takes change requests — .
Endpoint health
verified 2d ago
search_books
get_book_metadata
get_article_metadata
3/3 passing latest checkself-healing
Endpoints
3
Updated
9d ago

What is the Wiley API?

The Wiley API exposes 3 endpoints covering Wiley.com's book catalog and Wiley Online Library research articles. Use search_books to run paginated keyword searches against Wiley's full catalog, retrieving titles, authors, editions, formats, pricing, and product URLs. Companion endpoints fetch detailed book metadata (ISBN, page count, description) and article metadata (DOI, abstract, journal, volume, author list) for individual pages.

This call costs1 credit / call— charged only on success
Try it
Page number for pagination (1-based).
Search keyword (e.g. 'Nursing', 'Calculus', 'Python').
Locale for search results. Accepted values include '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.
Call it over HTTPgrab 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 · 3 totalmissing one? ·

Full-text search over Wiley.com's book catalog. Returns paginated results including title, author, edition, available formats, pricing, and product URLs. Results include both journals and books depending on the query. Pagination is page-number based.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-based).
queryrequiredstringSearch keyword (e.g. 'Nursing', 'Calculus', 'Python').
localestringLocale for search results. Accepted values include '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": [
            "Print",
            "Knewton Alta",
            "E-Book",
            "WileyPLUS"
          ],
          "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 API

Book Search

The search_books endpoint accepts a required query string and an optional locale parameter (en-us or en-gb) to surface region-appropriate results. Each item in the response items array includes title, author, edition, publish_date, formats, price, currency, item_id, product_url, and image_url. Pagination is page-number based via the page parameter, and the response echoes back current_page, total_results, query, and locale so you can iterate through large result sets.

Book Metadata

The get_book_metadata endpoint takes a full Wiley product URL — typically sourced from the product_url field returned by search_books — and returns isbn, pages, and description (as HTML). All three fields may be null if the product page does not carry that information, so callers should handle null values defensively.

Article Metadata

The get_article_metadata endpoint targets Wiley Online Library article URLs (e.g. https://onlinelibrary.wiley.com/doi/10.1002/...). It returns doi, title, journal, volume, number, pages, year, author (an array of name strings), and abstract. Volume and issue number may be null for articles that lack those fields, such as early-view or preprint-style publications.

Reliability & maintenanceVerified

The Wiley API is a managed, monitored endpoint for wiley.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when wiley.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official wiley.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2d ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build an academic reading list tool that searches Wiley for textbooks by subject and retrieves ISBNs for library system imports.
  • Aggregate Wiley article metadata — DOI, journal, volume, abstract — into a research citation manager.
  • Compare pricing and available formats across editions of a Wiley title using search_books results.
  • Power a course materials recommendation engine by querying Wiley's catalog with discipline keywords and locale targeting.
  • Monitor publication dates and new editions for specific authors or topics using paginated search_books output.
  • Extract structured article author lists from Wiley Online Library for co-authorship network analysis.
  • Populate a library catalog with Wiley book descriptions and page counts fetched via get_book_metadata.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. 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 does not offer a broadly available public developer API for its book catalog or Online Library article metadata. Wiley does run the Wiley Online Library platform and participates in standard CrossRef DOI resolution, but there is no self-serve API key program for the catalog and product-page data exposed by these endpoints.
What does `get_book_metadata` return beyond what `search_books` already includes?+
search_books returns catalog-level fields: title, author, edition, formats, price, and product URL. get_book_metadata goes to the individual product page and adds isbn, pages (page count), and description (HTML), none of which appear in search results. ISBN and page count may be null if the product page omits them.
Does the API cover Wiley journal subscription data or full-text article PDFs?+
No. The API returns article metadata fields — DOI, abstract, authors, journal, volume, issue, year — but does not return full article text or PDF content. It also does not expose journal subscription status or access entitlements. You can fork this API on Parse and revise it to add an endpoint targeting additional page sections if your use case requires other metadata fields.
How does locale affect `search_books` results?+
The locale parameter accepts en-us or en-gb. This filters results toward region-specific pricing (the price and currency fields reflect the locale) and may surface different product availability or editions. Omitting locale lets the endpoint apply a default; explicitly passing a locale is recommended when currency accuracy matters.
Does the API cover Wiley chapters, datasets, or non-book content types beyond journals and books?+
The API covers book catalog search results (which may include journals depending on the query) and individual book or article pages. Chapter-level metadata, Wiley datasets, and conference proceedings are not currently exposed. You can fork this API on Parse and revise it to add endpoints targeting those content types.
Page content last updated . Spec covers 3 endpoints from wiley.com.
Related APIs in EducationSee all →
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.
biblio.com API
Access data from biblio.com.
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.
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.
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.
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.
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.
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.