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 / Cloud Foundry V3 API
Cloud Foundry V3 API logo

Cloud Foundry V3 API

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

Know of an official OpenAPI document? Contribute it →

For Agents

Manage Cloud Foundry applications, deployments, droplets, services, and organisations through the V3 cloud controller API using OAuth2 (UAA).

Use for: Push a new build of my app to Cloud Foundry without downtime, I want to start an app that is currently stopped, List all apps in the production space, Run a one-off database migration task against an app

Not supported: Does not provision the underlying foundation, manage UAA users directly, or operate BOSH directors - use for application-layer Cloud Foundry operations only.

Jentic publishes the only available OpenAPI specification for Cloud Foundry V3 API, keeping it validated and agent-ready. Cloud Foundry V3 is the cloud controller API for the open-source platform-as-a-service used by SAP BTP, IBM, and other distributions. It introduces support for one-off tasks, multi-process applications via Procfiles, direct access to packages and droplets, and zero-downtime deployments that change source code without stopping the app. The spec covers 238 endpoints across apps, builds, deployments, droplets, organisations, spaces, service instances, and audit events.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Cloud Foundry V3 API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Cloud Foundry V3 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%2Fcloudfoundry.org%2Fcloudfoundry" | 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%2Fcloudfoundry.org%2Fcloudfoundry" | 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 Cloud Foundry V3 API.

Push and start applications via /v3/apps and /v3/apps/{guid}/actions/start

Trigger zero-downtime deployments to swap droplets without restart

Run one-off tasks against an app for migrations or scheduled jobs

List and manage organisations, spaces, and role assignments

Bind service instances to apps and rotate credentials

Stream audit events and app usage events for compliance reporting

Use Cases

Patterns agents use Cloud Foundry V3 API for, with concrete tasks.

★ Continuous Deployment to Cloud Foundry

Drive zero-downtime application deployments from a CI pipeline. Upload a package, build a droplet, and POST a deployment to swap the running droplet on /v3/apps/{guid}/relationships/current_droplet. The deployment endpoint orchestrates rolling instance replacement so user traffic stays on the old droplet until the new one is healthy.

POST a package to /v3/apps/{guid}/packages, create a build, then PATCH /v3/apps/{guid}/relationships/current_droplet with the new droplet GUID.

One-Off Task Execution

Run database migrations, data backfills, or scheduled jobs as one-off tasks attached to an application. Tasks share the app's droplet and environment, so the same code that serves traffic also executes the task. Useful for replacing standalone job runners with platform-native invocations.

POST /v3/apps/{guid}/tasks with command='rake db:migrate' and poll the task GUID until state=SUCCEEDED.

Multi-Tenant Organisation Audit

Pull governance data across organisations and spaces for security and compliance reviews. Combine /v3/organizations, /v3/spaces, /v3/users, and /v3/audit_events to answer who did what, when, and against which app or service. Useful for SOC2 evidence collection on Cloud Foundry estates.

GET /v3/audit_events with created_ats[gte]=24h_ago and group results by organization_guid for the compliance report.

AI Agent Cloud Foundry Operations

Let a Jentic-powered SRE agent operate a Cloud Foundry estate. The agent searches Jentic for 'restart a Cloud Foundry app' or 'list apps in a space', loads the matching V3 operation, and executes it. UAA OAuth2 credentials stay in your Jentic One instance.

Search Jentic for 'start a Cloud Foundry app', load the startApp operation, and execute POST /v3/apps/{guid}/actions/start.

Key Endpoints

238 endpoints — jentic publishes the only available openapi specification for cloud foundry v3 api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/v3/apps

List applications

GET

/v3/apps/{guid}

Get a single application

POST

/v3/apps/{guid}/actions/start

Start an application

GET

/v3/apps/{guid}/env

Get application environment

PATCH

/v3/apps/{guid}/relationships/current_droplet

Swap the running droplet

GET

/v3/apps/{guid}/droplets/current

Get the current droplet for an app

GET

/v3/apps/{guid}/permissions

Get permissions for an app

GET

/v3/apps/{guid}/ssh_enabled

Check whether SSH is enabled

GET

/v3/apps

List applications

