Overview
The Notra REST API provides programmatic access to your organization’s content. Built on OpenAPI 3.1.1 standards, the API enables you to retrieve posts and manage content workflows.Base URL
All API requests should be made to:API Version
The current API version isv1. All endpoints are prefixed with /v1:
OpenAPI Specification
The complete OpenAPI 3.1.1 schema is available at:The API uses Bearer token authentication for all
/v1/* endpoints. See the Authentication page for details.Quick Start
Here’s a minimal example to get you started:Available Endpoints
The Notra API currently provides the following content endpoints:- List Posts -
GET /v1/{organizationId}/posts- Retrieve a paginated list of posts - Get Post -
GET /v1/{organizationId}/posts/{postId}- Fetch a single post by ID
Response Format
All API responses are returned in JSON format with appropriate HTTP status codes:200- Success400- Invalid request parameters401- Missing or invalid API key403- Insufficient permissions or organization access denied503- Authentication service unavailable
Health Check
You can verify the API status using the health check endpoint:Next Steps
Authentication
Learn how to generate and use API keys
Rate Limits
Understand API rate limits and best practices