Skip to main content
POST
/
scrape
/
document
cURL
curl --request POST \
  --url https://exscrapeolate/scrape/document \
  --header 'Content-Type: application/octet-stream' \
  --data '"<string>"'
{
  "content": "This is could be **your** scraped data",
  "timings": {
    "total": 0.5,
    "download": 0.4,
    "parse": 0.1
  }
}

Body

application/octet-stream

Arbitrary document that is convertable by Apache Tika

Response

200 - application/json

Scraped Data Response

content
string<markdown>

Human and machine readable cleaned markdown text of the scraped data

Example:

"This is could be **your** scraped data"

timings
object