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 / Communications / Nexmo / Application API
Application API logo

Nexmo Application API

Browse all Nexmo APIs
Community OpenAPI document · agent-readyCommunicationsVoice Telephonybasic5 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Provision and manage Vonage v2 applications - the multi-capability container that binds voice, messages, and verify webhooks to a Vonage account.

Use for: Create a new Vonage v2 application for messaging, List all my Vonage v2 applications, Get a Vonage application by id, Update the messages webhook on a Vonage application

Not supported: Does not place voice calls, send messages, provision numbers, or run verification - use for Vonage v2 application lifecycle and capability webhook configuration only.

The Vonage Application API V2 (application-api) is the current management surface for Vonage Applications - the container that bundles webhook URLs, signing keys, and capability flags across Voice, Messages, RTC, and Verify. It is backwards compatible with v1 applications. The 5 endpoints provide create, list, retrieve, update, and delete operations against /v2/applications and return the public key plus capability webhooks needed to drive Vonage's product APIs.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Application API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Application 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%2Fnexmo.com%2Fvonage-application-api" | 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%2Fnexmo.com%2Fvonage-application-api" | 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 Application API.

Create a Vonage v2 application bundling voice, messages, RTC, and verify capability webhooks in one call

List paginated v2 applications scoped to the authenticated Vonage account

Update an application's per-capability webhooks and signed webhook secret without rotating its keys

Retrieve an application's public key and capability set before binding a virtual number

Delete an unused application after its capabilities have been moved off

Manage the private/public key pair that signs JWTs for Voice and Conversation APIs

Use Cases

Patterns agents use Application API for, with concrete tasks.

★ Provision a multi-channel application

Building a customer service experience that combines voice IVR and WhatsApp messaging requires a single Vonage v2 application with both voice and messages capabilities configured. POST / accepts a capabilities object that declares answer_url, event_url, inbound_url, and status_url per channel. Once created, the same application_id is used to mint JWTs for both the Voice API and the Messages API.

POST / with name 'support-bot', voice capability webhooks, and messages capability webhooks for the support tenant.

Rotate webhook URLs after backend migration

When a backend handler is moved to a new domain, every Vonage v2 application needs its webhook URLs updated. PUT /{id} replaces the capabilities block, preserving the application's signing key and number bindings. A migration script can iterate via GET / and PUT each application in sequence, finishing in minutes.

For each application_id from GET /, PUT /{id} with capabilities.voice.webhooks.answer_url set to the new domain.

Audit application inventory across an account

Compliance reviews require a periodic export of every active application, its enabled capabilities, and its webhook URLs. GET / paginates through the full list. A weekly cron can write the inventory to long-term storage for review against the deployment registry. Roughly half a day of work.

Iterate GET / with page and page_size until exhausted and write each id, name, and capability set to an inventory file.

Agent-driven tenant onboarding

An onboarding agent provisioning a new tenant searches Jentic for 'create a vonage application', loads the POST / schema, and executes with the tenant's webhook URLs and a generated key pair. Jentic's vault holds the API key and secret; the agent never handles the credentials directly.

Search Jentic for 'create a vonage application', load the schema, and POST / with the new tenant's name and capability webhooks.

Key Endpoints

5 endpoints — the vonage application api v2 (application-api) is the current management surface for vonage applications - the container that bundles webhook urls, signing keys, and capability flags across voice, messages, rtc, and verify.

METHOD

PATH

DESCRIPTION

GET

/

List available applications

POST

/

Create an application

GET

/{id}

Get an application

PUT

/{id}

Update an application

DELETE

/{id}

Delete an application

GET

/

List available applications

POST

/

Create an application

GET

/{id}

Get an application

PUT

/{id}

Update an application

DELETE

/{id}

Delete an application

Why Jentic?

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

Setup

Setup

Wiring the Vonage Application API by hand means setting up HTTP Basic auth with your API key and secret, pointing at the v2/applications host, and managing the application lifecycle and capability webhooks yourself. Through Jentic you install once, import the Application API from the API Directory, store the key and secret once, and your agent calls it.

Permission scoping

Permission scoping

This API puts the application id in the URL path (/{id}), so a rule can pin your agent to one application: it can read and update that application and nothing else. You choose the operations it may call, so application creation and deletion are not included unless you add them.

Credential management

Credential isolation

Your Vonage API key and secret are stored once, encrypted, by your own Jentic One instance and injected as the Basic auth header at execution time. They never enter the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'list Vonage applications' or 'update an application's webhooks', and Jentic returns the matching Application API 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.

Complementary

Vonage Voice API

→

Vonage's voice calling API tied to Vonage applications.

Use alongside Application API to register the application that will place or receive calls.

Complementary

Vonage Messages API

→

Vonage's omnichannel messaging API for SMS, MMS, WhatsApp, Viber, and Facebook Messenger.

Use after creating an Application to send messages bound to that application's credentials.

Complementary

Vonage Numbers API

→

Vonage's virtual phone number provisioning API.

Use after creating an Application to assign and link Vonage virtual numbers to it.

Alternative

Twilio Accounts API

→

Twilio's account and subaccount management API.

Choose Twilio Accounts when the agent's primary stack is already Twilio for SMS, voice, or messaging.

Alternative

Plivo API

→

Plivo's SMS, voice, and account management platform.

Choose Plivo when an agent is already using Plivo for telephony or wants a Vonage alternative.

FAQs

Specific to using Application API through Jentic.

What authentication does the Vonage Application API V2 use?

It uses HTTP Basic authentication with the Vonage API key and API secret. Jentic stores both in the encrypted Jentic One instance and injects them per call so the agent never holds the raw secret.

Is the Vonage Application API V2 backwards compatible with v1?

Yes. Vonage states that applications created with v1 can also be managed via v2. The base path is /v2/applications and all v1 application_ids continue to resolve under v2 endpoints.

What are the rate limits for the Vonage Application API V2?

Application management is a control-plane API. Vonage does not publish a hard per-second cap in the spec; treat GET / pagination as eventually consistent and avoid hammering the endpoint in tight loops.

How do I create a v2 application through Jentic with the Vonage Application API V2?

Run pip install jentic, search Jentic for 'create a vonage application', load the POST / schema, and execute with the capabilities object. Credentials are pulled from the vault at call time.

Can I configure messages and voice capabilities on the same application with the Vonage Application API V2?

Yes. POST / and PUT /{id} accept a capabilities object with separate sub-objects for voice, messages, rtc, and verify, each with its own webhook URLs. A single application_id can carry several capabilities at once.

Does the Vonage Application API V2 return a private key on application creation?

Yes. POST / returns a keys.private_key in the response body that you must store immediately - Vonage does not retain it. The matching public_key is queryable via GET /{id} for verification.

Can I limit what my agent is allowed to do with the Vonage Application API V2?

Yes. Because you run Jentic One yourself, your own rules decide which of the Application API operations the agent may call, so you can allow read and update on a single application (GET /{id} and PUT /{id}) while leaving out creation (POST /) and deletion (DELETE /{id}). Since the application id sits in the URL path, a rule can pin the agent to one application id and block it from touching any other. The Vonage API key and secret stay encrypted in your instance and are injected only for the calls you have permitted.

GET STARTED

Start building with Application API

Explore with Jentic One
View OpenAPI Document