Discover/Momox Books API
live

Momox Books APImomoxbooks.com

Search Momox Books by ISBN to retrieve second-hand book prices, condition grades, stock status, and reference pricing via a single API endpoint.

This API takes change requests — .
Endpoint health
verified 5d ago
get_offers_by_isbn
1/1 passing latest checkself-healing
Endpoints
1
Updated
1mo ago

What is the Momox Books API?

The Momox Books API gives developers structured access to used book listings on momoxbooks.com through 1 endpoint, get_offers_by_isbn. Submit any ISBN-10 or ISBN-13 and get back an array of offer objects covering condition variants, current prices, reference prices, stock availability, title, and creator data — enough to build price comparison tools or inventory monitors against Momox's second-hand catalogue.

Try it
ISBN-13 or ISBN-10 of the book to search for (e.g. 9780141439518).
api.parse.bot/scraper/bdf713d4-8b04-4862-a98a-68d4f2913931/<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/bdf713d4-8b04-4862-a98a-68d4f2913931/get_offers_by_isbn?isbn=9780141439518' \
  -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 momoxbooks-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.

from parse_apis.momox_books_offer_api import MomoxBooks

momox = MomoxBooks()

# Search for offers on Pride and Prejudice by ISBN
for offer in momox.offers.search(isbn="9780141439518"):
    print(offer.title, offer.price_eur, offer.condition, offer.in_stock)
    for creator in offer.creators:
        print(creator.name, creator.role)
    for variation in offer.variations:
        print(variation.condition, variation.price_eur, variation.in_stock)
All endpoints · 1 totalmissing one? ·

Search momoxbooks.com for available offers on a book by its ISBN. Returns all available condition variants (e.g. Used - like new, Used - very good, Used - good) with their prices, stock status, and reference prices. If no offers exist for the given ISBN, returns an empty offers array.

Input
ParamTypeDescription
isbnrequiredstringISBN-13 or ISBN-10 of the book to search for (e.g. 9780141439518).
Response
{
  "type": "object",
  "fields": {
    "offers": "array of offer objects with title, price, condition, variations, creators, and availability",
    "isbn_query": "string - the ISBN that was searched",
    "total_results": "integer - number of matching products found"
  },
  "sample": {
    "data": {
      "offers": [
        {
          "url": "https://www.momoxbooks.com/products/austen-jane-pride-and-prejudice-9780141439518",
          "isbn": "9780141439518",
          "title": "Pride and Prejudice",
          "creators": [
            {
              "name": "Vivien Jones",
              "role": "editor"
            },
            {
              "name": "Jane Austen",
              "role": "author"
            }
          ],
          "in_stock": true,
          "condition": "Used - very good",
          "image_url": "https://cdn.shopify.com/s/files/1/0925/5829/5382/files/product_image_9780141439518_1_a263b417-95de-407c-ac1a-a89e5751a434.jpg?v=1777943731",
          "price_eur": 7.49,
          "variations": [
            {
              "in_stock": true,
              "condition": "Used - very good",
              "price_eur": 7.49,
              "variant_id": "gid://shopify/ProductVariant/53364934410582",
              "reference_price_eur": 10
            }
          ],
          "description": "Austen's most popular novel...",
          "product_type": "Book",
          "reference_price_eur": 10
        }
      ],
      "isbn_query": "9780141439518",
      "total_results": 1
    },
    "status": "success"
  }
}

About the Momox Books API

What the API Returns

The single get_offers_by_isbn endpoint accepts an isbn parameter (ISBN-10 or ISBN-13, e.g. 9780141439518) and returns all available offers Momox Books lists for that title. Each item in the offers array includes the book's title, price, condition label (such as "Used - like new", "Used - very good", or "Used - good"), variations for any sub-condition or edition distinctions, creators (authors and contributors), and an availability flag indicating whether the item is currently in stock. Two summary fields accompany every response: isbn_query echoes the searched identifier, and total_results reports the integer count of matching products found.

Condition and Pricing Data

Momox Books grades its used inventory into explicit condition tiers, and the API surfaces each tier as a separate offer object rather than collapsing them. This means a single ISBN query may return multiple rows — one per condition grade — each with its own price and availability status. Reference prices are also included in the offer objects, enabling straightforward calculation of discount depth against a baseline retail or list value.

