# Markdown from Apify and Stripe URLs

**Use case:** 

Convert URLs like apify.com, stripe.com, and github.com into clean, readable Markdown. Get structured text with links, headings, and lists.

## Input

```json
{
  "urls": [
    "https://apify.com",
    "https://stripe.com",
    "https://github.com"
  ],
  "includeLinks": true,
  "maxConcurrency": 3
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "link"
  },
  "found": {
    "label": "Found",
    "format": "boolean"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "wordCount": {
    "label": "Word count",
    "format": "number"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [URL to Markdown Converter](https://apify.com/zinin/url-to-markdown) with a specific input configuration. Visit the [Actor detail page](https://apify.com/zinin/url-to-markdown) to learn more, explore other use cases, and run it yourself.