Skip to main content
GET
/
v3
/
currencies
/
{id}
/
news
Currency related news
curl --request GET \
  --url https://api.cryptorank.io/v3/currencies/{id}/news \
  --header 'X-Api-Key: <api-key>'
[
  {
    "id": 1234567,
    "title": "Bitcoin breaks new all-time high",
    "heroText": {},
    "source": "CoinDesk",
    "sourceUrl": "https://www.coindesk.com/markets/2024/01/01/btc-ath",
    "previewImage": "https://img.cryptorank.io/news/abc.jpg",
    "publishedAt": "2024-01-01T12:34:56.000Z",
    "language": "en",
    "tags": [
      {
        "key": "defi",
        "name": "DeFi"
      }
    ]
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.cryptorank.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Api-Key
string
header
required

Path Parameters

id
integer
required

Numeric coin id.

Example:

1

Query Parameters

limit
number
default:20
Required range: 1 <= x <= 100
cursor
string

Opaque pagination cursor returned by the previous response as meta.nextCursor. Pass it back unchanged to fetch the next page.

language
enum<string>

Filter by article language. Omit to return all languages.

Available options:
en,
ru,
es,
zh,
tr,
vi,
pt,
ko
from
string

Return articles published on or after this moment (ISO 8601 or Unix timestamp in seconds/milliseconds).

to
string

Return articles published on or before this moment (ISO 8601 or Unix timestamp in seconds/milliseconds).

Response

id
number
required
Example:

1234567

title
string
required
Example:

"Bitcoin breaks new all-time high"

heroText
object
required

Short preview / lead text. Null when the source did not provide one.

source
string
required

Source name.

Example:

"CoinDesk"

sourceUrl
object
required

Link to the original article. Null when the source URL is unavailable.

Example:

"https://www.coindesk.com/markets/2024/01/01/btc-ath"

previewImage
object
required

Preview image URL. Null when the article has no image.

Example:

"https://img.cryptorank.io/news/abc.jpg"

publishedAt
string
required

Publication timestamp (ISO 8601).

Example:

"2024-01-01T12:34:56.000Z"

language
enum<string> | null
required

Article language. Null when the source did not declare one.

Available options:
en,
ru,
es,
zh,
tr,
vi,
pt,
ko
Example:

"en"

tags
object[]
required

Tags attached to the article. Each item has a stable key (slug) and a human-readable name.