Discover/ValoreBooks API
live

ValoreBooks APIvalorebooks.com

Search ValoreBooks textbooks, retrieve marketplace offers with price and condition, and fetch buyback quotes by ISBN using 3 structured API endpoints.

Endpoint health
verified 2d ago
get_buyback_quote
get_book_details
search_books
3/3 passing latest checkself-healing
Endpoints
3
Updated
26d ago

What is the ValoreBooks API?

The ValoreBooks API covers 3 endpoints that let you search the ValoreBooks textbook marketplace, retrieve detailed product pages with current marketplace offers, and fetch buyback quotes by ISBN. The get_book_details endpoint returns offer arrays with price, condition, and seller alongside structured metadata like ISBN-13, ISBN-10, and LCCN. The get_buyback_quote endpoint exposes eligibility status, offered buyback price, shipping terms, and edition restrictions in a single call.

Try it
Search query — a title, author name, or ISBN.
api.parse.bot/scraper/6183a689-a458-48d3-8c7b-3adb938ef2ff/<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/6183a689-a458-48d3-8c7b-3adb938ef2ff/search_books?query=calculus' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace valorebooks-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""ValoreBooks SDK — search textbooks, compare offers, check buyback quotes."""
from parse_apis.valorebooks_api import ValoreBooks, BookNotFound

client = ValoreBooks()

# Search for textbooks by keyword — limit= caps total items fetched.
for summary in client.booksummaries.search(query="calculus", limit=5):
    print(summary.title, summary.isbn)

# Drill into the first result for full details (offers, metadata).
result = client.booksummaries.search(query="organic chemistry", limit=1).first()
if result:
    book = result.details()
    print(book.title, book.url)
    for offer in book.offers:
        print(offer.price, offer.condition, offer.seller)

    # Check the buyback quote for this book.
    quote = book.buyback_quote()
    print(quote.eligible, quote.buyback_price, quote.shipping)

# Direct lookup by ISBN when you already know it.
try:
    detail = client.books.get(isbn="9780134438986")
    print(detail.title, detail.metadata)
except BookNotFound as exc:
    print(f"Book not found: {exc.isbn}")

print("exercised: booksummaries.search / details / books.get / buyback_quote")
All endpoints · 3 totalmissing one? ·

Search for books by title, author, or ISBN. Returns a list of matching books with title, ISBN, and product URL. When the query matches an ISBN exactly the site may redirect to the product page; in that case the response contains full book details instead of a results list.

Input
ParamTypeDescription
queryrequiredstringSearch query — a title, author name, or ISBN.
Response
{
  "type": "object",
  "fields": {
    "total": "integer, count of results returned",
    "results": "array of book objects each with title (string), isbn (string), and url (string)"
  },
  "sample": {
    "data": {
      "total": 25,
      "results": [
        {
          "url": "https://www.valore.com/products/physics-calculus-with-your-personal-tutor-for-physics-2003-cd-rom/9780534392154",
          "isbn": "9780534392154",
          "title": "Physics Calculus With Your Personal Tutor For Physics 2003 Cd Rom"
        },
        {
          "url": "https://www.valore.com/products/precalculus/9781305071759",
          "isbn": "9781305071759",
          "title": "Precalculus"
        }
      ]
    },
    "status": "success"
  }
}

About the ValoreBooks API

Search and Product Lookup

The search_books endpoint accepts a query string — title, author, or ISBN — and returns a list of matching books, each with a title, isbn, and canonical url. When the query is an exact ISBN match, the response may contain full book details directly instead of a results list, saving a second round-trip.

Marketplace Offers and Book Metadata

The get_book_details endpoint takes an isbn (ISBN-13 or ISBN-10) and returns the book's title, a metadata object containing ISBN-13, ISBN-10, and LCCN values, and an offers array. Each offer object includes type, price, condition, and seller, giving you a live snapshot of what buyers can pay across the marketplace. The endpoint also returns json_ld, an array of structured data objects embedded in the product page, useful for additional schema-level fields.

Buyback Quotes

The get_buyback_quote endpoint accepts an isbn and returns an eligible boolean indicating whether the book qualifies for buyback. When eligible, the response includes buyback_price (e.g. '$15.65*'), shipping info (e.g. 'FREE'), title, and any edition_restriction note. Books that don't qualify return eligible: false with a plain message explaining why. This lets you quickly screen a list of ISBNs before presenting sell options to users.

Coverage Notes

All three endpoints are oriented around ISBN lookups and the ValoreBooks catalog. Search results surface books stocked or listed on ValoreBooks; availability and buyback prices reflect current inventory and will change over time. The metadata object on get_book_details includes bibliographic identifiers but does not currently expose author, publisher, or edition fields as discrete response keys — those may appear inside the json_ld array depending on the specific title.

Reliability & maintenanceVerified

The ValoreBooks API is a managed, monitored endpoint for valorebooks.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when valorebooks.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 valorebooks.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
  • Compare buy prices across sellers for a given ISBN using the offers array from get_book_details.
  • Screen a list of ISBNs for buyback eligibility and offered prices before building a sell-back workflow.
  • Build a campus bookstore price-comparison tool using search_books by title or author.
  • Display shipping terms and edition restrictions to users before they commit to selling a textbook.
  • Sync ValoreBooks offer data with internal inventory systems using structured json_ld fields.
  • Alert students when buyback prices for specific ISBNs cross a threshold using repeated get_buyback_quote calls.
  • Validate ISBNs and retrieve canonical product URLs for a textbook catalog using the search redirect behavior.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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 ValoreBooks have an official developer API?+
ValoreBooks does not publish an official public developer API or documented developer program as of mid-2025.
What does the `get_book_details` endpoint include in its `offers` array?+
Each offer object in the array contains four fields: type (e.g. buy or rent), price (a string like '$12.50'), condition (e.g. new, used, good), and seller (the marketplace seller name). The endpoint returns all currently listed offers for the ISBN in a single response.
What does `eligible: false` mean in a `get_buyback_quote` response, and what information is returned?+
When a book does not qualify for buyback, eligible is set to false, buyback_price and shipping are null, and a message string explains the reason (for example, the edition is outdated or the book is not in current demand). This lets you handle ineligible ISBNs gracefully without a separate pre-check call.
Does the API return author, publisher, or edition as discrete fields?+
Not currently as named top-level fields. The metadata object on get_book_details exposes ISBN-13, ISBN-10, and LCCN, while additional bibliographic data may appear inside the json_ld array depending on the title. You can fork this API on Parse and revise it to extract author, publisher, or edition from the json_ld array as discrete response fields.
Does the API support pagination for `search_books` results?+
The search_books endpoint returns a total count and a results array for the current response, but there is no exposed page or offset parameter. If you need deeper result sets beyond the initial response, you can fork the API on Parse and revise it to add pagination support.
Page content last updated . Spec covers 3 endpoints from valorebooks.com.
Related APIs in EducationSee all →
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.
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.
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.
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.
wiley.com API
Search Wiley for books by keyword and locale, list available editions and formats for any title, and fetch detailed book metadata such as ISBN and page count from a product page.
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.
rokomari.com API
Search for books and explore detailed information about titles, authors, and awards from Rokomari's catalog. Browse bestsellers, categories, quick deals, and discover author profiles all in one place.
kobo.com API
Search and browse millions of eBooks and audiobooks from Kobo, discover bestsellers and daily deals across different categories, and get detailed information about specific books and authors. Find free eBooks, explore category collections, and use autocomplete to quickly locate titles that interest you.