> ## Documentation Index
> Fetch the complete documentation index at: https://haider-5d8ca6e7.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Chat with Websites

> Summarize and interact with any webpage content

## Overview

Chat with Websites lets you paste any URL and instantly get a summary of the page content. Ask follow-up questions to dive deeper into articles, blog posts, news, or any web page.

***

## How to Use (Web App)

<Steps>
  <Step title="Copy URL">
    Copy the URL of the webpage you want to analyze.
  </Step>

  <Step title="Paste URL">
    Select **Chat with Websites** and paste the URL.
  </Step>

  <Step title="Get Summary">
    Skimming AI extracts the page content and generates a summary.
  </Step>

  <Step title="Ask Questions">
    Ask specific questions about the page content.
  </Step>
</Steps>

***

## How to Use (API)

### Step 1: Ingest the Website

```bash theme={null}
curl -X POST https://app.skimming.ai/back/source/v1/api/website \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "source": "https://example.com/article"
  }'
```

### Step 2: Chat with the Website

```bash theme={null}
curl -X POST https://app.skimming.ai/back/chat/v1/api/website/website \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "file_id": "YOUR_FILE_ID",
    "question": "What is the main argument of this article?",
    "streaming": false
  }'
```

***

## Use Cases

<CardGroup cols={2}>
  <Card title="Research" icon="magnifying-glass">
    Quickly summarize research articles and papers.
  </Card>

  <Card title="News" icon="newspaper">
    Get key points from news articles without reading everything.
  </Card>

  <Card title="Competitive Analysis" icon="chart-line">
    Analyze competitor websites and content.
  </Card>

  <Card title="Learning" icon="book">
    Summarize documentation and tutorials.
  </Card>
</CardGroup>
