VantageKit API
Programmatic access to your deal rooms, documents, viewers, and analytics. Real-time webhooks for 21 event types.
REST API
6 endpoints for deal rooms, documents, links, viewers, and analytics. Read-only, API key authenticated.
Webhooks
21 event types across deal rooms, documents, viewers, agreements, links, and teams. HMAC-SHA256 signed.
Guides
Step-by-step integration patterns: track views, pull analytics, verify signatures, test locally.
Quick example
curl https://api.vantagekit.com/v1/deal-rooms \
-H "Authorization: Bearer vk_live_your_api_key"
{
"data": [
{
"id": "dr_abc123",
"name": "Series A Data Room",
"status": "published",
"document_count": 8,
"total_views": 142
}
],
"pagination": { "page": 1, "per_page": 25, "total": 1 }
}