QUICKSTART
GUIDEQuickstart
Fetch the article content from a web page with a simple GET request.
curl -X GET "https://api.eu.apyverse.com/namastesumalya/extract-article-content-from-web-page-api?url=https://apyhub.com" \
-H "apy-token: $APY_TOKEN"What you'll get back
Returns a JSON object with the article details, including url, title, author, platform, wordCount, articleBody, readingTime, publicationDate, and publicationName.
{
"url": "https://example.com/article",
"title": "Understanding Modern Content Pipelines",
"author": "John Doe",
"platform": "WordPress",
"wordCount": 850,
"articleBody": "This article explains how modern content pipelines work, including extraction, transformation, and delivery processes...",
"readingTime": "4 min",
"publicationDate": "2026-02-10",
"publicationName": "Example Blog"
}Loading your default key…About this endpoint
What it does
Extracts article metadata and body content from a web page identified by URL. The response returns a JSON object containing the source url and extracted article fields such as title, author, platform, wordCount, articleBody, readingTime, publicationDate, and publicationName.
Query Parameter(s)
| Attribute | Type | Mandatory | Description |
|---|---|---|---|
| url | String | Yes | The web page URL to extract article content from. |
Response
Returns a JSON object with fields for the source url and extracted article details. On success, the response includes url and article metadata/content fields: title, author, platform, wordCount, articleBody, readingTime, publicationDate, and publicationName.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| url | String | No | The source web page URL. |
| title | String | No | The extracted article title. |
| author | String | No | The article author. |
| platform | String | No | The publishing platform. |
| wordCount | Integer | No | The extracted article word count. |
| articleBody | String | No | The extracted article body text. |
| readingTime | String | No | The estimated reading time. |
| publicationDate | String | No | The publication date. |
| publicationName | String | No | The publication name. |