> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zeroclick.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Convert a marketing webpage to markdown

> Fetches a public marketing webpage and returns an agent-readable markdown document: summary front matter, the seller's agent storefront inlined, then the page content.



## OpenAPI

````yaml https://api.zeroclick.io/openapi.json get /v1/agentify/markdown
openapi: 3.0.0
info:
  title: ZeroClick API
  description: >-
    REST API for managing ZeroClick sellers, services, pricing, usage, and
    analytics. Authenticate with an API key from the ZeroClick dashboard.
  version: 1.0.0
servers:
  - url: https://api.zeroclick.io
security:
  - bearerAuth: []
tags:
  - name: API keys
  - name: Sellers
  - name: Services
  - name: Meters
  - name: Plans
  - name: Plan meter prices
  - name: Usage
  - name: Analytics
  - name: Agentify
  - name: Stripe Connect
  - name: Sandbox
  - name: Organizations
  - name: Users
paths:
  /v1/agentify/markdown:
    get:
      tags:
        - Agentify
      summary: Convert a marketing webpage to markdown
      description: >-
        Fetches a public marketing webpage and returns an agent-readable
        markdown document: summary front matter, the seller's agent storefront
        inlined, then the page content.
      parameters:
        - schema:
            type: string
            minLength: 1
            maxLength: 4096
          in: query
          name: url
          required: true
        - schema:
            type: string
            minLength: 1
            maxLength: 120
          in: query
          name: seller
          required: false
      responses:
        '200':
          description: Default Response
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key created in the ZeroClick dashboard under Settings → API keys.
        Keys start with `zc_`. Send them as `Authorization: Bearer zc_...`.

````