Event
Event entities encompass comprehensive data gathered from various global sources, detailing significant occurrences. These include corporate milestones, publications, and key events of businesses.
Request Headers
Request Structure
Request Samples
import requests
url = "https://api.fusionbase.com/api/v2/entities/event/get/FB_ENTITY_ID"
headers = {
"X-API-KEY": "<YOUR API KEY>",
"Content-Type": "application/json"
}
response = requests.get(url, headers=headers)
print(response.json())const axios = require('axios');
const url = "https://api.fusionbase.com/api/v2/entities/event/get/FB_ENTITY_ID";
const headers = {
"X-API-KEY": "<YOUR API KEY>",
"Content-Type": "application/json"
};
axios.get(url, { headers })
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error('Error:', error);
});Response Structure
Response Sample
Last updated
Was this helpful?
