Articles
List Articles
Returns a paginated list of published articles with optional filtering by category, keyword, and featured status.
GET
List Articles
Documentation Index
Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
Use this file to discover all available pages before exploring further.
List Articles
Returns a paginated list of published articles for the current location. Supports filtering by category, keyword search, and featured flag.Authentication
No authentication required.Query Parameters
1-based page number.
Number of posts per page.
Filter to posts belonging to a specific category. Omit to return posts across all categories.
Keyword filter applied to post title and body. URL-encoded.
When
true, returns only articles marked as featured by the operator.Comma-separated list of field paths to include in the response. When provided, only the
specified fields are returned — useful for reducing payload size. Supports nested paths
using dot notation. Example:
_shape=BlogPosts.Records.Title,BlogPosts.Records.SummaryText,BlogPosts.Records.PublishDate.Response
Returns aBlogPostList object containing paginated articles, available categories, and the currently selected category.
Paginated wrapper containing article records.
Array of article summaries for the current page.
Current page number.
Total number of matching posts.
Total number of pages.
Whether there are more pages after the current one.
Array of all available article categories.
The currently selected category (when filtering by
categoryId).Examples
Fetch first page of posts
TypeScript Integration
List Articles