Event

Event entities encompass comprehensive data gathered from various global sources, detailing significant occurrences. These include corporate milestones, publications, and key events of businesses.

The /api/v2/entities/event/get/{FB_ENTITY_ID} endpoint in the Fusionbase API provides structured information about specific events. This endpoint is crucial for accessing detailed and structured data about events using their unique Fusionbase Entity ID (FB_ENTITY_ID).

Request Headers

  • X-API-KEY: Your Fusionbase API key. This key is required for authenticating your access to the API.

  • Content-Type: application/json. This header specifies the format of the request.

Request Structure

  • Access this endpoint via a GET request to https://api.fusionbase.com/api/v2/entities/event/get/{FB_ENTITY_ID}.

  • Replace {FB_ENTITY_ID} with the actual Fusionbase Entity ID of the event you wish to query.

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())

Response Structure

The response is a JSON object containing various details about the event:

  • fb_entity_id: The unique Fusionbase Entity ID of the event.

  • fb_entity_version: A version identifier for the entity's data.

  • entity_type: Type of the entity, here "EVENT".

  • entity_subtype: The subtype of the entity, e.g., "PUBLICATION".

  • external_ids: External identifiers associated with the event (if available).

  • name: The name of the event in different languages.

  • description: Short descriptions of the event in different languages.

  • start_date, live_date, end_date, announce_date: Relevant dates associated with the event.

  • status: The current status of the event, e.g., "FINISHED".

  • category: The category of the event, e.g., "MEMBER_EXIT_POSITION".

  • source: Identifier of the data source from which the information is derived.

  • details: Detailed information about the event, including roles and linked entities like persons and organizations.

  • origin_location, event_location, effect_location: Locations related to the event (if applicable).

Response Sample

Last updated

Was this helpful?