{
  "slug": "citation-generator",
  "name": "gizza-ai/citation-generator",
  "version": "0.1.0",
  "title": "Citation Generator — APA, MLA, Chicago & Harvard — gizza.ai",
  "description": "Free APA 7, MLA 9, Chicago and Harvard citation generator — format author, title, year, journal and URL into a correct reference right in your browser.",
  "tags": [
    "citation generator",
    "apa citation",
    "mla citation",
    "chicago citation",
    "harvard citation",
    "reference generator",
    "bibliography",
    "works cited",
    "cite a source"
  ],
  "category": "documents",
  "urls": {
    "page": "https://gizza.ai/tools/citation-generator/",
    "markdown": "https://gizza.ai/tools/citation-generator/index.md",
    "descriptor": "https://gizza.ai/tools/citation-generator/tool.json",
    "deep_link_example": "https://gizza.ai/tools/citation-generator/?style=apa&title=On%20the%20Nature%20of%20Things&authors=Doe%2C%20Jane%3B%20Smith%2C%20John&year=2021&container=Journal%20of%20Studies&publisher=Penguin&volume=12&issue=3&pages=45-67&url=https%3A%2F%2Fexample.com%2Farticle&doi=10.1000%2Fxyz123&accessed=12%20Mar.%202024"
  },
  "cli": "gizza tool citation-generator 'style=apa'",
  "tool": {
    "description": "Format a single reference into APA 7th, MLA 9th, Chicago 17th, or Harvard style from structured fields.",
    "parameters": {
      "additionalProperties": false,
      "properties": {
        "accessed": {
          "description": "Date accessed.",
          "type": "string"
        },
        "authors": {
          "description": "Author(s), separated with ';' or ' and '.",
          "type": "string"
        },
        "container": {
          "description": "Journal/website/book the source appears in.",
          "type": "string"
        },
        "doi": {
          "description": "DOI of the source.",
          "type": "string"
        },
        "issue": {
          "description": "Issue number.",
          "type": "string"
        },
        "pages": {
          "description": "Page range.",
          "type": "string"
        },
        "publisher": {
          "description": "Publisher name.",
          "type": "string"
        },
        "style": {
          "default": "apa",
          "description": "Citation style.",
          "enum": [
            "apa",
            "mla",
            "chicago",
            "harvard"
          ],
          "type": "string"
        },
        "title": {
          "description": "Title of the work.",
          "type": "string"
        },
        "url": {
          "description": "URL of the online source.",
          "type": "string"
        },
        "volume": {
          "description": "Volume number.",
          "type": "string"
        },
        "year": {
          "description": "Publication year.",
          "type": "string"
        }
      },
      "required": [],
      "type": "object"
    }
  }
}