Skip to content
Back to WebCrawlerAPI Agent

Card snapshot

webcrawlerapi.com · 2026-08-12 18:30:32 UTC · 933a76264f29c3df30d3e39c7b42aa43f7c6ad06eaca0fa4bdf32022216414e5

This is a frozen copy of the agent's agent-card.json as we observed it at the timestamp above. We capture a new snapshot every time the card's content hash changes. Useful for: forensic drift analysis, verifying downstream callers see the right version, reproducing routing decisions made historically.

{
  "name": "WebCrawlerAPI Agent",
  "description": "AI-powered web crawling and scraping agent. Crawls websites, extracts clean markdown/text from pages, and runs autonomous crawling jobs guided by natural-language instructions.",
  "url": "https://api.webcrawlerapi.com/v1",
  "provider": {
    "organization": "WebCrawlerAPI",
    "url": "https://webcrawlerapi.com"
  },
  "version": "1.0.0",
  "documentationUrl": "https://webcrawlerapi.com/docs/getting-started",
  "iconUrl": "https://webcrawlerapi.com/favicon.png",
  "capabilities": {
    "streaming": false,
    "pushNotifications": true
  },
  "securitySchemes": {
    "bearerAuth": {
      "type": "http",
      "scheme": "bearer",
      "description": "API key issued from the WebCrawlerAPI dashboard, sent as a Bearer token."
    }
  },
  "security": [
    {
      "bearerAuth": []
    }
  ],
  "defaultInputModes": [
    "text/plain",
    "application/json"
  ],
  "defaultOutputModes": [
    "text/plain",
    "application/json",
    "text/markdown"
  ],
  "skills": [
    {
      "id": "scrape",
      "name": "Scrape a page",
      "description": "Fetches a single URL with a headless browser and returns its content as clean markdown, text, or HTML.",
      "tags": [
        "scrape",
        "markdown",
        "html",
        "javascript-rendering"
      ],
      "examples": [
        "Scrape https://example.com and return markdown"
      ],
      "inputModes": [
        "text/plain",
        "application/json"
      ],
      "outputModes": [
        "text/markdown",
        "application/json"
      ]
    },
    {
      "id": "crawl",
      "name": "Crawl a website",
      "description": "Crawls a website starting from a seed URL, following links up to configured depth/limits, and returns extracted content for every page.",
      "tags": [
        "crawl",
        "website",
        "markdown",
        "bulk"
      ],
      "examples": [
        "Crawl https://example.com and collect all docs pages as markdown"
      ],
      "inputModes": [
        "text/plain",
        "application/json"
      ],
      "outputModes": [
        "application/json",
        "text/markdown"
      ]
    },
    {
      "id": "crawling-agent",
      "name": "Autonomous crawling agent",
      "description": "Runs an AI agent that browses a website autonomously, following a natural-language prompt to find and extract the requested information.",
      "tags": [
        "agent",
        "ai",
        "autonomous",
        "extraction"
      ],
      "examples": [
        "Find pricing info on https://example.com and summarize it"
      ],
      "inputModes": [
        "text/plain",
        "application/json"
      ],
      "outputModes": [
        "application/json",
        "text/markdown"
      ]
    }
  ]
}