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 / Reports API
Reports API logo

Nexmo Reports API

Browse all Nexmo APIs
★ Only Publicly Available OpenAPI DocumentCommunicationsSms Messagingbasic6 EndpointsREST

For Agents

Pull SMS, voice, verify, and number-insight activity records from Vonage as either synchronous result sets or asynchronous CSV exports, then download the generated file by ID.

Use for: I need to export the last 30 days of SMS delivery records, Check whether my asynchronous report job has finished generating, Retrieve the CSV file for a completed Vonage report, List all report jobs created in the past week

Not supported: Does not send messages, place calls, or run verification challenges — use for retrieving historical Vonage activity records only.

Jentic publishes the only available OpenAPI specification for Reports API, keeping it validated and agent-ready. The Vonage Reports API exposes activity records for SMS, voice, verify, conversion, and number-insight traffic on a Vonage account, supporting both asynchronous bulk exports and synchronous lookups. Asynchronous reports are tuned for batches of millions of records (Vonage recommends capping each request at 20 million rows) while synchronous reports return small windows of records or a single record fetched by ID. Generated report files are downloaded through the media endpoint as CSV.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Reports API to your agent

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

Submit asynchronous report jobs for SMS, voice, verify, conversion, and number-insight records spanning up to 20 million rows

Poll the status of an in-flight report job and cancel it before completion if the date range needs to change

Fetch synchronous record batches scoped by product, start date, end date, and account ID for periodic dashboard refreshes

Retrieve a single message or call record by its individual ID for support investigations and audit trails

Download completed report CSV files through the media endpoint using the file ID returned in the report status response

List recent report jobs filed against the account so agents can resume work on a previously requested export

Use Cases

Patterns agents use Reports API for, with concrete tasks.

★ Bulk SMS Activity Export

Export millions of SMS delivery records from Vonage for analytics, billing reconciliation, or compliance archiving. The asynchronous Reports API accepts a date range and product filter, queues the job, and produces a downloadable CSV. Vonage recommends keeping each job under 20 million records and budgeting roughly 5-10 minutes per million rows generated. Status polling and cancellation let agents recover from misconfigured queries.

POST /v2/reports with product=SMS and a 7-day date range, poll GET /v2/reports/{report_id} until status is SUCCESS, then download the CSV via GET /v3/media/{file_id}

Synchronous Record Lookup

Fetch a small window of records or a single message record on demand for support tickets and dashboards. The synchronous endpoint returns records inline rather than queueing a job, making it suitable for tens of thousands of records or fewer. Lookups by message ID power deliverability triage when a customer reports a missing SMS or unanswered call.

Call GET /v2/reports/records with product=SMS, account_id, and a message_id query parameter to retrieve the delivery record for a specific message

Job Lifecycle Management

Track and clean up running report jobs. The list endpoint surfaces recent jobs with their statuses, the get endpoint returns progress for a single job, and the cancel endpoint stops a job that was started with incorrect parameters. This prevents wasted compute on bulk exports that target the wrong product or date range.

Call GET /v2/reports to list jobs, then DELETE /v2/reports/{report_id} to cancel any job whose date range exceeds 20 million records

AI Agent Reporting Pipeline

Through Jentic, an AI agent submits a Reports API job, polls for completion, and pipes the resulting CSV into a downstream data warehouse without ever holding the Vonage Basic auth credentials. The agent searches Jentic for the report intent, loads the schema for POST /v2/reports, and executes the call with structured arguments. Status polling and the media download are chained as additional Jentic operations.

Use Jentic search query 'export Vonage activity report' to load the create-report schema, execute with product=SMS and a date range, then chain status and media download calls

Key Endpoints

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

METHOD

PATH

DESCRIPTION

POST

/v2/reports

Create an asynchronous report job

GET

/v2/reports

List report jobs on the account

GET

/v2/reports/{report_id}

Get status of a report job

DELETE

/v2/reports/{report_id}

Cancel a running report job

GET

/v2/reports/records

Load records synchronously

GET

/v3/media/{file_id}

Download generated report data

POST

/v2/reports

Create an asynchronous report job

GET

/v2/reports

List report jobs on the account

GET

/v2/reports/{report_id}

Get status of a report job

DELETE

/v2/reports/{report_id}

Cancel a running report job

GET

/v2/reports/records

Load records synchronously

GET

/v3/media/{file_id}

Download generated report data

Why Jentic?

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

Credential management

Credential isolation

Vonage API key and secret are stored encrypted in the Jentic MAXsystem vault. Agents receive scoped execution tokens and the Basic auth header is assembled at call time, so the raw credentials never enter the agent context.

Intent-based discovery

Intent-based discovery

Agents search Jentic with intents like 'export Vonage SMS records' and Jentic returns the matching Reports operation with its parameter schema, so the agent can submit a job without browsing Vonage docs.

Time to first call

Time to first call

Direct Reports API integration: 1-2 days for Basic auth wiring, async polling, and CSV ingestion. Through Jentic: under 1 hour to search, load, and execute the create-report and download calls.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Vonage SMS API

→

Send the SMS messages whose delivery records the Reports API exports.

Choose SMS API to send messages; choose Reports API to retrieve historical delivery records for those messages.

Complementary

Vonage Voice API

→

Place and control the voice calls whose call records the Reports API surfaces.

Use Voice API to make calls in real time; use Reports API to pull aggregated call detail records for billing or analytics.

Alternative

Twilio REST API

→

Twilio's Usage and Messages list endpoints offer comparable historical activity exports.

Choose Twilio if the rest of the communications stack is already on Twilio; choose Vonage Reports if SMS, voice, and verify traffic runs through Vonage.

FAQs

Specific to using Reports API through Jentic.

Why is there no official OpenAPI spec for Reports API?

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

The Reports API uses HTTP Basic authentication with your Vonage API key as the username and API secret as the password. Through Jentic, those credentials sit encrypted in the MAXsystem vault and are injected at execution time, so agents never see the raw secret in their context.

Can I export more than 20 million records in one report?

Vonage recommends capping each asynchronous job at 20 million records by tightening the start_date and end_date parameters on POST /v2/reports. For larger windows, split the range into multiple jobs and chain the downloads through GET /v3/media/{file_id}.

How long does an asynchronous Vonage report take to generate?

Vonage estimates 5-10 minutes per million records for asynchronous jobs. Poll GET /v2/reports/{report_id} until the status field returns SUCCESS, then call GET /v3/media/{file_id} with the file_id from the response to download the CSV.

How do I look up a single SMS or call record without running a bulk job?

Use the synchronous endpoint GET /v2/reports/records with product, account_id, and the relevant message or call ID. This returns the record inline without queueing an asynchronous job, which is the right path for support investigations on a specific message.

How do I run a Vonage Reports job through Jentic?

Run pip install jentic, then use the Jentic search query 'export Vonage activity report' to find POST /v2/reports. Load the schema, execute with product and date range, and chain GET /v2/reports/{report_id} and GET /v3/media/{file_id} as follow-up Jentic calls. Sign up at https://app.jentic.com/sign-up.

GET STARTED

Start building with Reports API

Explore with Jentic
View OpenAPI Document