About this endpoint
What it does
Extracts article content and metadata from a webpage URL. The request sends a webpage url, and the response returns extracted article fields such as body, title, author, images, and related metadata.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| url | String | Yes | URL of the webpage to extract, audit, or validate content from. Must be an http or https URI. |
Response
Returns a JSON object with body, date, title, author, images, language, confidence, source_url, and word_count fields.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| body | String | No | Extracted article body text. |
| date | String | No | Article date in date format. |
| title | String | No | Extracted article title. |
| author | String | No | Extracted article author. |
| images | String Array | No | Array of image URLs (uri format). |
| language | String | No | Detected language of the article. |
| confidence | Object | No | Confidence scores for extracted content. Contains body, title, and author numeric fields. |
| confidence.body | Number | No | Confidence score for the extracted body. |
| confidence.title | Number | No | Confidence score for the extracted title. |
| confidence.author | Number | No | Confidence score for the extracted author. |
| source_url | String | No | Source URL of the extracted article. uri format. |
| word_count | Integer | No | Word count of the extracted article. |