Back to DemosNo API Key
Interactive

API Playground

Test Aura API endpoints directly. Select an endpoint, configure parameters, and send requests.

Escrows / create

Create a new escrow with split configuration. Splits must sum to exactly 100%.

Stored locally in your browser and sent only as an Authorization header when you click “Send Request”.

POST/api/v1/escrow/create
Valid

💡 Create a new escrow with split configuration. Splits must sum to exactly 100%.

curl -X POST 'http://localhost:3000/api/v1/escrow/create' \
  -H 'Content-Type: application/json' \
  -d '{"orderId":"order-test-123","buyerOwnerId":"buyer-entity-id","amount":"100","chain":"ARC","splits":[{"ownerType":"vendor","ownerId":"vendor-entity-uuid","role":"vendor","percentage":70},{"ownerType":"seller","ownerId":"seller-entity-uuid","role":"seller","percentage":15},{"ownerType":"platform","ownerId":"platform-entity-uuid","role":"platform","percentage":15}]}'