GET
$0.07 default
/everythingDescription
Full-text search across every article NewsAPI indexes, sortable by relevance/date and filterable by source, language and date range.
Pricing
$0.07 default
Parameters
{
"language": {
"description": "2-letter language code.",
"example": "en",
"required": false,
"type": "string"
},
"pageSize": {
"description": "Results per page (max 100).",
"example": "20",
"required": false,
"type": "integer"
},
"q": {
"description": "Keywords or phrase to search for.",
"example": "bitcoin",
"required": true,
"type": "string"
},
"sortBy": {
"description": "relevancy, popularity or publishedAt.",
"example": "publishedAt",
"required": false,
"type": "string"
}
}Response schema
{
"properties": {
"articles": {
"items": {
"properties": {
"author": {
"type": [
"string",
"null"
]
},
"content": {
"type": [
"string",
"null"
]
},
"description": {
"type": [
"string",
"null"
]
},
"publishedAt": {
"type": "string"
},
"source": {
"type": "object"
},
"title": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"status": {
"type": "string"
},
"totalResults": {
"type": "integer"
}
},
"type": "object"
}Example response
{
"articles": [
{
"author": "Matt Novak",
"content": "Bitcoin climbed…",
"description": "The cryptocurrency rallied on…",
"publishedAt": "2026-07-02T09:12:00Z",
"source": {
"id": null,
"name": "Gizmodo.com"
},
"title": "Bitcoin Surges Past New High",
"url": "https://gizmodo.com/…"
}
],
"status": "ok",
"totalResults": 10452
}