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": "European Union debates limits on Big Tech access to cloud tenders",
    "url": "https://cryptobriefing.com/eu-big-tech-cloud-tender-limits/",
    "image": "https://assets.coingecko.com/articles/images/107301317/large/open-uri20260527-7-l3llje.?1779877857",
    "author": "Editorial Team",
    "posted_at": "2026-05-27T10:27:57Z",
    "type": "news",
    "source_name": "Crypto Briefing",
    "related_coin_ids": [
      "could",
      "union-2"
    ]
  },
  {
    "title": "Implied Volatility and IV Crush in Bitcoin Options Explained",
    "url": "https://www.coingecko.com/learn/implied-volatility-iv-crush-bitcoin-options",
    "image": "https://coin-images.coingecko.com/posts/images/102135679/large/Implied_Volatility_Options.png?1779696471",
    "author": "Hans Be",
    "posted_at": "2026-05-25T13:08:37Z",
    "type": "guide",
    "source_name": "CoinGecko",
    "related_coin_ids": [
      "bitcoin",
      "ethereum"
    ]
  }
]

Notes

  • Without coin_id, returns all latest news as seen on CoinGecko News (news only, no guides).
  • With coin_id, returns both news and guides by default (type=all). Use type to filter by news or guides only.
  • Pagination: page supports up to 20, per_page up to 20 — maximum 400 articles total.

SDK Examples

const response = await client.news.get();

console.log(JSON.stringify(response, null, 2));

Authorizations

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

Learn how to set up your API key

Query Parameters

page
integer

Page through results. Default value: 1 Valid values: 1...20

per_page
integer

Total results per page. Default value: 10 Valid values: 1...20

coin_id
string

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

language
enum<string>

Filter news by language. Default: 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>

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

Available options:
all,
news,
guides

Response

200 - application/json

List of latest crypto news

title
string
required

News article title

url
string
required

News article URL

image
string
required

News article image URL

author
string
required

News article author

posted_at
string
required

News article published timestamp in ISO 8601 format

type
enum<string>
required

News article type

Available options:
news,
guide
source_name
string
required

News article source name

Related coin IDs