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 / Payments / Escrow.com API
Escrow.com API logo

Escrow.com API

★ Only Publicly Available OpenAPI DocumentPaymentsPayouts Transfersbasic15 EndpointsREST

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.

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 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.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Escrow.com API to your agent

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

Update an existing transaction with PATCH

Create a customer account or update the authenticated customer profile

Look up an existing customer by email address

Use Cases

Patterns agents use Escrow.com 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.

Key Endpoints

15 endpoints — jentic publishes the only available openapi specification for the escrow.

METHOD

PATH

DESCRIPTION

POST

/2017-09-01/transaction

Create an escrow transaction

GET

/2017-09-01/transaction/{id}

Get a transaction by ID

PATCH

/2017-09-01/transaction/{id}

Update a transaction

POST

/2017-09-01/transaction/{id}/payment

Fund a transaction

POST

/2017-09-01/transaction/{transactionId}/item/{itemId}/ship

Mark item as shipped

POST

/2017-09-01/transaction/{transactionId}/item/{itemId}/accept

Buyer accepts item

POST

/2017-09-01/customer

Create a customer account

GET

/2017-09-01/customer/me

Get authenticated customer profile

POST

/2017-09-01/transaction

Create an escrow transaction

GET

/2017-09-01/transaction/{id}

Get a transaction by ID

PATCH

/2017-09-01/transaction/{id}

Update a transaction

POST

/2017-09-01/transaction/{id}/payment

Fund a transaction

POST

/2017-09-01/transaction/{transactionId}/item/{itemId}/ship

Mark item as shipped

POST

/2017-09-01/transaction/{transactionId}/item/{itemId}/accept

Buyer accepts item

POST

/2017-09-01/customer

Create a customer account

GET

/2017-09-01/customer/me

Get authenticated customer profile

Why Jentic?

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

Credential management

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

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

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.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

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.

Complementary

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.

Complementary

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.

FAQs

Specific to using Escrow.com 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.

GET STARTED

Start building with Escrow.com API

Explore with Jentic
View OpenAPI Document