Trawl

Documentation

Everything you need to turn any URL into clean, structured JSON.

Quickstart

One call. Structured JSON back.

Point Trawl at any URL and get clean, structured data — no browser to babysit.

bash
curl https://api.trawl.me/api/public/scrap \
  -H "Authorization: Bearer <YOUR_API_KEY>" \
  -H "Content-Type: application/json" \
  -d '{ "url": "https://example.com" }'
JSON response
{
  "url": "https://example.com",
  "status": "success",
  "data": { "title": "Example Domain", "text": "..." }
}