Actions17
Entry → Get Many
AI-generatedOverview
This node operation retrieves multiple entries (saved articles and URLs) from the Wallabag read-it-later service. It supports filtering, sorting, and pagination to customize the list of entries returned. This operation is useful for users who want to fetch a collection of saved articles based on specific criteria such as archive status, tags, date updated, and more. For example, a user can retrieve all public entries tagged with 'tech' updated since a certain date, or limit the results to a specific number for display or further processing.
Use Case Examples
- Fetch all entries that are not archived and tagged with 'reading'.
- Retrieve up to 50 entries sorted by creation date in descending order.
- Get all public entries updated since a specific Unix timestamp.
Properties
| Name | Meaning |
|---|---|
| Return All | Whether to return all results or only up to a given limit. |
| Limit | Maximum number of results to return when not returning all. |
| Filters | Various filters to narrow down the entries returned, including archive status, detail level, domain name, public status, update timestamp, sorting field and order, starred status, and tags. |
Output
JSON
json- Each item in the output array represents an entry object returned from Wallabag, containing the entry's data such as URL, title, tags, archive status, creation and update timestamps, and other metadata.
Dependencies
- Wallabag API with authentication credentials
Troubleshooting
- Common issues include authentication failures due to invalid API credentials, which result in error messages indicating authentication failure.
- Incorrect filter values or unsupported filter combinations may lead to empty results or API errors.
- Network connectivity issues can cause request failures; ensure the Wallabag service is reachable.
- If 'Return All' is set to false but the limit is not specified or set to zero, the node may return no results or default to a preset limit.
Links
- Wallabag API Documentation - Official API documentation for Wallabag, detailing endpoints and parameters used by this node.