Skip to main content
POST
/
api
/
messari
/
assets
/
events
/messari/assets/events
curl --request POST \
  --url https://api.anysite.io/api/messari/assets/events \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "asset": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "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
asset
string
required

Asset slug or ticker symbol

Minimum string length: 1
Examples:

"bitcoin"

"ethereum"

"BTC"

count
integer
required

Max number of events to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

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[]