SecureEscrow

API Documentation

Comprehensive guide to integrating SecureEscrow into your application

Getting Started

Quick start guide

API Reference

Full endpoint docs

Webhooks

Real-time events

Security

Authentication

Authentication
Secure your API requests with authentication tokens

All API requests require authentication using your API key in the Authorization header:

Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

Example request:

curl https://api.secureescrow.com/v1/transactions \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{'amount": 1000, "currency": "USD"}'
API Endpoints
Available endpoints for your integration
POST/api/v1/transactions

Create a new escrow transaction

GET/api/v1/transactions/:id

Get transaction details

PUT/api/v1/transactions/:id/release

Release funds from escrow

GET/api/v1/users/:id

Get user information

POST/api/v1/webhooks

Create webhook endpoint

GET/api/v1/webhooks

List all webhooks

Official SDKs
Use our SDKs for faster integration

Node.js

npm install @secureescrow/node

Python

pip install secureescrow

PHP

composer require secureescrow/php