For Agents
Encrypt and decrypt data, proxy outbound traffic through Evervault Relays, tokenize cards, run Functions, and manage webhooks via the full Evervault platform.
Use for: I need to encrypt cardholder data before sending it downstream, Set up a Relay that auto-decrypts data on the way to a vendor, Mint a network token for a stored card, Run an Evervault Function on encrypted data
Not supported: Does not handle payment processing, fraud scoring, or general-purpose CRM - use for encryption, tokenization, encrypted compute, and outbound Relay proxying only.
Jentic publishes the only available OpenAPI specification for Evervault API, keeping it validated and agent-ready. Evervault wraps encryption, decryption, relay proxying, payment-card processing, network tokenization, and webhook management into one platform. The 43-endpoint surface lets agents encrypt PII, route outbound calls through Evervault Relays that auto-decrypt or tokenize on the wire, mint network tokens for stored cards, manage Functions, and configure webhooks for event-driven flows.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Evervault 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.
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%2Fevervault.com%2Fevervault-api" | shStep 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%2Fevervault.com%2Fevervault-api" | sh
jentic register # connects your agent to your Jentic One instanceJentic 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.
What an agent can do with Evervault API.
Encrypt and decrypt arbitrary payloads via POST /encrypt and POST /decrypt
Inspect a ciphertext to confirm it is Evervault-encrypted via POST /inspect
Proxy outbound HTTPS calls through Evervault Relays so PII is auto-tokenized in transit
Manage Relay custom domains for branded proxy endpoints
Invoke serverless Functions over encrypted inputs at /functions/{function_name}/runs
GET STARTED
Mint client-side tokens for selective browser decryption via /client-side-tokens
Patterns agents use Evervault API for, with concrete tasks.
★ Outbound Relay for PII Tokenization
Companies that send sensitive data to many third-party APIs (CRMs, analytics, ML providers) route those requests through an Evervault Relay. The Relay receives plaintext, tokenizes or encrypts on the way out, and ensures partners only ever see safe representations. Setup is one Relay configuration plus optional custom domain mapping, dramatically reducing PII surface area without code changes per vendor.
POST /relays to create a Relay that tokenizes outbound calls to api.partner.com, then POST /relays/{relay_id}/custom-domains to map a branded subdomain
Encrypted Card Vault and Network Tokens
Merchants and platforms can store payment cards encrypted in Evervault and mint network tokens to authorise transactions without holding raw PANs themselves. The 43-endpoint surface includes operations for encryption, network tokenization, and Function-based card operations, supporting PCI scope reduction without rebuilding a card vault.
POST /encrypt with a card number, store the ciphertext in your DB, then later run an Evervault Function to mint a network token from the encrypted PAN
Webhooks-Driven Encrypted Workflows
Background jobs that depend on encrypted compute completing (Function runs, key rotations, Relay events) listen via Evervault webhooks. Agents register a webhook endpoint, then react to events by calling further Evervault operations or downstream services without polling.
Register a webhook URL on Evervault, then on receipt of a function-run.completed event call your downstream risk-scoring service with the run output
AI Agent Encryption Pipeline via Jentic
An AI assistant in a regulated workflow wraps every captured PII field with Evervault encryption before it lands in a database. Jentic exposes Evervault's full surface as MCP tools, so the agent searches by intent, picks the right operation, and runs it without ever seeing the raw API spec.
Use Jentic search 'encrypt cardholder data with Evervault' to find POST /encrypt, load schema, and execute on every card field captured in conversation
43 endpoints — jentic publishes the only available openapi specification for evervault api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/encrypt
Encrypt a payload
/decrypt
Decrypt a payload
/inspect
Inspect ciphertext metadata
/functions/{function_name}/runs
Invoke a named Function
/client-side-tokens
Mint a client-side decryption token
/relays
Create a Relay
/relays/{id}
Retrieve a Relay configuration
/relays/{relay_id}/custom-domains
Attach a custom domain to a Relay
/encrypt
Encrypt a payload
/decrypt
Decrypt a payload
/inspect
Inspect ciphertext metadata
/functions/{function_name}/runs
Invoke a named Function
/client-side-tokens
Mint a client-side decryption token
/relays
Create a Relay
/relays/{id}
Retrieve a Relay configuration
/relays/{relay_id}/custom-domains
Attach a custom domain to a Relay
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the Evervault API by hand means handling its HTTP Basic auth with an app ID and key, pointing at the api.evervault.com host, and coding the encrypt, relay, and function-run calls yourself. Through Jentic you install once, import the Evervault API from the API Directory, store the credentials once, and your agent calls it.
Permission scoping
Evervault puts the relay id in the URL path (/relays/{id}), so a rule can pin your agent to one relay for reads and custom-domain setup. You choose the operations it may call, so encrypt, decrypt, and relay creation are not included unless you add them to the allowed set.
Credential isolation
Your Evervault app ID and API key are stored once, encrypted, by your own Jentic One instance and injected at execution time. They never enter the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'create an evervault relay' or 'encrypt cardholder data', and Jentic returns the matching Evervault operation with its input schema so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Specific to using Evervault API through Jentic.
Why is there no official OpenAPI spec for Evervault API?
Evervault does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Evervault 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 Evervault API use?
The full Evervault API uses HTTP Basic auth with the app ID as username and an API key as password against api.evervault.com. Through Jentic, both credentials sit in your Jentic One instance and are injected at call time.
Can I tokenize cards without taking on PCI scope using the Evervault API?
Yes. POST /encrypt accepts the raw PAN and returns ciphertext, while a Function or Relay can mint a network token from that ciphertext, so plaintext PANs never sit in your stack. Combine with /relays to keep outbound payment partner traffic in-scope only at Evervault's edge.
What are the rate limits for the Evervault API?
The OpenAPI spec does not declare specific limits; Evervault applies plan-based throttling. Inspect 429 responses and Retry-After headers and confirm your plan's ceiling with Evervault support before high-volume runs.
How do I create a Relay through Jentic?
Run pip install jentic, then await client.search('create an evervault relay'), client.load, client.execute. Jentic returns POST /relays with the Relay configuration schema (target URL, encryption rules) wired in for the agent to fill.
Can I confirm a value is Evervault-encrypted before calling /decrypt?
Yes. POST /inspect returns metadata about the ciphertext (whether it is Evervault-encrypted, the data role, and the encryption version) without revealing plaintext, so an agent can avoid wasted decrypt calls on malformed inputs.
Can I limit what my agent is allowed to do with the Evervault API?
Yes. Jentic One is self-hosted, so your own rules decide which Evervault operations the agent may call and which credentials it may use. Because the relay id sits in the URL path (/relays/{id}), you can pin the agent to a single relay for reads and custom-domain setup while keeping encrypt, decrypt, and relay creation out of the allowed set unless you explicitly add them. Your Evervault app ID and API key stay in your instance and are injected only for the operations you permit.