GET

/v3/apps/{guid}

Get a single application

POST

/v3/apps/{guid}/actions/start

Start an application

GET

/v3/apps/{guid}/env

Get application environment

PATCH

/v3/apps/{guid}/relationships/current_droplet

Swap the running droplet

GET

/v3/apps/{guid}/droplets/current

Get the current droplet for an app

GET

/v3/apps/{guid}/permissions

Get permissions for an app

GET

/v3/apps/{guid}/ssh_enabled

Check whether SSH is enabled

Why Jentic?

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

Setup

Setup

Wiring the Cloud Foundry V3 API by hand means running the UAA OAuth2 flow, refreshing scoped tokens, and resolving the per-landscape api.cf.{landscape}.hana.ondemand.com host across hundreds of endpoints yourself. Through Jentic you install once, import the Cloud Foundry V3 API from the API Directory, store the UAA credential once, and your agent calls it.

Permission scoping

Permission scoping

Cloud Foundry puts the app guid in the URL path (/v3/apps/{guid}/...), so a rule can pin your agent to one app: it can read that app's env, droplets, and permissions and nothing else. You choose the operations it may call, so lifecycle actions like starting the app or setting its current droplet are only in reach if you include them.

Credential management

Credential isolation

Your Cloud Foundry UAA credential 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 'start a Cloud Foundry app' or 'read an app's environment', and Jentic returns the matching V3 operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Kubernetes API

→

Container orchestrator that has largely replaced Cloud Foundry in new deployments.

Pick Kubernetes when starting fresh - choose Cloud Foundry V3 only when the team already runs CF foundations such as SAP BTP.

Alternative

Heroku Platform API

→

Hosted PaaS with a similar app/build/release model.

Choose Heroku when the team wants a fully-managed PaaS rather than self-hosting Cloud Foundry.

Complementary

GitHub API

→

Source control and CI hooks that trigger Cloud Foundry deployments.

Pair with Cloud Foundry for end-to-end commit-to-deploy automation.

FAQs

Specific to using Cloud Foundry V3 API through Jentic.

Why is there no official OpenAPI spec for Cloud Foundry V3 API?

The Cloud Foundry community publishes reference docs but not a maintained OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Cloud Foundry V3 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 Cloud Foundry V3 API use?

The API uses OAuth2 against UAA (User Account and Authentication), the Cloud Foundry identity service. Obtain a token from your foundation's UAA endpoint and pass it as Authorization: Bearer <token>. Through Jentic, UAA tokens are stored encrypted in the vault.

Can I do zero-downtime deployments through the V3 API?

Yes. PATCH /v3/apps/{guid}/relationships/current_droplet starts a rolling deployment that replaces instances in batches, keeping the old droplet serving traffic until the new one is healthy. The /v3/deployments resource exposes the in-flight state and lets you cancel.

How do I run a one-off task on Cloud Foundry through Jentic?

Run jentic search 'run a one-off task on Cloud Foundry', load the createTask operation, and execute POST /v3/apps/{guid}/tasks with the command and disk and memory limits. Jentic handles the UAA bearer token from the stored credential.

Does the API expose audit events?

Yes. GET /v3/audit_events returns platform-wide audit records, filterable by created_ats, target_guids, and types. This is the canonical source for compliance reporting on a Cloud Foundry estate.

How do I list applications in a specific space?

GET /v3/apps with the space_guids query parameter set to the target space GUID. The response is paginated; follow the next link until no more pages remain. The same pattern works for filtering by organization_guids.

Can I limit what my agent is allowed to do with the Cloud Foundry V3 API?

Yes. Because Jentic One is self-hosted, your own rules decide which Cloud Foundry operations and credentials the agent may use, and you pick exactly which V3 operations it can call. Since the app GUID sits in the URL path (/v3/apps/{guid}/...), you can pin the agent to a single app so it reads only that app's environment, droplets, and permissions and nothing else. Lifecycle actions such as starting the app via /v3/apps/{guid}/actions/start or swapping its current droplet are only in reach if you include those operations in the rule you set.

GET STARTED

Start building with Cloud Foundry V3 API

Explore with Jentic One
View OpenAPI Document