About Management API
- Check how to import content via Management API.
- Write scripts to automate content migrations between environments and projects with CLI.
- Use the API to integrate your project with translation management systems.
Making requests
To use Management API, ensure Management API is enabled for your environment, and use a valid personal API key.- To ensure Management API is enabled for your environment, go to Environment settings > General > Enabled APIs, and use the toggle to activate Management API.
- To get a valid API key, go to Project settings > API keys > Management API keys, and click Create Management API key.
https://manage.kontent.ai/v2. Requests must be made securely over HTTPS and authenticated with a valid personal API key. Requests to the API are rate limited and uncached. Learn more about our encryption security measures.
curl --request GET \
--url https://manage.kontent.ai/v2/projects/KONTENT_AI_ENVIRONMENT_ID/items \
--header 'Authorization: Bearer KONTENT_AI_MANAGEMENT_API_KEY' \
--header 'x-continuation: KONTENT_AI_CONTINUATION_TOKEN' \
--header 'Content-type: application/json'