Quote Garden · Example Payload

Quote Garden List Genres Example

QuotesInspirationOpen SourceFree APINode.jsMongoDBExpressPersonalityPublic APIs

Quote Garden List Genres Example is an example object payload from Quote Garden, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestresponse

Example Payload

Raw ↑
{
  "operationId": "listGenres",
  "method": "GET",
  "path": "/genres",
  "summary": "List Genres",
  "request": {
    "url": "https://quote-garden.onrender.com/api/v3/genres",
    "headers": {
      "Accept": "application/json"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json; charset=utf-8"
    },
    "body": {
      "statusCode": 200,
      "message": "Genres",
      "pagination": {
        "currentPage": null,
        "nextPage": null,
        "totalPages": null
      },
      "totalQuotes": null,
      "data": [
        "age",
        "alone",
        "amazing",
        "anger",
        "attitude",
        "beauty",
        "best",
        "birthday",
        "business",
        "change",
        "communication",
        "courage",
        "death",
        "dreams",
        "education",
        "experience",
        "failure",
        "faith",
        "family",
        "famous",
        "fear",
        "freedom",
        "friendship",
        "future",
        "god",
        "good",
        "government",
        "great",
        "happiness",
        "health",
        "history",
        "home",
        "hope",
        "humor",
        "imagination",
        "inspirational",
        "intelligence",
        "knowledge",
        "leadership",
        "learning",
        "life",
        "love",
        "marriage",
        "men",
        "money",
        "motivational",
        "movies",
        "nature",
        "patience",
        "peace",
        "people",
        "poetry",
        "politics",
        "power",
        "religion",
        "respect",
        "science",
        "smile",
        "society",
        "sports",
        "strength",
        "success",
        "technology",
        "time",
        "travel",
        "trust",
        "truth",
        "war",
        "wisdom",
        "women",
        "work"
      ]
    }
  }
}