Authentication & API keys
Call the NextCLi API with an API key (kak_) via the X-API-Key header — base URL, auth and revocation.
Integrate NextCLi into your workflow with the RESTful API. The API is the same one the console uses, served under this site's /api path via the gateway. The base URL is https://www.nextcli.com/api/<service>/v1.
Authentication
Create an API key on the console's API credentials page (kak prefix), then send it as the X-API-Key header. The key is shown only once at creation; the server stores only its hash. Revoke it on the same page any time.
curl -H "X-API-Key: $NEXTCLI_API_KEY" \
https://www.nextcli.com/api/work/v1/projects
> Note: API-key access currently covers selected services (e.g. the work module); other endpoints require a logged-in session (Bearer JWT). This page will be updated as coverage expands.
Tip: create and manage your keys on the API credentials page.