Teks ini nanti digunakan untuk llm frontend seperti librechat atau open webui untuk membuat ringkasan. berikut openapi spec nya:

openapi: 3.0.0
info:
  title: Jina Web to Markdown API
  version: 1.0.0
  description: API that converts web pages to clean markdown format
servers:
  - url: https://r.jina.ai
    paths:
    /{url}:
    get:
      summary: Convert webpage to markdown
      description: Returns the content of any webpage as structured markdown text
      parameters:
        - name: url
          in: path
          required: true
          description: Full URL of the target webpage (URL-encoded)
          schema:
            type: string
          allowReserved: true
        responses:
            '200':
          description: Markdown conversion successful
          content:
            text/markdown:
              schema:
                type: string