crypto-news-api
  1. News
crypto-news-api
  • News
    • Get news list
      GET
    • Get all sources
      GET
    • Get news by source
      GET
  • X (Twitter)
    • Get tweets from followed Twitter users
      GET
    • Get followed Twitter users list
      GET
  • Schemas
    • Schemas
      • Error
      • Success
      • PaginationInfo
      • Article
      • Source
  1. News

Get news list

GET
/news
Get news list with search, filtering and pagination support

Request

Query Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.cryptonewsapi.online/api/v1/news' \
--header 'X-API-Key: 8f81ef18-fce8-48fe-b169-44e49abae138'

Responses

🟢200成功
application/json
Successfully retrieved news list
Body

Example
{
    "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
    }
}
🟠401没有权限
🟠429429
Modified at 2025-08-24 10:50:35
Next
Get all sources
Built with