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

Mindmemobile MindMe Account API

Agent-ready OpenAPI document · curated by JenticMarketingMarketing AutomationapiKey7 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Manage contacts, contact types, and automation sequences, and create marketing campaigns through MindMe's account API. Suited to lightweight outreach automation.

Use for: I need to add a new contact captured from a webform, Search for the contact whose email matches alex@example.com, List all automation sequences on the account, Create a new contact type called Lead-Enterprise

Not supported: Does not handle email template design, A/B testing, or detailed campaign analytics - use for contact management and basic campaign launch only.

Jentic publishes the only available OpenAPI specification for MindMe Account API, keeping it validated and agent-ready. MindMe is a contact and campaign automation platform that lets teams manage contacts, contact types, automation sequences, and outbound campaigns from a single account API. The seven endpoints cover the core flows: search and add contacts, define contact taxonomies, list automation sequences, and launch campaigns. Designed for small teams running multi-channel outreach without a heavy CRM.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the MindMe Account API to your agent

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

Search the contact database with GET /api/Contact/Search using name, phone, or email filters

Add new contacts to the account through POST /api/Contact/AddContact

Define contact taxonomies with POST /api/Contact/CreateType and read them via GET /api/Contact/GetTypes

Launch a marketing campaign with POST /api/Campaign/Create

List the automation sequences configured on the account with GET /api/AutomationSequence/Sequences

Remove a contact via DELETE /api/Contact/Delete when records are merged or unsubscribed

Use Cases

Patterns agents use MindMe Account API for, with concrete tasks.

★ Inbound Lead Capture

Add contacts from website forms or chat into MindMe and tag them with the relevant contact type so they enter the right automation sequence. The agent posts the contact, fetches the available types, and assigns one in a single short flow. Reduces the time between form submission and first marketing touch.

POST /api/Contact/AddContact with name, email, phone, and contact_type_id, then return the new contact id

Campaign Launch from a Segment

Trigger a one-shot marketing campaign by creating a campaign object scoped to a contact type. MindMe then handles delivery to all contacts under that taxonomy. Good for product announcements and time-bound promotions where the audience is already segmented in MindMe.

POST /api/Campaign/Create with name, contact_type_id, and message body to launch a campaign to all contacts of that type

Contact Database Hygiene

Search for stale or duplicate contacts and remove them with DELETE /api/Contact/Delete to keep automation sequences efficient. The search endpoint returns all matching records so the agent can apply rules - for example, deleting contacts that have not engaged in 12 months.

Use GET /api/Contact/Search to find duplicates by email, then DELETE /api/Contact/Delete on the older record id

Agent-Driven Outreach Automation

An AI agent registers new leads in MindMe through Jentic, looks up the right automation sequence, and launches a follow-up campaign. The MindMe API key sits in your Jentic One instance, so the agent can act on behalf of the account without holding the secret directly.

Search Jentic for 'add a marketing contact', load the MindMe AddContact schema, and add five new contacts captured from today's webform submissions

Key Endpoints

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

METHOD

PATH

DESCRIPTION

GET

/api/Contact/Search

Search contacts

POST

/api/Contact/AddContact

Add a contact

DELETE

/api/Contact/Delete

Delete a contact

GET

/api/Contact/GetTypes

List contact types

POST

/api/Campaign/Create

Create a campaign

GET

/api/AutomationSequence/Sequences

List automation sequences

GET

/api/Contact/Search

Search contacts

POST

/api/Contact/AddContact

Add a contact

DELETE

/api/Contact/Delete

Delete a contact

GET

/api/Contact/GetTypes

List contact types

POST

/api/Campaign/Create

Create a campaign

GET

/api/AutomationSequence/Sequences

List automation sequences

Why Jentic?

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

Setup

Setup

Wiring MindMe by hand means handling its API key in the Authorization header against api.mindmemobile.com and coding the contact and campaign calls yourself. Through Jentic you install once, import MindMe from the API Directory, store the key once, and your agent calls it.

Permission scoping

Permission scoping

MindMe's contact and campaign endpoints carry their target in the request body or query rather than a URL path resource, so scope the agent to the operations it needs, such as searching or adding a contact. You choose which operations are allowed, so deleting a contact is only included if you add it.

Credential management

Credential isolation

Your MindMe API key is stored once, encrypted, by your own Jentic One instance and injected into the Authorization 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 a contact' or 'launch a campaign', and Jentic returns the matching MindMe operation with its input schema so the agent calls the right endpoint without learning the path naming convention.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Mailchimp

→

Mailchimp offers a broader marketing automation suite with email, audiences, and templates

Choose Mailchimp when email is the primary channel and richer audience segmentation is needed

Alternative

Brevo

→

Brevo combines transactional email, SMS, and marketing automation in a single API

Choose Brevo when multi-channel campaigns across email and SMS are required from one provider

Complementary

HubSpot

→

HubSpot stores deeper CRM context that can flow into MindMe contact records

Use HubSpot upstream as system of record and MindMe downstream for lightweight campaign delivery

FAQs

Specific to using MindMe Account API through Jentic.

Why is there no official OpenAPI spec for MindMe Account API?

MindMe does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call MindMe Account API via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.

What authentication does the MindMe Account API use?

MindMe uses an API key in the `Authorization` request header (apiKey scheme). Through Jentic the key is stored in the vault, so agents call MindMe via Jentic execution requests without ever holding the raw key.

Can I add and tag contacts with the MindMe Account API?

Yes. POST /api/Contact/AddContact creates the contact and accepts a contact type id so the record is tagged on creation. Use GET /api/Contact/GetTypes first to retrieve the valid type ids on the account.

How do I launch a campaign through Jentic?

Run `pip install jentic`, search Jentic for 'launch a marketing campaign', and Jentic returns the MindMe POST /api/Campaign/Create operation. Provide a name, the target contact_type_id, and the message body to start delivery.

Can I see which automation sequences exist on my account?

Yes. GET /api/AutomationSequence/Sequences returns the full list of sequences configured in MindMe so the agent can choose the right one for a given contact segment before adding records.

Can I limit what my agent is allowed to do with the MindMe Account API?

Yes. Because you run Jentic One yourself, you decide which MindMe operations your agent may call, so you can allow only the ones it needs, such as GET /api/Contact/Search and POST /api/Contact/AddContact, while leaving out DELETE /api/Contact/Delete or POST /api/Campaign/Create. MindMe's endpoints pass their target in the request body or query rather than a URL path, so this operation-level allow-list is how you constrain the agent's reach. Your API key stays inside your own instance and is injected only for the operations you have permitted.

GET STARTED

Start building with MindMe Account API

Explore with Jentic One
View OpenAPI Document