Overview and Authorization
Overview
Stack9 Experience API provides comprehensive endpoints for managing content, marketing, and AI services. This RESTful API enables developers to integrate with Stack9's Digital Experience Platform (DXP) to manage email campaigns, content pages, forms, AI assistants, and more.
Base URL
https://apis.app.stack9.co/api
For development environments:
http://localhost:3000/api
Authentication
All API requests require authentication using an API key. Include your API key in the request headers:
X-API-Key: your-api-key-here
Example Request with Authentication
curl -X GET \
https://apis.app.stack9.co/api/email_settings \
-H 'X-API-Key: your-api-key-here' \
-H 'Content-Type: application/json'
Request Format
- All requests must include the
Content-Type: application/jsonheader - Request bodies should be valid JSON
- Path parameters are denoted with curly braces in the endpoint documentation
- Query parameters should be URL-encoded