kanye.rest · Schema

Quote

A single random Kanye West quote wrapped in a JSON envelope.

PersonalityQuotesOpen SourceCloudflare WorkersPublic APIs

Properties

Name Type Description
quote string The Kanye West quote text returned by the API.
View JSON Schema on GitHub

JSON Schema

kanye-rest-quote-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/kanye-rest/refs/heads/main/json-schema/kanye-rest-quote-schema.json",
  "title": "Quote",
  "description": "A single random Kanye West quote wrapped in a JSON envelope.",
  "type": "object",
  "required": [
    "quote"
  ],
  "properties": {
    "quote": {
      "type": "string",
      "description": "The Kanye West quote text returned by the API.",
      "example": "Everything you do in life stems from either fear or love"
    }
  }
}