Skip to main content

Loyva Developer Documentation

Build with Loyva

Electronic signing, secure document vaulting, and UCC §9-105 compliance — integrate in minutes with our REST API.

What is Loyva?

Loyva is a B2B platform that provides:

  • Electronic Signing (E-Sign) — Send documents for legally binding e-signatures
  • Electronic Vault (E-Vault) — Tamper-evident storage for signed documents with SHA-256 integrity verification and weekly re-verification
  • UCC §9-105 Compliance — Automated compliance engine that evaluates all 8 requirements for electronic chattel paper

How integration works

Partners integrate with Loyva through two channels today:

ChannelUse caseAuth
REST APICreate envelopes, manage customers, check complianceAPI key (X-API-Key header)
WebhooksGet notified when envelopes are signed, vaulted, or transferredHMAC-SHA256 signature verification

A drop-in Embed SDK for rendering the sign and vault widgets in your own app is in progress — contact your Loyva point of contact if you need embedded signing in the near term.

Base URLs

EnvironmentBase URL
Staginghttps://api.stg.loyva.net/api/v2
Productionhttps://api.loyva.net/api/v2

All API requests use HTTPS. HTTP requests are rejected.

Platform status

ItemStatus
Current availabilityPrivate beta — staging environment
GA targetQ3 2026
Uptime SLA (GA)99.9% monthly, defined in the enterprise agreement
SOC 2 Type IIAudit in progress — report available under NDA on request

Contact your Loyva point of contact for the latest GA timeline or to request the SOC 2 attestation letter.

Response envelope

All successful API responses wrap the payload in a top-level data field. Paginated responses additionally include a meta object.

{ "data": { /* resource */ } }
{ "data": [ /* resources */ ], "meta": { "page": 1, "limit": 20, "total": 85 } }

Errors are returned as { "error": "...", "details"?: [...] } with the appropriate HTTP status code (see Errors).