Get news list with search, filtering and pagination support
Request Code Samples
curl --location --request GET 'https://api.cryptonewsapi.online/api/v1/news' \
--header 'X-API-Key: 8f81ef18-fce8-48fe-b169-44e49abae138'
Responses
application/json
Successfully retrieved news list
{
"status": "success",
"data": [
{
"id": "article-uuid",
"title": "Bitcoin Price Analysis",
"link": "https://example.com/article",
"description": "Bitcoin price shows strong momentum...",
"pubDate": "2023-01-01T00:00:00.000Z",
"source": {
"id": "source-uuid",
"name": "CryptoNews"
}
}
],
"pagination": {
"page": 1,
"limit": 20,
"totalItems": 100,
"totalPages": 5,
"hasNextPage": true,
"hasPrevPage": false
}
}
Modified at 2025-08-24 10:50:35