Citations - Claude Platform Docs
Claude Platform Docs
MessagesModel capabilities

Citations

Ground Claude's responses in your source documents. Citations return the exact passages that support each claim, so you can verify answers and surface sources to your users.

Claude can provide detailed citations when answering questions about documents, helping you track and verify the sources behind each response.

All active models support citations.

The following example shows how to enable citations on a plain text document with the Messages API:

client = anthropic.Anthropic()

response = client.messages.create(
    model="claude-opus-5",
    max_tokens=1024,
    messages=[
        {
            "role": "user",
            "content": [
                {
                    "type": "document",
                    "source": {
                        "type": "text",
                        "media_type": "text/plain",
                        "data": "The grass is green. The sky is blue.",
                    },
                    "title": "My Document",
                    "context": "This is a trustworthy document.",
                    "citations": {"enabled": True},
                },
                {"type": "text", "text": "What color is the grass and sky?"},
            ],
        }
    ],
)
print(response)

How citations work

Integrate citations with Claude in these steps:

  1. Provide document(s) and enable citations

    • Include documents in any of the supported formats: PDFs, plain text, or custom content documents.
    • Set citations.enabled=true on each of your documents. Currently, citations must be enabled on all or none of the documents within a request.
    • Only text citations are currently supported. Image citations are not yet possible.
  2. Documents get processed

    • Document contents are "chunked" to define the minimum granularity of possible citations. For example, sentence chunking lets Claude cite a single sentence or chain together multiple consecutive sentences to cite a paragraph or longer passage.
      • For PDFs: Text is extracted as described in PDF support and content is chunked into sentences. Citing images from PDFs is not currently supported.
      • For plain text documents: Content is chunked into sentences that can be cited from.
      • For custom content documents: Your provided content blocks are used as-is and no further chunking is done.
  3. Claude provides cited response

    • Responses may now include multiple text blocks where each text block can contain a claim that Claude is making and a list of citations that support the claim.
    • Citations reference specific locations in source documents. The format of these citations is dependent on the type of document being cited from.
      • For PDFs: Citations include the page number range (1-indexed).
      • For plain text documents: Citations include the character index range (0-indexed).
      • For custom content documents: Citations include the content block index range (0-indexed) corresponding to the original content list provided.
    • Document indices are provided to indicate the reference source and are 0-indexed according to the list of all documents in your original request.

Citable versus non-citable content

  • Text found within a document's source content can be cited from.
  • title and context are optional fields that are passed to the model but not used toward cited content.
  • title is limited in length, so the context field is useful for storing document metadata as text or stringified JSON.

Citation indices

  • Document indices are 0-indexed from the list of all document content blocks in the request (spanning across all messages).
  • Character indices are 0-indexed with exclusive end indices.
  • Page numbers are 1-indexed with exclusive end page numbers.
  • Content block indices are 0-indexed with exclusive end indices from the content list provided in the custom content document.

Token costs

  • Enabling citations incurs a slight increase in input tokens because of system prompt additions and document chunking.
  • However, the citations feature is very efficient with output tokens. Internally, the model outputs citations in a standardized format that are then parsed into cited text and document location indices. The cited_text field is provided for convenience and does not count toward output tokens.
  • When passed back in subsequent conversation turns, cited_text is also not counted toward input tokens.

Feature compatibility

Citations work in conjunction with other API features including prompt caching, token counting, and batch processing.

Using prompt caching with citations

Citations and prompt caching can be used together effectively.

The citation blocks generated in responses cannot be cached directly, but the source documents they reference can be cached. To optimize performance, apply cache_control to your top-level document content blocks.

client = anthropic.Anthropic()

# Long document content (for example, technical documentation)
long_document = (
    "This is a very long document with thousands of words..." + " ... " * 1000
)  # Minimum cacheable length

response = client.messages.create(
    model="claude-opus-5",
    max_tokens=1024,
    messages=[
        {
            "role": "user",
            "content": [
                {
                    "type": "document",
                    "source": {
                        "type": "text",
                        "media_type": "text/plain",
                        "data": long_document,
                    },
                    "citations": {"enabled": True},
                    "cache_control": {
                        "type": "ephemeral"
                    },  # Cache the document content
                },
                {
                    "type": "text",
                    "text": "What does this document say about API features?",
                },
            ],
        }
    ],
)
print(response)

In this example:

  • The document content is cached using cache_control on the document block.
  • Citations are enabled on the document.
  • Claude can generate responses with citations while benefiting from cached document content.
  • Subsequent requests using the same document benefit from the cached content.

Document types

Choosing a document type

