API Reference

Get random quotes from famous people around the world. Also, you can get quotes related to a specific topic.

Response Schema

{
  "type": "object",
  "properties": {
    "quotes": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "quote": {
            "type": "string",
            "description": "The text of the quote."
          },
          "author": {
            "type": "string",
            "description": "The name of the author of the quote."
          },
          "explanation": {
            "type": "string",
            "description": "An explanation or context for the quote."
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "A list of tags associated with the quote."
          }
        },
        "required": ["quote", "author", "explanation", "tags"]
      },
      "description": "A list of quotes with their details."
    }
  },
  "required": ["quotes"]
}
Language
Credentials
Header
Click Try It! to start a request and see the response here!