Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic Technology Ltd. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / Cloud Infrastructure / Northflank API
Northflank API logo

Northflankcom Northflank API

Agent-ready OpenAPI document · curated by JenticCloud InfrastructureContainer Orchestrationbearer40 EndpointsREST

Know of an official OpenAPI document? Contribute it →

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.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Northflank API to your agent

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.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fnorthflankcom%2Fnorthflank" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fnorthflankcom%2Fnorthflank" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic 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.

Capabilities

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

Use Cases

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

Key Endpoints

40 endpoints — jentic publishes the only available openapi specification for northflank api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/v1/

API health check

GET

/v1/addon-types

List available addon types

POST

/v1/projects/{projectId}/services

Create a service in a project

PATCH

/v1/projects/{projectId}/services/{serviceId}

Update a service

POST

/v1/projects/{projectId}/services/{serviceId}/builds

Trigger a service build

POST

/v1/projects/{projectId}/addons

Create an addon in a project

POST

/v1/projects/{projectId}/addons/{addonId}/backups

Create an addon backup

DELETE

/v1/projects/{projectId}/services/{serviceId}

Delete a service

GET

/v1/

API health check

GET

/v1/addon-types

List available addon types

POST

/v1/projects/{projectId}/services

Create a service in a project

PATCH

/v1/projects/{projectId}/services/{serviceId}

Update a service

POST

/v1/projects/{projectId}/services/{serviceId}/builds

Trigger a service build

POST

/v1/projects/{projectId}/addons

Create an addon in a project

POST

/v1/projects/{projectId}/addons/{addonId}/backups

Create an addon backup

DELETE

/v1/projects/{projectId}/services/{serviceId}

Delete a service

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring Northflank by hand means setting up its bearer token against api.northflank.com and threading that header through project, service, and addon calls yourself. Through Jentic you install once, import the Northflank API from the API Directory, store the token once, and your agent calls it.

Permission scoping

Permission scoping

Northflank puts the project and service ids in the URL path (/v1/projects/{projectId}/services/{serviceId}/...), so a rule can pin your agent to one project. You choose the operations it may call, so a destructive DELETE on a service is not included unless you add it.

Credential management

Credential isolation

Your Northflank bearer token is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'create a Northflank service' or 'trigger a build', and Jentic returns the matching operation with its input schema so the agent posts to /v1/projects/{projectId}/services without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Render API

→

Render is a similar managed container platform with simpler pricing.

Choose Render when the team wants a simpler model with fewer addon options; choose Northflank when you need richer addon and job orchestration.

Alternative

Vercel API

→

Vercel is the dominant frontend hosting platform with serverless backends.

Choose Vercel for Next.js and frontend-heavy apps; choose Northflank for long-running containers and managed databases.

Alternative

Kubernetes API

→

Kubernetes is the underlying primitive that Northflank manages on your behalf.

Choose Kubernetes when you need full control of the orchestrator; choose Northflank when you want the orchestrator hidden behind a managed API.

Alternative

DigitalOcean API

→

DigitalOcean App Platform offers a similar managed container experience.

Choose DigitalOcean when you also need raw VMs and block storage in the same vendor; choose Northflank when container-platform features are the focus.

FAQs

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 with Jentic One, the self-hosted execution layer.

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.

Can I limit what my agent is allowed to do with the Northflank API?

Yes. Because you run Jentic One yourself, your own rules decide which Northflank operations and which stored bearer token the agent may use. Since Northflank puts the project and service IDs in the URL path, such as /v1/projects/{projectId}/services/{serviceId}, you can pin the agent to a single project and grant only safe calls like POST /v1/projects/{projectId}/services or POST /v1/projects/{projectId}/services/{serviceId}/builds. A destructive call such as DELETE /v1/projects/{projectId}/services/{serviceId} stays out of reach unless you explicitly allow it.

GET STARTED

Start building with Northflank API

Explore with Jentic One
View OpenAPI Document