Konstantly API Documentation
Attention: This is a beta version of API documentation that may contain inaccuracies. Report errors to support@konstantly.comOverview
The Konstantly API is organized around REST. Our API has predictable resource-oriented URLs, accepts JSON-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.Base URL
All API requests should be made to:Authentication
The Konstantly API uses API keys to authenticate requests. You can get your API key from:- Go to your Konstantly site
- Navigate to Settings > API
- Copy your API key
X-API-KEY
header:
Keep your API keys secure and never share them in publicly accessible areas such as GitHub, client-side code, etc.
Request Format
The API accepts JSON-encoded request bodies and returns JSON-encoded responses. All requests should include the following headers:Pagination
Many endpoints return paginated results. By default, endpoints return 20 items per page. You can specify which page of results to return using theoffset
parameter:
The number of items to skip. Use this for pagination.
The number of items to return per page (where supported).