Endpoint Playground
Test Crawlora's Forbes article API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/forbes/article?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical HTTPS Forbes article URL |
{
"code": 200,
"data": {
"url": "https://www.forbes.com/sites/example/2026/09/21/example-story/",
"title": "Example story",
"description": "A concise example.",
"author": "Example Author",
"published_at": "2026-09-21T00:00:00Z",
"updated_at": "2026-09-21T01:00:00Z",
"channel": "Business",
"section": "Media",
"image_url": "https://images.forbes.com/example.jpg",
"template_type": "standard",
"content_paywall": "publication",
"body_html": "<p>First <em>paragraph</em> with a <a href=\"https://example.com\">link</a>.</p>",
"paragraphs": [
"First paragraph with a link."
],
"headings": [
"A heading"
],
"embeds": [
{
"id": 1,
"type": "image",
"position": "top",
"data": {
"caption": "Example image"
}
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns public Forbes article metadata and body content from Forbes's same-host content JSON endpoint. The response preserves rich body HTML, normalized paragraphs, headings, and public embed metadata. Accepts dated /sites/<author>/... and /councils/<council>/... URLs; it does not bypass login, subscription, or bot challenges.
{
"code": 200,
"data": {
"url": "https://www.forbes.com/sites/example/2026/09/21/example-story/",
"title": "Example story",
"description": "A concise example.",
"author": "Example Author",
"published_at": "2026-09-21T00:00:00Z",
"updated_at": "2026-09-21T01:00:00Z",
"channel": "Business",
"section": "Media",
"image_url": "https://images.forbes.com/example.jpg",
"template_type": "standard",
"content_paywall": "publication",
"body_html": "<p>First <em>paragraph</em> with a <a href=\"https://example.com\">link</a>.</p>",
"paragraphs": [
"First paragraph with a link."
],
"headings": [
"A heading"
],
"embeds": [
{
"id": 1,
"type": "image",
"position": "top",
"data": {
"caption": "Example image"
}
}
]
}
}curl "https://api.crawlora.net/api/v1/forbes/article?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"