About this endpoint
What it does
Analyzes an article from a web page URL and returns structured metadata about the page, including entities, SEO score, content characteristics, and quality signals.
Query Parameter(s)
| Attribute | Type | Mandatory | Description |
|---|---|---|---|
| url | String | Yes | The web page URL to analyze. |
Response
Returns a JSON object containing the analyzed page URL plus article analysis fields. The top-level response includes url as a string, entities as an object, seo_score as an integer, content_type as a string, reading_level as a string, emotional_tone as a string, and quality_signals as an object.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| url | String | No | The analyzed page URL. |
| entities | Object | No | Named entities extracted from the article. Includes people, locations, and organizations as arrays of strings. |
| entities.people | String Array | No | People mentioned in the article. |
| entities.locations | String Array | No | Locations mentioned in the article. |
| entities.organizations | String Array | No | Organizations mentioned in the article. |
| seo_score | Integer | No | SEO score for the article. |
| content_type | String | No | Content type of the article. |
| reading_level | String | No | Reading level of the article. |
| emotional_tone | String | No | Emotional tone of the article. |
| quality_signals | Object | No | Quality-related signals for the article. Includes clarity, engagement, and originality as strings. |
| quality_signals.clarity | String | No | Clarity signal. |
| quality_signals.engagement | String | No | Engagement signal. |
| quality_signals.originality | String | No | Originality signal. |