Retrieve engagement data, document interactions, revenue attribution, and access requests for your trust center. Use these endpoints to build custom dashboards, generate reports, or feed data into your BI tools.All analytics endpoints accept optional date range filters and return data scoped to your organization.
URL:GET https://api.wolfia.com/v1/trustportal/analyticsAuthentication: API key required, Admin role (see API overview)Returns comprehensive analytics including access requests, portal views, document stats, and top documents and accounts.
URL:GET https://api.wolfia.com/v1/trustportal/analytics/documentsAuthentication: API key required, Expert or Admin roleReturns paginated document interaction metrics including views, downloads, and unique viewers.
# All documentscurl -X GET 'https://api.wolfia.com/v1/trustportal/analytics/documents?page=1&page_size=20' \ -H "X-API-Key: wolfia-api-YOUR_KEY_HERE"# Filtered to a specific accountcurl -X GET 'https://api.wolfia.com/v1/trustportal/analytics/documents?account_id=ACCOUNT_UUID_HERE&page=1&page_size=20' \ -H "X-API-Key: wolfia-api-YOUR_KEY_HERE"
URL:GET https://api.wolfia.com/v1/trustportal/analytics/documents/by-revenueAuthentication: API key required, Admin roleReturns document interactions sorted by revenue attribution. Requires a CRM integration (Salesforce or HubSpot).
URL:GET https://api.wolfia.com/v1/trustportal/analytics/documents/{document_id}Authentication: API key required, Admin roleReturns detailed analytics for a specific document including recent activity and top accounts.
URL:GET https://api.wolfia.com/v1/trustportal/analytics/revenue/{account_id}Authentication: API key required, Admin roleReturns revenue metrics for a specific account including opportunities and deal stages.
URL:GET https://api.wolfia.com/v1/trustportal/analytics/top-won-dealsAuthentication: API key required, Admin roleReturns top accounts ranked by won deal revenue. Requires a CRM integration.
URL:GET https://api.wolfia.com/v1/trustportal/analytics/top-open-dealsAuthentication: API key required, Admin roleReturns top accounts ranked by open deal pipeline revenue. Requires a CRM integration.
URL:GET https://api.wolfia.com/v1/trustportal/accessAuthentication: API key required, Admin roleReturns a paginated list of access requests submitted to your trust portal.
# All access requestscurl -X GET 'https://api.wolfia.com/v1/trustportal/access?status_filter=PENDING&limit=100' \ -H "X-API-Key: wolfia-api-YOUR_KEY_HERE"# Filtered to a specific account, sorted by company namecurl -X GET 'https://api.wolfia.com/v1/trustportal/access?account_id=ACCOUNT_UUID_HERE&sort_by=company_name&sort_order=asc' \ -H "X-API-Key: wolfia-api-YOUR_KEY_HERE"