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 / Marketing / Text2VIP API
Text2VIP API logo

Messagingchannel Text2VIP API

✓ Official Vendor SpecMarketingMarketing AutomationapiKey6 EndpointsREST

For Agents

Manage SMS marketing subscriptions on Text2VIP - create, update, list, search, and remove subscribers under a user account.

Use for: Add a new SMS subscriber to my Text2VIP account, List all subscribers on the loyalty list, Find subscribers matching a keyword search, Update the profile of an existing subscriber

Not supported: Does not handle email marketing, voice campaigns, or message delivery itself - use for managing SMS marketing subscriptions on Text2VIP only.

Text2VIP is an SMS marketing platform that drives customer engagement by managing keyword-based subscriptions, campaign sends, and distribution lists. The REST surface lets agents create, list, retrieve, update, delete, and search subscriptions for a given account, with all operations scoped under a `{user_name}` path segment so multi-account orchestration is straightforward. It is suited to retailers, restaurants, and service businesses running SMS-loyalty programs that capture opt-ins via a keyword or short code.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Text2VIP API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Text2VIP 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%2Fmessagingchannel.com%2Ftext2vip" | 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%2Fmessagingchannel.com%2Ftext2vip" | 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 Text2VIP API.

Create a new SMS marketing subscription when a customer opts in via a keyword

List active subscriptions for a Text2VIP user account to drive a campaign send

Look up a single subscription by ID to confirm opt-in status before messaging

Update a subscription's profile details when the customer's preferences change

Search subscriptions by attribute to build segmented audiences for targeted campaigns

Remove a subscription when the customer opts out to stay compliant with SMS regulations

Use Cases

Patterns agents use Text2VIP API for, with concrete tasks.

★ Keyword Opt-In Capture

When a customer texts a keyword to a Text2VIP short code, the platform records the opt-in. Agents can mirror this in their own onboarding flow by calling PUT /{user_name}/subscription to register a subscriber programmatically with profile data captured from a web form or POS system. The subscription becomes immediately addressable from later campaign sends.

Call PUT /{user_name}/subscription with the customer's phone number and profile fields when they submit the loyalty signup form

Audience Segmentation for Campaigns

Search the distribution list to build a segmented audience before a campaign send - for example, customers with a particular VIP tier or a specific home store. The search endpoint returns matching subscriptions which the agent can then iterate over for targeted messaging. This keeps blast volumes lower and engagement higher.

GET /{user_name}/subscription/search with attribute filters to build a VIP-tier audience before triggering an SMS campaign

Compliant Opt-Out Handling

When a customer replies STOP or otherwise asks to be removed, the agent calls DELETE /{user_name}/subscription/{subscription_id} to remove the subscription record. This keeps the distribution list compliant with SMS marketing regulations and prevents continued sends. Pairing this with a regular search for inactive subscribers helps keep the list clean.

DELETE /{user_name}/subscription/{subscription_id} when an opt-out reply is received and confirm the record is gone with a follow-up GET

AI Agent Integration via Jentic

An AI agent uses Jentic to discover Text2VIP by intent search ('add an SMS subscriber'). Jentic returns the subscription operations with their input schemas, so the agent can register, update, or remove a subscriber in a single load-and-execute step. The Text2VIP API key is held in your Jentic One instance and never enters the agent's prompt.

Use Jentic to search 'add an SMS subscriber', load the PUT /{user_name}/subscription schema, and execute it to register a new opt-in

Key Endpoints

6 endpoints — text2vip is an sms marketing platform that drives customer engagement by managing keyword-based subscriptions, campaign sends, and distribution lists.

METHOD

PATH

DESCRIPTION

PUT

/{user_name}/subscription

Create a subscription

GET

/{user_name}/subscription

List subscriptions

GET

/{user_name}/subscription/{subscription_id}

Get a subscription by ID

POST

/{user_name}/subscription/{subscription_id}

Update a subscription

DELETE

/{user_name}/subscription/{subscription_id}

Delete a subscription

GET

/{user_name}/subscription/search

Search subscriptions

PUT

/{user_name}/subscription

Create a subscription

GET

/{user_name}/subscription

List subscriptions

GET

/{user_name}/subscription/{subscription_id}

Get a subscription by ID

POST

/{user_name}/subscription/{subscription_id}

Update a subscription

DELETE

/{user_name}/subscription/{subscription_id}

Delete a subscription

GET

/{user_name}/subscription/search

Search subscriptions

Why Jentic?

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

Setup

Setup

Wiring Text2VIP by hand means reading its X-Apikey header scheme, threading the user name through every subscription path, and handling errors yourself. Through Jentic you install once, import Text2VIP from the API Directory, store the API key once, and your agent calls it.

Permission scoping

Permission scoping

Text2VIP puts the account and subscription in the URL path (/{user_name}/subscription/{subscription_id}), so a rule can pin your agent to one user's subscriptions and nothing else. You choose the operations it may call, so removing a subscriber with a DELETE is not included unless you add it.

Credential management

Credential isolation

Your Text2VIP API key is stored once, encrypted, by your own Jentic One instance and injected into the X-Apikey header 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 'add an SMS subscriber' or 'find a VIP subscription', and Jentic returns the matching Text2VIP 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

Twilio

→

Programmable SMS provider for building custom marketing flows from primitives

Pick Twilio when you want to assemble your own marketing stack instead of using a packaged opt-in product

Alternative

MessageBird SMS

→

Direct SMS gateway for transactional and marketing sends without subscription tooling

Pick MessageBird SMS when you already manage your own opt-in list and only need delivery

Alternative

ClickSend

→

Bulk SMS provider with a generic REST API for marketing and transactional traffic

Pick ClickSend when low-cost bulk delivery matters more than packaged subscription tooling

Complementary

Mailchimp

→

Email marketing platform that pairs with SMS for multi-channel campaigns

Use Mailchimp alongside Text2VIP when the same audience needs to be reached over both email and SMS

FAQs

Specific to using Text2VIP API through Jentic.

What authentication does the Text2VIP API use?

An API key in the `X-Apikey` request header, generated from the API Settings page in the Text2VIP dashboard. Through Jentic the key is stored in your Jentic One instance and injected into the header at request time, so it never enters the agent's prompt.

How do I add a new SMS subscriber?

Call PUT /{user_name}/subscription with the subscriber's phone number and profile fields. The `{user_name}` segment is the Text2VIP account that owns the distribution list.

Can I segment subscribers by attribute before a campaign?

Yes. Use GET /{user_name}/subscription/search with attribute filters to build a targeted audience, then iterate over the returned subscription records when triggering the campaign send.

How do I handle an opt-out?

Call DELETE /{user_name}/subscription/{subscription_id} when the customer replies STOP or requests removal. Confirm with GET /{user_name}/subscription/{subscription_id} that the record is no longer present.

How do I create a subscription through Jentic?

Search Jentic for `add an SMS subscriber`, load the PUT /{user_name}/subscription operation, and execute it with the customer phone and profile fields. Jentic returns the structured subscription response.

Are there published rate limits?

The OpenAPI spec does not declare quantitative rate limits. Check the Text2VIP dashboard or contact MessagingChannel support for the limits attached to your plan before bulk imports.

GET STARTED

Start building with Text2VIP API

Explore with Jentic
View OpenAPI Document