News

๐Ÿ’ผ Crypto News

This endpoint allows you to query the latest crypto news and guides on CoinGecko

get/news

Query parameters

pageinteger

page through results Default value: 1

per_pageinteger

total results per page Default value: 10

coin_idstring

filter news by coin ID *refers to /coins/list.

language'en' | 'ru' | 'de' | 'pl' | 'es' | 'vi' | 'fr' | 'pt-br' | 'ar' | 'bg' | 'cs' | 'da' | 'el' | 'fi' | 'he' | 'hi' | 'hr' | 'hu' | 'id' | 'it' | 'ja' | 'ko' | 'lt' | 'nl' | 'no' | 'ro' | 'sk' | 'sl' | 'sv' | 'th' | 'tr' | 'uk' | 'zh' | 'zh-tw'

filter news by language Default value: en

type'all' | 'news' | 'guides'

filter news by type Default value: all Note: guides filter is only applicable if coin_id is specified and valid

Response

List latest crypto news

titlestring

news article title

urlstring

news article URL

imagestring

news article image URL

authorstring

news article author

posted_atstring

news article published timestamp in ISO 8601 format

type'news' | 'guide'

news article type

source_namestring

news article source name

related_coin_idsstring[]

related coin IDs

Example response

[
  {
    "title": "Bitcoin stalls: Why BTC risks $65K fall despite $23M whale buy",
    "url": "https://ambcrypto.com/bitcoin-stalls-why-btc-risks-65k-fall-despite-23m-whale-buy/",
    "image": "https://assets.coingecko.com/articles/images/106731445/large/open-uri20260327-7-fuq6r9.?1774609423",
    "author": "Gladys Makena",
    "posted_at": "2026-03-27T11:00:42Z",
    "type": "news",
    "source_name": "AMBCrypto",
    "related_coin_ids": [
      "1-token-2",
      "1-token",
      "bitcoin"
    ]
  },
  {
    "title": "How to Fetch Historical Crypto Data with Python",
    "url": "https://www.coingecko.com/learn/how-to-fetch-historical-crypto-data-with-python",
    "image": "https://coin-images.coingecko.com/posts/images/102135584/large/How_To_Fetch_Historical_Crypto_Data_with_Python.png?1771925926",
    "author": "Brian Lee",
    "posted_at": "2026-02-24T06:26:58Z",
    "type": "guide",
    "source_name": "CoinGecko",
    "related_coin_ids": [
      "bitcoin"
    ]
  }
]

Changes