Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI 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 WorksJentic OneAPI 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 / Developer Tools / Nexmo / Nexmo Application API
Nexmo Application API logo

Nexmo Application API

Browse all Nexmo APIs
★ Only Publicly Available OpenAPI DocumentDeveloper ToolsProject Managementnone5 EndpointsREST

For Agents

Manage v1 Nexmo applications — the security and configuration container used by Voice and other Nexmo products. Five CRUD endpoints. Marked deprecated; use v2 for new work.

Use for: Create a new Nexmo application for a Voice integration, List the existing Nexmo applications on this account, Retrieve the configuration for a Nexmo application by id, Update the answer_url on a legacy Nexmo application

Not supported: Does not manage v2 capabilities objects, sign JWTs for application-scoped APIs, or send messages or calls — use only for legacy v1 application CRUD; use Application v2 for new integrations.

Jentic publishes the only available OpenAPI specification for Nexmo Application API, keeping it validated and agent-ready. This is version 1 of the Nexmo Application API and is marked deprecated by Vonage in favour of v2; it remains documented here for legacy integrations. A Nexmo application is the security and configuration container that binds together Voice answer URLs, event URLs, public key material, and channel-specific permissions. The five endpoints under /v1/applications cover full CRUD on the application resource: list, create, retrieve, update, and destroy.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Nexmo Application API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Nexmo 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://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 Nexmo Application API.

Create a new Nexmo application via POST / with name, type, answer_url, and event_url

Retrieve all applications belonging to the account via GET /

Retrieve a single application by id via GET /{app_id}

Update an application's URLs or name via PUT /{app_id}

Destroy an application via DELETE /{app_id}

Use Cases

Patterns agents use Nexmo Application API for, with concrete tasks.

★ Auditing legacy v1 applications before migration

Teams preparing to migrate from Application API v1 to v2 first need an inventory of what exists. GET / paginates the legacy applications; GET /{app_id} fetches each one's full configuration including answer_url, event_url, and public_key so the migration script can reconstruct the equivalent v2 capabilities object.

GET / to list applications, then GET /{app_id} for each id to capture answer_url, event_url, and public_key for migration.

Updating answer URLs across legacy applications

When the application's webhook hostname changes, every legacy app's answer_url and event_url need updating. PUT /{app_id} accepts the modified URL fields and returns the updated record. The whole operation is one call per application id obtained from GET /.

GET / to fetch the application list, then PUT /{app_id} for each application with the new answer_url and event_url.

Cleanup of unused legacy applications by an agent

An AI agent tidying up a Nexmo tenant can list v1 applications, identify the ones still pointing at a decommissioned hostname, and DELETE /{app_id} for each. Through Jentic the agent searches once for 'destroy a nexmo application', loads the operation, and executes per id without browsing legacy docs.

Search Jentic for 'destroy a nexmo application v1', load DELETE /{app_id}, iterate the GET / result, and execute DELETE per id.

Key Endpoints

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

METHOD

PATH

DESCRIPTION

GET

/

List all applications on the account

POST

/

Create a new application

GET

/{app_id}

Retrieve a single application by id

PUT

/{app_id}

Update an application's name or URLs

DELETE

/{app_id}

Destroy an application

GET

/

List all applications on the account

POST

/

Create a new application

GET

/{app_id}

Retrieve a single application by id

PUT

/{app_id}

Update an application's name or URLs

DELETE

/{app_id}

Destroy an application

Why Jentic?

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

Credential management

Credential isolation

Nexmo basic credentials are stored encrypted in the Jentic vault and are never returned to the agent. Calls to /v1/applications go through scoped execution that adds the auth header server-side.

Intent-based discovery

Intent-based discovery

Agents search by intent (e.g., 'create a nexmo application') and Jentic returns the matching v1 endpoint with its parameters, while clearly indicating v2 is the recommended path for new work.

Time to first call

Time to first call

Direct integration: a few hours for auth and CRUD wrappers. Through Jentic: under 30 minutes — search, load, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Nexmo Application API v2

→

The current, non-deprecated version of the same application management API

Use v2 for any new integration; v1 is only useful for migrating existing legacy applications.

Complementary

Nexmo Messages API

→

Sends messages bound to the application-scoped JWT this resource configures

Once an application exists, JWTs signed for it are used by Messages to send WhatsApp, Viber, and Messenger traffic.

Alternative

Twilio API

→

Twilio's Applications resource is the closest equivalent for binding voice and messaging webhooks

Pick Twilio when the underlying voice and messaging traffic already runs through Twilio.

FAQs

Specific to using Nexmo Application API through Jentic.

Why is there no official OpenAPI spec for Nexmo Application API?

Vonage (formerly Nexmo) does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Nexmo Application 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 Nexmo Application API use?

The OpenAPI spec does not declare a securityScheme on the v1 endpoints, but in practice these calls use HTTP basic auth with api_key and api_secret. Through Jentic the credential pair is stored encrypted and injected at execution time.

Should I use this v1 API or v2?

Vonage marks v1 as deprecated and recommends v2 (the application.v2 slug) for new work. v1 remains useful for inventory and migration: GET / lists existing v1 applications and GET /{app_id} fetches their config so migration scripts can rebuild the equivalents in v2.

What are the rate limits for the Nexmo Application API?

The OpenAPI spec does not declare rate limits for /v1/applications. Account-level throttles apply, and application CRUD is typically a low-volume operation relative to message or voice traffic.

How do I update an application's webhook URLs through Jentic?

Search Jentic for 'update a nexmo application', load PUT /{app_id}, and execute with the application id in the path and the new answer_url and event_url in the body.

How do I retrieve the public key associated with an application?

GET /{app_id} returns the application record including the public_key field. Use the same call before destroying the application if the keypair needs to be archived.

GET STARTED

Start building with Nexmo Application API

Explore with Jentic
View OpenAPI Document