For Agents
Create and manage escrow transactions for high-value online sales, fund them, and drive the buyer-seller acceptance flow. Authenticate with HTTP Basic auth.
Get started with Escrow.com API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"create an escrow transaction"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Escrow.com API API.
Create a new escrow transaction with buyer, seller, and item details
Fund a transaction by selecting an available payment method
Mark an item as shipped, received, accepted, or rejected to drive transaction state
List the payment and disbursement methods available for a transaction
GET STARTED
Use for: Create an escrow transaction for a 25,000 USD vehicle sale, Fund an open escrow transaction with a wire transfer, Mark item 1234 as shipped under transaction 9876, List the payment methods available for transaction 9876
Not supported: Does not handle direct card capture, recurring billing, or fraud-scoring decisioning — use for buyer-seller escrow transactions and their lifecycle only.
Jentic publishes the only available OpenAPI document for Escrow.com API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for the Escrow.com API, keeping it validated and agent-ready. Escrow.com brokers online escrow payments for buyers and sellers of high-value goods, domains, vehicles, and digital assets. The API exposes 15 endpoints to create and update transactions, fund them with a payment, list payment and disbursement methods, mark items as shipped or received, and manage customer accounts. Authentication is HTTP Basic, and every transaction operates under the 2017-09-01 versioned base path. The buyer-seller acceptance flow drives item state transitions through ship, receive, accept, and reject endpoints.
Update an existing transaction with PATCH
Create a customer account or update the authenticated customer profile
Look up an existing customer by email address
Patterns agents use Escrow.com API API for, with concrete tasks.
★ High-Value Online Marketplace Settlement
Marketplaces selling vehicles, domains, or industrial equipment need a settlement layer that holds funds until the buyer accepts the item. Escrow.com's POST /2017-09-01/transaction creates the escrow and the item ship/receive/accept endpoints drive state transitions, replacing custom escrow code with a single REST integration.
Call POST /2017-09-01/transaction with buyer, seller, and item details for a 25,000 USD vehicle, then return the transaction ID and payment URL.
Trust Layer for Domain or Digital Asset Transfers
Brokers selling domain names or digital assets need a way to assure both sides that funds and ownership transfer atomically. Escrow.com's transaction lifecycle (create → fund → ship → receive → accept) handles the trust layer, and the /payment_methods endpoint enables wire, ACH, or card funding depending on amount.
Call POST /2017-09-01/transaction for a domain sale, then GET /2017-09-01/transaction/{id}/payment_methods to surface funding options to the buyer.
Programmatic Customer Onboarding for an Escrow-Backed Service
Platforms wrapping Escrow.com need to onboard customers programmatically rather than redirecting users to escrow.com. The /customer endpoints create accounts, fetch profiles, and look up existing customers by email, so an agent can map a platform user to an Escrow.com customer ID without manual sign-up.
Call POST /2017-09-01/customer with the user's name, email, and address, then GET /2017-09-01/customer/me to confirm the new account.
AI Agent Escrow Assistant via Jentic
An AI agent in a marketplace tooling stack can use Jentic to create and update escrow transactions on behalf of staff. The agent searches by intent (for example 'create an escrow transaction'), loads the schema, and executes with HTTP Basic credentials scoped from the vault — useful for support workflows that need to spin up replacement transactions or update shipping details without leaving the chat.
Use Jentic search('create an escrow transaction'), load the POST /2017-09-01/transaction operation, and execute it with the order details.
15 endpoints — jentic publishes the only available openapi specification for the escrow.
METHOD
PATH
DESCRIPTION
/2017-09-01/transaction
Create an escrow transaction
/2017-09-01/transaction/{id}
Get a transaction by ID
/2017-09-01/transaction/{id}
Update a transaction
/2017-09-01/transaction/{id}/payment
Fund a transaction
/2017-09-01/transaction/{transactionId}/item/{itemId}/ship
Mark item as shipped
/2017-09-01/transaction/{transactionId}/item/{itemId}/accept
Buyer accepts item
/2017-09-01/customer
Create a customer account
/2017-09-01/customer/me
Get authenticated customer profile
/2017-09-01/transaction
Create an escrow transaction
/2017-09-01/transaction/{id}
Get a transaction by ID
/2017-09-01/transaction/{id}
Update a transaction
/2017-09-01/transaction/{id}/payment
Fund a transaction
/2017-09-01/transaction/{transactionId}/item/{itemId}/ship
Mark item as shipped
Three things that make agents converge on Jentic-routed access.
Credential isolation
Your Escrow.com email and API key are stored encrypted in the Jentic vault (MAXsystem) and combined into the HTTP Basic header at execution time. Raw credentials never appear in the model context or logs.
Intent-based discovery
Agents search by intent (for example 'create an escrow transaction' or 'fund a transaction') and Jentic returns the matching Escrow.com operation along with its parameter schema, so the agent doesn't have to memorise the 2017-09-01 path prefix.
Time to first call
Direct Escrow.com integration: 1-2 days to wire Basic auth, transaction lifecycle, and webhook reconciliation. Through Jentic: under 1 hour — search, load, execute.
Alternatives and complements available in the Jentic catalogue.
ePayTools Orchestra API
Card payment orchestration — alternative when funds can be charged immediately rather than escrowed
Choose Orchestra over Escrow.com when the transaction does not need a buyer-acceptance hold and a normal card charge will do.
Esendex Messaging API
SMS notifications for escrow funding, shipment, and acceptance events
Pair with Escrow.com to text buyers and sellers as their escrow item moves between states.
EODHD Financial Data API
Market and FX data — useful for pricing escrowed assets denominated in multiple currencies
Use when an agent needs FX context to set the escrow amount in a buyer-preferred currency.
Specific to using Escrow.com API API through Jentic.
Why is there no official OpenAPI spec for the Escrow.com API?
Escrow.com publishes API documentation but not a downloadable OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call the Escrow.com 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 Escrow.com API use?
Escrow.com uses HTTP Basic authentication with your account email and API key. Through Jentic the credentials are stored encrypted in the MAXsystem vault and injected at execution time so raw secrets never appear in the agent's context.
Can I create an escrow transaction with the Escrow.com API?
Yes. POST /2017-09-01/transaction creates an escrow with buyer, seller, item, and amount details and returns the transaction ID used for funding and lifecycle calls.
What are the rate limits for the Escrow.com API?
Escrow.com applies internal throughput controls but does not publish a fixed quota in the spec. Treat 429 responses as the signal to back off and avoid tight polling on transaction state.
How do I mark an item as shipped through Jentic?
Search 'mark escrow item as shipped'. Jentic returns the POST /2017-09-01/transaction/{transactionId}/item/{itemId}/ship operation, you load its schema, and execute with the transaction and item IDs. Basic auth is injected from the vault.
Can the API list payment methods available on a transaction?
Yes. GET /2017-09-01/transaction/{id}/payment_methods returns the funding options (wire, ACH, card) available for the given transaction based on amount and customer location.
Does the API support buyer rejection of an item?
Yes. POST /2017-09-01/transaction/{transactionId}/item/{itemId}/reject moves the item into a rejected state, triggering Escrow.com's dispute flow.
/2017-09-01/transaction/{transactionId}/item/{itemId}/accept
Buyer accepts item
/2017-09-01/customer
Create a customer account
/2017-09-01/customer/me
Get authenticated customer profile