Skip to content

GET /v1/articles

The feed of watch articles aggregated by TechWatchAlert (news, advisories, publications). Global data — no project required.

GET /api/v1/articles
Authorization: Bearer twa_your_key_here
ParameterTypeDescription
qstringSearch in title and description
sourcestringFilter by exact source
pageintegerPage (default 1)
page_sizeintegerPage size, max 100 (default 20)
{
"items": [
{
"id": "018e9999-0000-7000-8000-000000000050",
"title": "Critical OpenSSH flaw enables remote code execution",
"description": "Researchers published the details...",
"published_at": "2024-07-01T08:30:00Z",
"source": "The Hacker News",
"author": "Jane Doe",
"url": "https://example.com/article",
"image_url": "https://example.com/cover.jpg"
}
],
"total": 1,
"page": 1,
"page_size": 20
}
FieldTypeDescription
idstring (UUID)Article identifier
titlestringTitle
descriptionstring | nullSummary
published_atstring (ISO 8601) | nullPublication date
sourcestring | nullSource (outlet / publisher)
authorstring | nullAuthor
urlstringLink to the original article
image_urlstring | nullCover image

Latest articles from a source

Fenêtre de terminal
curl -s \
-H "Authorization: Bearer twa_your_key_here" \
"https://app.techwatchalert.com/api/v1/articles?source=The%20Hacker%20News&page_size=10" \
| jq '.items[] | {title, published_at, url}'