curl --request GET \
--url https://api.messari.io/intel/v1/events/{eventId} \
--header 'X-Messari-API-Key: <api-key>'
{
"data": {
"event": {
"activationBlock": 123,
"category": "<string>",
"eventDate": "2023-11-07T05:31:56Z",
"eventDetails": "<string>",
"eventName": "<string>",
"globalEvent": true,
"id": "<string>",
"importance": "<string>",
"primaryAssets": [
{
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"symbol": "<string>"
}
],
"resources": [
{
"link": "<string>",
"name": "<string>"
}
],
"secondaryAssets": [
{
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"symbol": "<string>"
}
],
"status": "<string>",
"subcategory": "<string>",
"submissionDate": "2023-11-07T05:31:56Z",
"tag": "<string>",
"updateDetails": "<string>"
},
"eventHistory": [
{
"importance": "<string>",
"status": "<string>",
"submissionDate": "2023-11-07T05:31:56Z",
"updateDetails": "<string>"
}
]
},
"error": "<string>"
}
Retrieve an event and its history using the event ID
curl --request GET \
--url https://api.messari.io/intel/v1/events/{eventId} \
--header 'X-Messari-API-Key: <api-key>'
{
"data": {
"event": {
"activationBlock": 123,
"category": "<string>",
"eventDate": "2023-11-07T05:31:56Z",
"eventDetails": "<string>",
"eventName": "<string>",
"globalEvent": true,
"id": "<string>",
"importance": "<string>",
"primaryAssets": [
{
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"symbol": "<string>"
}
],
"resources": [
{
"link": "<string>",
"name": "<string>"
}
],
"secondaryAssets": [
{
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"symbol": "<string>"
}
],
"status": "<string>",
"subcategory": "<string>",
"submissionDate": "2023-11-07T05:31:56Z",
"tag": "<string>",
"updateDetails": "<string>"
},
"eventHistory": [
{
"importance": "<string>",
"status": "<string>",
"submissionDate": "2023-11-07T05:31:56Z",
"updateDetails": "<string>"
}
]
},
"error": "<string>"
}
Default response
The response is of type object
.