Quickstart Guide

Get Started in 3 Steps

  1. Get an API key: Sign up for free and create an API token in your dashboard
  2. Send HTML: POST raw HTML to /v1/extract
  3. Receive JSON: Get clean title and content in structured JSON format

Your First Request

Here's a complete example using cURL:

curl -X POST https://api.content-extractor.devstools.net/v1/extract \
  -H "Authorization: Bearer ce_your_token_here" \
  -H "Content-Type: application/json" \
  -d '{
    "html": "<html><head><title>My Article</title></head><body><article><h1>Title</h1><p>Content here</p></article></body></html>"
  }'

Response

You'll receive JSON with extracted content:

{
  "title": "Title",
  "content": "Content here",
  "excerpt": "Content here",
  "language": "en"
}

Next Steps