Actions16
- Conversation Actions
- Todo Actions
- Fact Actions
- Location Actions
Overview
The node "BeeAI" allows interaction with the BeeAI API, providing operations on multiple resources including Conversations, Todos, Facts, and Locations. Specifically, for the Fact resource with the Get Fact operation, the node retrieves a specific fact by its unique identifier. This is useful in scenarios where you want to fetch detailed information about a particular fact stored or managed by the BeeAI service.
Practical examples include:
- Retrieving a fact's details to display in a dashboard.
- Using the fact data as input for further processing or decision-making workflows.
- Integrating fact retrieval into automated reporting or knowledge management systems.
Properties
Name | Meaning |
---|---|
Fact ID | The unique identifier of the fact to retrieve. This is a required string input property. |
Output
The node outputs JSON data representing the retrieved fact. The structure typically includes all relevant fields describing the fact as returned by the BeeAI API. The exact fields depend on the API response but generally contain identifiers, content, metadata, and any other fact-specific information.
No binary data output is indicated for this operation.
Dependencies
- Requires an API key credential for authenticating with the BeeAI API.
- The base URL for API requests is
https://api.bee.computer
. - Proper configuration of the API key credential within n8n is necessary for successful execution.
Troubleshooting
- Missing or invalid Fact ID: The node requires a valid Fact ID; ensure it is provided and correctly formatted.
- Authentication errors: Verify that the API key credential is correctly set up and has sufficient permissions.
- Network issues: Confirm network connectivity to
https://api.bee.computer
. - API errors: If the fact does not exist or is inaccessible, the API may return an error; check the Fact ID and permissions.
Links and References
- BeeAI API Documentation (assumed official API docs URL)
- n8n documentation on Using API Credentials