Three document types are supported for citations. Documents can be provided directly in the message (base64, text, or URL) or uploaded through the Files API and referenced by file_id:

TypeBest forChunkingCitation format
Plain textSimple text documents, proseSentenceCharacter indices (0-indexed)
PDFPDF files with text contentSentencePage numbers (1-indexed)
Custom contentLists, transcripts, special formatting, more granular citationsNo additional chunkingBlock indices (0-indexed)

Plain text documents

Plain text documents are automatically chunked into sentences. You can provide them inline or by reference with their file_id:

The intro example at the top of this page shows a complete plain text request in every SDK. The document block uses a text source:

{
  "type": "document",
  "source": {
    "type": "text",
    "media_type": "text/plain",
    "data": "Plain text content..."
  },
  "title": "Document Title",
  "context": "Context about the document that will not be cited from",
  "citations": { "enabled": true }
}

PDF documents

PDF documents can be provided as base64-encoded data, a URL, or by file_id. PDF text is extracted and chunked into sentences. As image citations are not yet supported, PDFs that are scans of documents and do not contain extractable text are not citable.

client = anthropic.Anthropic()

pdf_base64 = base64.standard_b64encode(
    pathlib.Path("/path/to/document.pdf").read_bytes()
).decode()

response = client.messages.create(
    model="claude-opus-5",
    max_tokens=1024,
    messages=[
        {
            "role": "user",
            "content": [
                {
                    "type": "document",
                    "source": {
                        "type": "base64",
                        "media_type": "application/pdf",
                        "data": pdf_base64,
                    },
                    "title": "Document Title",
                    "context": "Context about the document that will not be cited from",
                    "citations": {"enabled": True},
                },
                {"type": "text", "text": "Summarize this document."},
            ],
        }
    ],
)
print(response)

Custom content documents

Custom content documents give you control over citation granularity. No additional chunking is done and chunks are provided to the model according to the content blocks provided.

client = anthropic.Anthropic()

response = client.messages.create(
    model="claude-opus-5",
    max_tokens=1024,
    messages=[
        {
            "role": "user",
            "content": [
                {
                    "type": "document",
                    "source": {
                        "type": "content",
                        "content": [
                            {"type": "text", "text": "First chunk"},
                            {"type": "text", "text": "Second chunk"},
                        ],
                    },
                    "title": "Document Title",
                    "context": "Context about the document that will not be cited from",
                    "citations": {"enabled": True},
                },
                {"type": "text", "text": "Summarize this document."},
            ],
        }
    ],
)
print(response)


Response structure

When citations are enabled, responses include multiple text blocks with citations:

{
  "content": [
    { "type": "text", "text": "According to the document, " },
    {
      "type": "text",
      "text": "the grass is green",
      "citations": [
        {
          "type": "char_location",
          "cited_text": "The grass is green.",
          "document_index": 0,
          "document_title": "Example Document",
          "start_char_index": 0,
          "end_char_index": 20
        }
      ]
    },
    { "type": "text", "text": " and " },
    {
      "type": "text",
      "text": "the sky is blue",
      "citations": [
        {
          "type": "char_location",
          "cited_text": "The sky is blue.",
          "document_index": 0,
          "document_title": "Example Document",
          "start_char_index": 20,
          "end_char_index": 36
        }
      ]
    },
    {
      "type": "text",
      "text": ". Information from page 5 states that "
    },
    {
      "type": "text",
      "text": "water is essential",
      "citations": [
        {
          "type": "page_location",
          "cited_text": "Water is essential for life.",
          "document_index": 1,
          "document_title": "PDF Document",
          "start_page_number": 5,
          "end_page_number": 6
        }
      ]
    },
    {
      "type": "text",
      "text": ". The custom document mentions "
    },
    {
      "type": "text",
      "text": "important findings",
      "citations": [
        {
          "type": "content_block_location",
          "cited_text": "These are important findings.",
          "document_index": 2,
          "document_title": "Custom Content Document",
          "start_block_index": 0,
          "end_block_index": 1
        }
      ]
    }
  ]
}

Streaming support

For streaming responses, citations arrive as a citations_delta delta type inside content_block_delta events. Each delta contains a single citation to add to the citations list on the current text content block.

Next steps

Handle the citations_delta delta type alongside text deltas to render cited responses as they stream.

Pass search results from your RAG pipeline as first-class content blocks with built-in citation support.

Learn how Claude extracts text from PDFs and how page-based citations map back to your source files.

Upload documents once and reference them by file_id across multiple citation requests.

Compatibility

Supported platforms
  • Claude API
  • Claude Platform on AWS
  • Amazon Bedrock
  • Google Cloud
  • Microsoft Foundry

Was this page helpful?