Quote Garden · Example Payload

Quote Garden List Authors Example

QuotesInspirationOpen SourceFree APINode.jsMongoDBExpressPersonalityPublic APIs

Quote Garden List Authors 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": "listAuthors",
  "method": "GET",
  "path": "/authors",
  "summary": "List Authors",
  "request": {
    "url": "https://quote-garden.onrender.com/api/v3/authors?page=1&limit=10",
    "headers": {
      "Accept": "application/json"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json; charset=utf-8"
    },
    "body": {
      "statusCode": 200,
      "message": "Authors",
      "pagination": {
        "currentPage": null,
        "nextPage": null,
        "totalPages": null
      },
      "totalQuotes": null,
      "data": [
        "Bill Gates",
        "Albert Einstein",
        "Mark Twain",
        "Maya Angelou",
        "Mahatma Gandhi",
        "Oscar Wilde",
        "Winston Churchill",
        "Theodore Roosevelt",
        "Eleanor Roosevelt",
        "Steve Jobs"
      ]
    }
  }
}