Skip to main content
POST
/
api
/
messari
/
news
/
search
/messari/news/search
curl --request POST \
  --url https://api.anysite.io/api/messari/news/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "asset": "<string>",
  "videos_only": false,
  "date_from": "<string>",
  "date_to": "<string>"
}
'
[
  {
    "id": "<string>",
    "@type": "MessariFeedItem",
    "description": "<string>",
    "url": "<string>",
    "image": "<string>",
    "published_at": "<string>",
    "content_type": "<string>",
    "source_type": "<string>",
    "is_video": true,
    "is_price_analysis": true,
    "source": {
      "@type": "MessariFeedSource",
      "id": "<string>",
      "name": "<string>",
      "image": "<string>"
    },
    "assets": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max number of news items to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
asset
string | null

Limit news to a specific asset by slug or ticker symbol

videos_only
boolean
default:false

Return only videos and podcasts

date_from
string | null

Only news on or after this date (YYYY-MM-DD)

date_to
string | null

Only news on or before this date (YYYY-MM-DD)

Response

Successful Response

id
string
required
@type
string
default:MessariFeedItem
description
string | null
url
string | null
image
string | null
published_at
string | null
content_type
string | null
source_type
string | null
is_video
boolean | null
is_price_analysis
boolean | null
source
object
assets
object[]