GET STARTED

Quick Start

Start fetching in less than 2 minutes.

Follow this guide to get your first clean Markdown response from any website.

1. Get your API Key

Sign up at link.sc/register to get your free API key. Every new account comes with 500 free requests per month.

2. Make your first request

Use curl or any HTTP client to fetch a page. Replace YOUR_API_KEY with your actual key.

curl -X POST "https://api.link.sc/v1/fetch" \
     -H "x-api-key: YOUR_API_KEY" \
     -H "Content-Type: application/json" \
     -d '{"url": "https://example.com"}'

3. Explore the response

The API returns a JSON object containing the clean Markdown content:

{
  "url": "https://example.com",
  "markdown": "# Example Domain\nThis domain is for use in illustrative examples..."
}

Next Steps