Actions16
- Conversation Actions
- Todo Actions
- Fact Actions
- Location Actions
Overview
This node integrates with the BeeAI API to list facts stored or managed by the service. It allows users to retrieve a paginated list of facts, optionally filtered by whether each fact is confirmed. This functionality is useful in scenarios where you want to programmatically access verified or unverified factual data from BeeAI, such as for data analysis, reporting, or feeding into other workflows that require factual information.
For example, you might use this node to:
- Fetch all confirmed facts about a particular topic.
- Retrieve a specific page of facts when dealing with large datasets.
- Integrate fact data into dashboards or automated decision-making processes.
Properties
| Name | Meaning |
|---|---|
| Filter | Options to filter the list of facts. Currently supports filtering by "Confirmed" status. |
| Confirmed | Boolean option to include only facts that are confirmed (true) or not (false). |
| Pagination | Controls for paginating through the list of facts. |
| Page Number | The page number to fetch (minimum value 1). |
| Limit | Maximum number of results to return per page (minimum value 1). |
Output
The node outputs JSON data representing an array of facts retrieved from the BeeAI API. Each fact object typically includes details such as its content and confirmation status. The exact structure depends on the API response but generally contains fields describing each fact's attributes.
No binary data output is indicated for this operation.
Dependencies
- Requires an API key credential for authenticating with the BeeAI API.
- The node sends requests to
https://api.bee.computer. - Proper configuration of the API key credential within n8n is necessary for successful operation.
Troubleshooting
- Authentication errors: Ensure the API key credential is correctly configured and has the necessary permissions.
- Pagination issues: If requesting pages beyond the available range, the API may return empty results; verify the total number of pages.
- Invalid filter values: Only boolean values are accepted for the "Confirmed" filter; providing other types may cause errors.
- Network or API downtime: Check network connectivity and BeeAI API status if requests fail unexpectedly.
Links and References
- BeeAI API Documentation (assumed base URL, check official docs for detailed endpoints)
- n8n documentation on API credentials and pagination handling