Skip to main content
GET
/
news
💼 Crypto News
curl --request GET \
  --url https://pro-api.coingecko.com/api/v3/news \
  --header 'x-cg-pro-api-key: <api-key>'
[
  {
    "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"
    ]
  }
]

Authorizations

x-cg-pro-api-key
string
header
required

Query Parameters

page
integer
default:1

page through results Default value: 1

Required range: 1 <= x <= 20
per_page
integer
default:10

total results per page Default value: 10

Required range: 1 <= x <= 20
coin_id
string

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

language
enum<string>
default:en

filter news by language Default value: en

Available options:
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
type
enum<string>
default:all

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

Available options:
all,
news,
guides

Response

200 - application/json

List latest crypto news

title
string

news article title

url
string

news article URL

image
string

news article image URL

author
string

news article author

posted_at
string

news article published timestamp in ISO 8601 format

type
enum<string>

news article type

Available options:
news,
guide
source_name
string

news article source name

related coin IDs

Example:
[
{
"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"]
}
]