Skip to main content
POST
/
api
/
aljazeera
/
articles
/
search
/aljazeera/articles/search
curl --request POST \
  --url https://api.anysite.io/api/aljazeera/articles/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 50,
  "timeout": 300
}
'
[
  {
    "title": "<string>",
    "@type": "@aljazeera_search_result",
    "web_url": "<string>",
    "excerpt": "<string>",
    "published_at": "<string>",
    "updated_at": "<string>",
    "image": "<string>",
    "thumbnail": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
keyword
string
required

Search keyword

Minimum string length: 1
count
integer
required

Max number of results

Required range: 1 <= x <= 100
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

title
string
required
@type
string
default:@aljazeera_search_result
web_url
string | null
excerpt
string | null
published_at
string | null
updated_at
string | null
image
string | null
thumbnail
string | null