POST
/
web_reader
Web Reader
curl --request POST \
  --url https://web-reader-api.starkai.io/web_reader \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '{
  "web_url": "https://example.com/article"
}'
{
  "status": true,
  "message": "Successfully converted web content to markdown.",
  "data": {
    "markdown_content": "# Article Title\n\nThis is the extracted content..."
  }
}
Check our Documention Page to create a new API Key

Authorizations

X-Api-Key
string
header
required

API Key for authentication

Body

application/json

Web URL to convert to markdown

The body is of type object.

Response

200
application/json

Web content successfully converted to markdown

The response is of type object.