Skip to main content
POST
/
api
/
aljazeera
/
articles
/aljazeera/articles
curl --request POST \
  --url https://api.anysite.io/api/aljazeera/articles \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "article": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "title": "<string>",
    "@type": "@aljazeera_article",
    "replacement_title": "<string>",
    "post_type": "<string>",
    "subheading": "<string>",
    "excerpt": "<string>",
    "text": "<string>",
    "published_at": "<string>",
    "updated_at": "<string>",
    "web_url": "<string>",
    "short_url": "<string>",
    "is_breaking": false,
    "is_developing": false,
    "is_live": false,
    "byline": "<string>",
    "authors": [],
    "sources": [],
    "image": "<string>",
    "image_caption": "<string>",
    "image_credit": "<string>",
    "gallery_images": [],
    "video": {
      "id": "<string>",
      "@type": "@aljazeera_video",
      "title": "<string>",
      "duration": "<string>",
      "url": "<string>",
      "aspect_ratio": "<string>"
    },
    "audio_url": "<string>",
    "audio_duration": 123,
    "primary_category": "<string>",
    "primary_tag": "<string>",
    "primary_where": "<string>",
    "categories": [],
    "tags": [],
    "where": [],
    "programs": [],
    "related_articles": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
article
string
required

Al Jazeera article URL or article slug

Minimum string length: 1
Examples:

"https://www.aljazeera.com/news/2026/6/11/thailand-court-sentences-two-men-to-death-for-2015-bangkok-bombing"

"thailand-court-sentences-two-men-to-death-for-2015-bangkok-bombing"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
title
string
required
@type
string
default:@aljazeera_article
replacement_title
string | null
post_type
string | null
subheading
string | null
excerpt
string | null
text
string | null
published_at
string | null
updated_at
string | null
web_url
string | null
short_url
string | null
is_breaking
boolean
default:false
is_developing
boolean
default:false
is_live
boolean
default:false
byline
string | null
authors
AljazeeraAuthor · object[]
sources
string[]
image
string | null
image_caption
string | null
image_credit
string | null
video
AljazeeraVideo · object
audio_url
string | null
audio_duration
number | null
primary_category
string | null
primary_tag
string | null
primary_where
string | null
categories
AljazeeraTerm · object[]
tags
AljazeeraTerm · object[]
where
AljazeeraTerm · object[]
programs
AljazeeraTerm · object[]