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

Nexmo Messages API

Browse all Nexmo APIs
★ Only Publicly Available OpenAPI DocumentCommunicationsChat Messagingbasic, bearer1 EndpointsREST

For Agents

Send a message over SMS, MMS, WhatsApp, Viber Service Message, or Facebook Messenger from a single POST endpoint. The channel is selected by the request body.

Use for: Send a WhatsApp template message to a number, Send a one-off SMS notification through Nexmo, Send a Messenger image to a Facebook page subscriber, Trigger a Viber Service Message with text content

Not supported: Does not orchestrate failover across channels, register chat-app sender accounts, or surface inbound message webhooks — use only for sending a single message on one of the supported channels.

Jentic publishes the only available OpenAPI specification for Nexmo Messages API, keeping it validated and agent-ready. This messages-olympus slug indexes the same Messages 1.4.0 service exposed at /v1/messages — a single POST / endpoint that sends a message over SMS, MMS, WhatsApp, Viber Service Message, or Facebook Messenger based on the channel field in the request body. The slug name reflects an internal Vonage codename and is functionally identical to the messages-api slug.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Nexmo Messages API to your agent

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

Send an SMS via POST / with channel=sms and text content

Send a WhatsApp text or template message via channel=whatsapp

Send a Viber Service Message via channel=viber_service

Send a Facebook Messenger message via channel=messenger

Send rich content (image, audio, video, file) by setting message_type appropriately

Authenticate with either basic auth or an application-scoped JWT bearer token

Use Cases

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

★ Unified transactional notifications

Instead of integrating SMS, WhatsApp, Messenger, and Viber separately, applications send through one POST /. The channel field selects the path; the rest of the body carries to, from, and a message_type-shaped payload. Delivery webhooks for every channel arrive on the same application callback URL.

POST / with channel=sms, message_type=text, recipient in to, sender id in from, and message body in text.

WhatsApp template campaigns

Marketing teams send opt-in WhatsApp campaigns by submitting pre-approved templates through POST / with channel=whatsapp and message_type=template. The same endpoint returns a message_uuid, and read and delivery events fan out to the configured webhook for downstream analytics.

POST / with channel=whatsapp, message_type=template, and a template object holding name, namespace, and parameter array.

Single-call cross-channel send by an AI agent

An agent reaches a user without picking a channel ahead of time: through Jentic the agent searches once for 'send a message via nexmo', loads POST /, and executes with whichever channel the user is reachable on. The agent never owns retry timers, signing keys, or per-channel client code.

Search Jentic for 'send a message via nexmo', load POST /, and execute with channel chosen by the user's contact preference.

Key Endpoints

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

METHOD

PATH

DESCRIPTION

POST

/

Send a message on the channel specified in the request body

POST

/

Send a message on the channel specified in the request body

Why Jentic?

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

Credential management

Credential isolation

Basic credentials and application signing keys are encrypted in the Jentic vault. JWTs are minted server-side per call so the application private key never reaches the agent.

Intent-based discovery

Intent-based discovery

Agents search by intent (e.g., 'send a message via nexmo') and Jentic returns POST / with the full request schema, including each channel's message_type variants.

Time to first call

Time to first call

Direct integration: 1-2 days for JWT signing, channel-specific bodies, and webhooks. Through Jentic: under an hour.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Nexmo External Accounts API

→

Manages the Messenger, Viber, and WhatsApp sender accounts used by Messages

Register and link external accounts first; then send via Messages on those channels.

Complementary

Nexmo Dispatch API

→

Wraps Messages with multi-channel failover workflows

Use Dispatch when one notification should retry on a fallback channel; use Messages for single-channel sends.

Alternative

Twilio API

→

Twilio Programmable Messaging covers SMS, WhatsApp, and Messenger as a competing unified send

Pick Twilio when the existing stack already uses Twilio Messaging Services.

FAQs

Specific to using Nexmo Messages API through Jentic.

Why is there no official OpenAPI spec for Nexmo Messages 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 Messages 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 Messages API use?

Either HTTP basic auth (api_key/api_secret) or HTTP bearer with an application-scoped JWT. WhatsApp, Viber Service Message, and Messenger require the JWT path because those channels are tied to a Nexmo application.

Can I send template-based WhatsApp messages with this slug?

Yes. POST / with channel=whatsapp and message_type=template accepts a template object with name, namespace, and parameters. The 202 response carries a message_uuid for status correlation.

What are the rate limits for the Nexmo Messages API?

The OpenAPI spec does not declare rate limits. Channel-specific quotas apply: WhatsApp business tiers, Messenger policy windows, and SMS carrier throughput. The exact figures live on developer.nexmo.com per channel.

How do I send a Messenger image through Jentic?

Search Jentic for 'send a message via nexmo', load POST /, and execute with channel=messenger, message_type=image, the user's PSID in to, the page id in from, and an image url in the body.

How does messages-olympus differ from the messages-api slug?

Both indexes point at the same Messages 1.4.0 service at /v1/messages with the same single POST / endpoint. The messages-olympus name reflects an internal Vonage codename; either slug resolves to the same operation.

GET STARTED

Start building with Nexmo Messages API

Explore with Jentic
View OpenAPI Document