For Agents
Provision and manage Northflank projects, services, jobs, and managed addons such as databases and caches on behalf of engineering teams.
Use for: Create a new Northflank service in project alpha that runs my container image, Trigger a build on the api service so it deploys the latest commit, Provision a managed PostgreSQL addon in project alpha, List backups for the production database addon
Not supported: Does not handle observability dashboards, billing, or DNS — use for project, service, job, and managed addon operations on the Northflank platform only.
Jentic publishes the only available OpenAPI specification for Northflank API, keeping it validated and agent-ready. Northflank is a managed container platform that lets teams deploy services, jobs, and managed addons without operating their own Kubernetes cluster. The API exposes projects, services, jobs, addons (databases, caches, search), addon backups, builds, and platform health, scoped under a project ID. Engineering teams use it to script deployments, manage ephemeral preview environments, and integrate Northflank into CI/CD pipelines.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Northflank API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Northflank API.
List and inspect available addon types before provisioning a database or cache
Create, update, and delete services within a Northflank project
Trigger service builds via the API for CI/CD-driven deploys
Provision managed addons such as PostgreSQL or Redis under a project
Take and list backups of an addon for disaster recovery
Create one-off jobs that run a container to completion and then terminate
Check API health to confirm the platform is reachable before automation runs
Patterns agents use Northflank API for, with concrete tasks.
★ CI/CD-driven service deploys
Engineering teams using GitHub Actions or GitLab CI to deploy to Northflank trigger builds via the API on every merge to main. POST /v1/projects/{projectId}/services/{serviceId}/builds kicks the build, and PATCH /v1/projects/{projectId}/services/{serviceId} updates resource plans when scale changes. This replaces clicking through the Northflank UI and gives the team an auditable deploy history in CI logs.
POST /v1/projects/alpha/services/api/builds and poll until build status reaches succeeded, then return the deployed image tag
Ephemeral preview environments
Teams running per-PR preview environments use the Northflank API to create a service per PR, run smoke tests, and tear it down on merge or close. POST /v1/projects/{projectId}/services creates the service in a project scoped to previews, and DELETE /v1/projects/{projectId}/services/{serviceId} removes it. This pattern keeps stale preview environments from accumulating across hundreds of PRs.
Create a service named 'pr-1234' in project previews with the PR's image tag, then delete it when the PR closes
Managed database lifecycle
Teams using Northflank's managed addons need to back up, restore, and resize databases without manual ticket flow. POST /v1/projects/{projectId}/addons creates a managed addon, /addons/{addonId}/backups lists and creates backups, and PATCH on the addon resizes it. An agent can run nightly backup verification and resize during scheduled maintenance windows.
POST /v1/projects/alpha/addons/db/backups to take a backup, then list backups to confirm it succeeded
AI agent for platform operations
An on-call engineer asking an AI agent to scale up the API service can have the agent use Jentic to find the matching Northflank operation, PATCH the service's resource plan, and confirm the change took effect. The agent never holds the bearer token directly; Jentic injects it from the encrypted vault.
Through Jentic, search 'update a Northflank service', load PATCH /v1/projects/{projectId}/services/{serviceId}, and execute with the new resource plan
40 endpoints — jentic publishes the only available openapi specification for northflank api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/v1/
API health check
/v1/addon-types
List available addon types
/v1/projects/{projectId}/services
Create a service in a project
/v1/projects/{projectId}/services/{serviceId}
Update a service
/v1/projects/{projectId}/services/{serviceId}/builds
Trigger a service build
/v1/projects/{projectId}/addons
Create an addon in a project
/v1/projects/{projectId}/addons/{addonId}/backups
Create an addon backup
/v1/projects/{projectId}/services/{serviceId}
Delete a service
/v1/
API health check
/v1/addon-types
List available addon types
/v1/projects/{projectId}/services
Create a service in a project
/v1/projects/{projectId}/services/{serviceId}
Update a service
/v1/projects/{projectId}/services/{serviceId}/builds
Trigger a service build
/v1/projects/{projectId}/addons
Create an addon in a project
/v1/projects/{projectId}/addons/{addonId}/backups
Create an addon backup
/v1/projects/{projectId}/services/{serviceId}
Delete a service
Three things that make agents converge on Jentic-routed access.
Credential isolation
Northflank bearer tokens are stored encrypted in the Jentic vault. Agents receive scoped access; raw tokens never appear in the agent's context or logs.
Intent-based discovery
Agents search Jentic by intent (e.g. 'create a Northflank service') and Jentic returns the matching operation with its input schema, so the agent posts to /v1/projects/{projectId}/services without reading docs.
Time to first call
Direct Northflank integration: 1-2 days for auth, project scoping, and build polling. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using Northflank API through Jentic.
Why is there no official OpenAPI spec for Northflank API?
Northflank does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Northflank API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Northflank API use?
Northflank uses HTTP bearer authentication. Generate an API token in the Northflank web app and pass it in the Authorization header. Through Jentic, the token is held in the encrypted vault and never enters the agent's prompt context.
Can I trigger a service build through the Northflank API?
Yes. POST /v1/projects/{projectId}/services/{serviceId}/builds starts a build for the service. Use this in CI to deploy on merge — the response returns a build ID you can poll via the build read endpoints to track progress.
What are the rate limits for the Northflank API?
Northflank does not encode public rate limits in this spec. Treat the API as bound by reasonable platform-engineering throughput; cache /v1/addon-types responses and avoid polling /v1/projects/{projectId}/services more than once per 30 seconds in monitoring loops.
How do I provision a managed Postgres addon through Jentic?
Install with pip install jentic, then search 'create a Northflank addon', load POST /v1/projects/{projectId}/addons, and execute with the addon type set to a Postgres variant from /v1/addon-types. The response includes the addon ID for backups and connection-string lookups.
Does the Northflank API support managed addon backups?
Yes. GET /v1/projects/{projectId}/addons/{addonId}/backups lists existing backups and POST on the same path triggers a new backup. Use this for scheduled disaster-recovery drills as well as ad-hoc snapshots before risky migrations.
GET STARTED