Preview Features
Early-access API surface for features under active development — subject to change without notice.
Preview features are live but not covered by Aidelly's backwards-compatibility guarantee. APIs may change, endpoints may be removed, or behavior may shift. Use for testing and integration, but don't rely on them in production until they graduate.
This page distinguishes between features with public API endpoints available now vs. coming to v1 in the next release.
Each preview feature carries this warning:
🚧 This feature is in public preview. The API contract is subject to change. We recommend monitoring the changelog for updates.
Scheduled Posts (Public API)
Control post scheduling and lifecycle through the public API.
Status: ✅ Public API endpoints available at /api/public/v1/scheduled-posts
Endpoints:
GET /api/public/v1/scheduled-posts — list scheduled posts
GET /api/public/v1/scheduled-posts/{id} — fetch one post
PATCH /api/public/v1/scheduled-posts/{id} — update a post
DELETE /api/public/v1/scheduled-posts/{id} — cancel a postExample:
curl "$AIDELLY_API_BASE/scheduled-posts" \
-H "Authorization: Bearer $AIDELLY_API_KEY" \
-H "x-aidelly-workspace-id: $WORKSPACE_ID"What might change:
- Field names and types in request/response schemas
- Query parameter filtering options
- Cancellation behavior
Post Approvals (Public API)
Access the team approvals queue through the public API (distinct from the content approval automations).
Status: ✅ Public API endpoints available at /api/public/v1/posts/approvals
Endpoints:
GET /api/public/v1/posts/approvals — list approval items
GET /api/public/v1/posts/approvals/{id} — fetch one approval
GET /api/public/v1/posts/approvals/{id}/events — approval audit eventsExample:
curl "$AIDELLY_API_BASE/posts/approvals" \
-H "Authorization: Bearer $AIDELLY_API_KEY" \
-H "x-aidelly-workspace-id: $WORKSPACE_ID"What might change:
- Audit event schema and event types
- Query parameter filtering
- Pagination structure
Preview Features Coming Next Release
The following features are available in the product UI and internal APIs, but public v1 endpoints are not yet available. Integration is available through the dashboard; public API support is planned for the next release.
E-commerce Integration
Connect and manage e-commerce stores (Shopify, WooCommerce, Etsy, Wix) and browse their product catalogs.
Current status: Internal API only (/api/ecommerce/*). Not callable via public v1.
Planned public API endpoints:
- List connected stores
- Browse products from stores
- Get store details
Post Signatures
Add digital signatures to social posts for added credibility.
Current status: Internal API only (/api/post-signatures/*). Not callable via public v1.
Planned public API endpoints:
- Create signatures for posts
- List signature templates
- Verify post signatures
Automation Queues
Advanced content automation with rule-based queueing and priority handling.
Current status: Internal API only (/api/automation/queues/*). Not callable via public v1.
Planned public API endpoints:
- List automation queues
- Create/update queue rules
- Trigger queue processing
Crosspost Routes
Define and manage routes for automatically repurposing content across platforms and brands.
Current status: Internal API only (/api/composer/routes/*). Not callable via public v1.
Planned public API endpoints:
- List route templates
- Create/update routes
- Apply routes to posts
Content Campaigns
Group related posts into campaigns for tracking and coordinated publishing.
Current status: Internal API only (/api/content/campaigns/*). Not callable via public v1.
Planned public API endpoints:
- List campaigns
- Create/update campaigns
- Get campaign analytics
Auto-Post Sources
Define content sources (RSS feeds, APIs, uploads) that automatically generate posts.
Current status: Internal API only (/api/automation/sources/*). Not callable via public v1.
Planned public API endpoints:
- List auto-post sources
- Create/update sources
- Trigger source processing
Migration Checklist
When a preview feature graduates to stable API, follow this checklist:
- Update documentation — move from Preview Features to the main API docs
- Test thoroughly — verify all examples work against the stable endpoint
- Update integrations — replace internal routes with public v1 endpoints
- Monitor metrics — track usage, error rates, and performance
- Plan deprecation — if the internal route changes, coordinate the transition
Support and Feedback
Have feedback on preview features or found a bug?
- Report issues in your workspace support chat
- Share feature requests or API design suggestions
- Ask questions in the MCP channel if you're using them programmatically
We actively gather feedback during the preview period to improve the API before stable release.
See Also
- API Overview — versioning policy
- Changelog — track preview feature updates
- Rate Limits — applies to preview endpoints too