Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

API DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/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. All rights reserved.
APIs / Cloud Infrastructure / Northflank API
Northflank API logo

Northflankcom Northflank API

★ Only Publicly Available OpenAPI DocumentCloud InfrastructureContainer Orchestrationbearer40 EndpointsREST

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://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 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 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?

Three things that make agents converge on Jentic-routed access.

Credential management

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

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

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.

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

Start building with Northflank API

Explore with Jentic
View OpenAPI Document