Endpoint Playground
Test Crawlora's Al Jazeera author profile 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/aljazeera/author" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | No | Al Jazeera author slug | |
| url | string | No | Canonical https://www.aljazeera.com/author/<slug> URL, as an alternative to slug | |
| page | integer | No | 1-based page number of the author's article list; overrides any page embedded in url |
{
"code": 200,
"data": {
"name": "Hakeem Najimdeen",
"slug": "hakeem-najimdeen",
"url": "https://www.aljazeera.com/author/hakeem-najimdeen",
"job_title": "CEO of Alafarika for Studies and Consultancy, Nigeria",
"bio": "Hakeem Najimdeen is a researcher and CEO of Alafarika for Studies and Consultancy, Nigeria. He writes on political, social and security issues in sub-Saharan Africa.",
"image_url": "https://www.aljazeera.com/wp-content/uploads/2026/07/Hakeem-Photo-BW.jpg?resize=400%2C400&quality=80",
"page": 1,
"articles": [
{
"title": "Nigeria's refining revolution has a monopoly problem",
"url": "https://www.aljazeera.com/opinions/2026/9/22/nigerias-refining-revolution-has-a-monopoly-problem",
"section": "opinions",
"published_at": "2026-09-22T06:15:15Z",
"image_url": "https://www.aljazeera.com/wp-content/uploads/2026/09/getty_6ab10a383e.jpg"
}
]
}
}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 one Al Jazeera author's public profile (name, job title, bio when available) and one page of their recent articles, identified by an author slug or a canonical author URL.
{
"code": 200,
"data": {
"name": "Hakeem Najimdeen",
"slug": "hakeem-najimdeen",
"url": "https://www.aljazeera.com/author/hakeem-najimdeen",
"job_title": "CEO of Alafarika for Studies and Consultancy, Nigeria",
"bio": "Hakeem Najimdeen is a researcher and CEO of Alafarika for Studies and Consultancy, Nigeria. He writes on political, social and security issues in sub-Saharan Africa.",
"image_url": "https://www.aljazeera.com/wp-content/uploads/2026/07/Hakeem-Photo-BW.jpg?resize=400%2C400&quality=80",
"page": 1,
"articles": [
{
"title": "Nigeria's refining revolution has a monopoly problem",
"url": "https://www.aljazeera.com/opinions/2026/9/22/nigerias-refining-revolution-has-a-monopoly-problem",
"section": "opinions",
"published_at": "2026-09-22T06:15:15Z",
"image_url": "https://www.aljazeera.com/wp-content/uploads/2026/09/getty_6ab10a383e.jpg"
}
]
}
}curl "https://api.crawlora.net/api/v1/aljazeera/author" \
-H "x-api-key: $CRAWLORA_API_KEY"