API Reference
Complete REST API documentation for integrating Diplomark into your applications.
API v2.0•50+ Endpoints•99.9% Uptime
Authentication
Secure your API requests with authentication tokens
POST /auth/tokenCertificates
Create, manage, and retrieve certificates
GET /certificatesWebhooks
Real-time notifications for certificate events
POST /webhooksTemplates
Manage and customize certificate templates
GET /templatesExample Request
Here's how to create a certificate using our API:
curl -X POST https://api.diplomark.com/certificates \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"template_id": "template_123",
"recipient": {
"name": "John Doe",
"email": "john@example.com"
}
}'