Availability and Empty Results

When no offers exist for a given ISBN — because the title is out of stock or not carried — the endpoint returns an empty offers array rather than an error. total_results will be 0. This makes it safe to poll the endpoint for stock alerts without needing special error handling for unlisted titles.

Reliability & maintenanceVerified

The Momox Books API is a managed, monitored endpoint for momoxbooks.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when momoxbooks.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 momoxbooks.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
5d ago
Latest check
1/1 endpoint 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 a used-book price tracker that monitors condition-specific price changes for a watchlist of ISBNs
  • Compare Momox Books prices against other resellers using the returned price and reference price fields
  • Check real-time stock availability for specific ISBNs before surfacing buy links to end users
  • Aggregate condition grades and prices to display a graded pricing ladder on a book detail page
  • Flag when a previously unavailable ISBN becomes in-stock by polling availability and total_results
  • Populate a resale valuation tool with current Momox offer prices keyed by ISBN
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 Momox Books offer an official developer API?+
Momox does not publish a documented public developer API for momoxbooks.com. There is no official API key program or developer portal listed on their site.
What does `get_offers_by_isbn` return when a book has multiple condition grades?+
Each condition grade (for example, "Used - like new" versus "Used - good") is returned as a separate object within the offers array. Each object carries its own price, condition label, availability status, and variations field, so you can compare grades for the same ISBN in a single response.
Does the API cover seller ratings, individual seller profiles, or buyer reviews?+
Not currently. The API covers offer-level data: price, condition, availability, title, creators, and reference price. You can fork this API on Parse and revise it to add an endpoint targeting seller or review data.
Can I search by title or author rather than ISBN?+
The current endpoint only accepts an isbn parameter. Title or author-based search is not covered. You can fork the API on Parse and revise it to add a text-search endpoint if that lookup is required.
How fresh is the pricing and availability data?+
Each call to get_offers_by_isbn retrieves current data from Momox Books at request time. There is no cached snapshot — results reflect whatever Momox is listing at the moment the request is made, so stock changes and price updates are picked up on the next call.
Page content last updated . Spec covers 1 endpoint from momoxbooks.com.
Related APIs in MarketplaceSee all →
ebay.com API
Search and monitor eBay listings across any category, with support for active and completed/sold listings. Retrieve item details, pricing history, seller profiles and feedback, and category data. Filter by keyword, category, condition, seller, and sort order to support price research, market analysis, and inventory monitoring.
psacard.com API
Look up PSA certification details for graded collectible cards and search comprehensive population reports and price guides across all card categories. Browse collectible categories by set to discover grading data, pricing information, and population statistics.
mercadolibre.com.ar API
Search for products, cars, and real estate listings on MercadoLibre Argentina and access detailed information including product specifications, customer reviews, and seller profiles. Get comprehensive market data to compare prices, evaluate sellers, and make informed purchasing decisions across multiple categories.
willhaben.at API
Search and browse listings across Austria's largest classifieds platform. Access marketplace goods, real estate (for sale and rent), cars, jobs, and full listing details — all from a single API.
mercadolibre.com API
Search and retrieve product listings, details, customer reviews, categories, and current deals from MercadoLibre across multiple countries to find the best products and prices. Get comprehensive product information including specifications and user feedback to make informed purchasing decisions.
jp.mercari.com API
Search and browse millions of product listings on Mercari Japan with bilingual support, filtering by categories and getting detailed pricing, item specifications, and seller information. Access comprehensive marketplace data including product summaries, category overviews, and individual seller profiles to find exactly what you're looking for.
finn.no API
Search and retrieve listings across Norwegian marketplaces on FINN.no, including vehicles, real estate, jobs, and second-hand items. Access structured listing data such as price, location, images, and category-specific attributes across all major FINN.no verticals.
etsy.com API
Discover what shoppers are searching for on Etsy by accessing real-time trending keywords and popular search terms that can help you identify market demand and optimize your product listings. Get instant access to autocomplete suggestions and "Popular right now" trends to stay ahead of customer interests and improve your shop's visibility.