Quote Garden
Quote Garden is a free, open-source REST API that serves more than 75,000 famous quotes. Built by Prathamesh More (pprathameshmore) in Node.js + Express + MongoDB, it exposes a small read-only HTTP surface for fetching random quotes, paginated quote lists filterable by author, genre, and full-text query, plus master lists of all authors and genres. There is no authentication and no cost to use; the canonical reference implementation is hosted on Render at https://quote-garden.onrender.com/api/v3 and was previously deployed on Heroku at quote-garden.herokuapp.com. The project also ships an official npm client wrapper (`@pprathameshmore/quotegardennpm`) and is widely embedded in third-party chrome extensions, mobile apps, and Twitter bots that need a lightweight inspirational-quote source.
Limited machine-readable signal and partial portal coverage — documentation a human can read, but little a machine or agent can consume without scraping.
API Evangelist profiles Quote Garden the way a machine reads it — 47 machine-readable artifacts across 3 APIs, pulled from the provider's own public surface and indexed so a developer, an analyst, or an AI agent can evaluate it against every other provider on the network.
Every provider in the network is reduced to the same set of machine-readable artifacts — OpenAPI contracts, event specifications, GraphQL schemas, runnable collections, pricing and rate-limit signals, security posture, OAuth scopes, and the agent surfaces (MCP servers and skills) that let software drive the API on its own. We profile them because the interface is the part of a company you can actually inspect: it is a truer signal of what a provider does than any marketing page. From those artifacts we compute the Kin Score — Quote Garden scores 39.9/100 (thin), with a separate agent-readiness read of 32/100 (agent aware). The full breakdown is below, followed by every artifact we hold — each card links through to its machine-readable definition on apis.io.
Kin Score
This is the API Evangelist rating — a single, repeatable read computed from the artifacts on this page. Green fill is points earned; the red track is points possible, so every bar shows earned-versus-possible at a glance.
How we profile Quote Garden
Each block below is one kind of artifact we hold for Quote Garden. For each we say what it is and why it earns a place in the profile, then list every one we've indexed — capped at two rows, scroll within the panel for the rest.
APIs 3
Each API is captured as its own OpenAPI definition — every operation, parameter, and response. This is the single most useful machine-readable description of what an API does, and it's what lets us score, lint, mock, and generate against it without asking the provider for anything.
Individual APIs this provider publishes, each with its own machine-readable definition.
Quote Garden Authors API
Master list of authors represented in the quote corpus.
Quote Garden Genres API
Master list of genres / categories represented in the quote corpus.
Quote Garden Quotes API
Operations for retrieving quote records, individually at random or as a paginated list.
Open Collections 1
Open, tool-agnostic collections carry the same runnable value as Postman without locking you to one client — the portable, forkable form of the same exercise.
Open, tool-agnostic API collections (OpenAPI-derived and Bruno).
Quote Garden API
OPEN COLLECTIONFeatures 10
The notable capabilities this provider advertises, captured as structured features so they can be searched and compared instead of read one landing page at a time.
Notable capabilities this provider offers.
75,000+ Quotes
Curated MongoDB collection of more than seventy-five thousand famous quotes attributed to a long tail of authors.
Random Quote Retrieval
Single-call endpoint that returns one or more randomly selected quotes, optionally filtered by author, genre, or search query.
Paginated Quote Listing
Page-and-limit paginated access to the full quote corpus with deterministic ordering, suitable for browsing or full-dump use cases.
Full-Text Search
MongoDB text index on quoteText, quoteAuthor, and quoteGenre exposed via the `query` parameter on quote listing endpoints.
Author Filter
Filter quotes by exact author name via the `author` query parameter and discover the full author list via the `/authors` endpoint.
Genre Filter
Filter quotes by genre (e.g., love, life, success, business) via the `genre` query parameter and discover the full genre list via the `/genres` endpoint.
No Authentication Required
Completely open access with no API key, OAuth, or signup; CORS-enabled for direct browser use.
Consistent Response Envelope
Every endpoint returns the same shape (statusCode, message, pagination, totalQuotes, data) for predictable client parsing.
NPM Client Wrapper
Official `quotegarden` npm package wraps the HTTP API for Node.js and browser projects.
Open Source MIT License
Entire backend (Express + MongoDB) and NPM client are MIT-licensed, allowing self-hosting and modification.
Scroll within the panel for all 10 ·
Semantic Vocabularies 1
JSON-LD contexts give the data shared meaning across APIs. We profile them because semantics are what let a machine reconcile 'customer' here with 'customer' somewhere else.
JSON-LD contexts and semantic vocabularies used across these APIs.
Quote Garden Context
JSON-LDSpectral Rules 2
Governance rulesets we run against this provider's specs — the automated checks behind parts of the score. Profiling them makes the quality bar explicit and re-runnable, not a matter of opinion.
Quote Garden API Rules
SPECTRALQuote Garden API Rules
SPECTRALJSON Schema 2
Standalone JSON Schema definitions describe the data models behind the API. We profile them so the shapes are validatable on their own — useful long after a single request is forgotten.
Standalone JSON Schema definitions for this provider's data models.
Quote
JSON SCHEMAResponseEnvelope
JSON SCHEMAJSON Structure 2
JSON Structure captures the data shapes in a form built for tooling — a complement to JSON Schema that keeps the model machine-legible.
JSON Structure definitions describing this provider's data shapes.
Quote Garden Quote Structure
JSON STRUCTUREQuote Garden Response Envelope Structure
JSON STRUCTUREExamples 6
Real request and response payloads are what turn a spec from abstract into obvious — and they're one of the twelve things an agent needs to call an API correctly on the first try.
Example request and response payloads for these APIs.
Security Posture 1
Authentication, domain security, vulnerability disclosure, and trust-center signals — the evidence that a provider takes security seriously enough to document it. We profile it because you can't govern what you can't see.
Authentication, domain security, vulnerability disclosure, and trust-center signals.
Agentic Access 1
An x-agentic-access contract marks which operations are safe for an agent to run on its own and which need a human in the loop. It is the difference between an API an agent can use and one it can use safely.
Recommended x-agentic-access execution contracts for AI agents.
Use Cases 8
What developers actually build with this provider — captured so the catalogue answers 'what is this for', not just 'what does this expose'.
What developers build with this provider.
Inspirational Daily Quote Widgets
Browser new-tab extensions and home screen widgets call `/quotes/random` to display a fresh inspirational quote on each page load.
Chatbot and Voice Assistant Prompts
Chatbots, Slack bots, and Alexa skills pull random quotes by genre to inject contextual inspiration into conversations.
Social Media Automation
Twitter, Mastodon, and Bluesky bots schedule recurring posts from filtered author or genre slices of the corpus.
Educational and Motivational Apps
Mobile apps for students, athletes, and remote workers surface goal-aligned quotes filtered by genre (success, perseverance, focus).
Static Site Generators
Jamstack sites embed a random quote at build time by hitting the API during the build step.
Game and AR Easter Eggs
Indie games and AR experiences sprinkle randomly fetched quotes into loading screens and reward moments.
Email and Newsletter Personalization
Transactional and marketing email systems append a daily quote to footer templates fetched at send-time.
Learning Projects for API Consumption
Bootcamps and university courses use the unauthenticated API as a teaching example for HTTP, JSON parsing, and pagination.
Scroll within the panel for all 8 ·
Integrations 7
Pre-built integrations with other platforms tell you where this provider already fits in a stack.
Pre-built integrations with other platforms and tools.
Achieve Chrome Extension
New-tab Chrome extension by the same author that originally motivated the API; displays a daily quote with imagery.
QuoteGarden Android App
Community-built Android app on Google Play that surfaces Quote Garden quotes on the device.
Spontaneous (iOS)
Independent iOS app published on the App Store that consumes Quote Garden for randomized inspiration.
QuoteGarden Twitter Bot
@quotegardenbot Twitter bot that publishes scheduled quotes pulled from the API.
Bink Chrome Extension
Third-party Chrome extension by AmitGujar that shows quotes on new-tab.
MotivateU
GitHub open-source project by Shankhanil Ghosh that wraps Quote Garden into a motivational web experience.
QuoteGarden NPM
Official `quotegarden` npm wrapper for JavaScript and TypeScript clients.
Scroll within the panel for all 7 ·
Solutions 3
Packaged solutions the provider offers on top of the raw API surface.
Packaged solutions this provider offers.
Self-Hosted Deployment
Clone the GitHub repo and run via Docker / docker-compose (Dockerfile and Procfile included) against your own MongoDB instance for full control of data and SLAs.
Hosted Reference API
Free public reference deployment at quote-garden.onrender.com/api/v3 — no SLA, intended for hobby and prototype use.
NPM SDK Integration
Drop-in `quotegarden` npm package for Node.js or browser apps that prefer a typed client over raw fetch calls.
Resources
Every other property we hold for Quote Garden — documentation, portals, status pages, policies, and corporate surface — grouped by the job it does, following the integrator's arc from getting started to running in production.
Get Started 1
Portal, sign-up, and the first successful call
Agent Surfaces 1
MCP servers, agent skills, and machine-readable catalogs
Design & Contract 2
Pagination, idempotency, versioning, errors, and events
Build 3
SDKs, sample code, and the tooling you integrate with
Access & Security 1
Authentication, authorization, and security posture
Commercial 1
Pricing, plans, and the legal terms of use
Company 1
The organization behind the API
Other 1
Properties that don't map to a standard resource type
← All providers · Data indexed from github.com/api-evangelist/quote-garden · machine-readable index on apis.io