GET /v1/:organizationId/posts/
Returns a paginated list of posts for the given organization.
Path Params
Required organization ID.
Query Params
Number of posts per page. Min 1, max 100.
Page number to fetch. Min 1.
Example Request
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://api.usenotra.com/v1/YOUR_ORGANIZATION_ID/posts/?sort=desc&limit=10&page=1"
{
"posts": [
{
"id": "YOUR_POST_ID",
"title": "February 12-19, 2026 Release",
"content": "<p>This week brought meaningful improvements to organization management, scheduling, and mobile responsiveness.</p><h2>Highlights</h2><h3>Organization membership unification with server validation</h3><p>Leave and delete operations now use consistent, validated server logic with atomic operations to prevent race conditions on concurrent requests.</p>",
"markdown": "This week brought meaningful improvements to organization management, scheduling, and mobile responsiveness.\n\n## Highlights\n\n### Organization membership unification with server validation\nLeave and delete operations now use consistent, validated server logic with atomic operations to prevent race conditions on concurrent requests.",
"contentType": "changelog",
"createdAt": "2026-02-19T11:32:54.082Z",
"updatedAt": "2026-02-19T11:32:54.082Z"
}
],
"pagination": {
"limit": 10,
"currentPage": 1,
"nextPage": null,
"previousPage": null,
"totalPages": 1,
"totalItems": 1
}
}