GET

Get quotes by author

Retrieve quotes from a specific author

URL:https://api.quotable.io/quotes?author=steve-jobs
Endpoint Information
Basic information about this API endpoint

GET

application/json

author
Required
string
Sample Response
Example response from this endpoint
JSON Response
{
  "count": 10,
  "totalCount": 25,
  "page": 1,
  "totalPages": 3,
  "results": [
    {
      "_id": "12345",
      "content": "Innovation distinguishes between a leader and a follower.",
      "author": "Steve Jobs",
      "tags": [
        "innovation",
        "leadership"
      ]
    }
  ]
}