Skip to content

certificate-modern

The certificate-modern template creates an elegant certificate with a modern design. Ideal for awards, course completions, and recognition documents. Features a centered layout with decorative elements and issuer details.

<glyph-editor
api-key="gk_your_key"
template="certificate-modern"
data='...'
></glyph-editor>
FieldTypeDescription
certificate.titlestringCertificate title (e.g. “Certificate of Achievement”)
certificate.recipientNamestringFull name of the recipient
certificate.descriptionstringWhat the certificate is for
certificate.datestringDate of issuance
certificate.issuerstringName of the person issuing the certificate
certificate.issuerTitlestringTitle of the issuer
certificate.organizationstringIssuing organization name
Terminal window
curl -X POST https://api.glyph.you/v1/create \
-H "Authorization: Bearer gk_your_key" \
-H "Content-Type: application/json" \
-d '{
"template": "certificate-modern",
"data": {
"certificate": {
"title": "Certificate of Achievement",
"recipientName": "Alexandra Chen",
"description": "In recognition of exceptional performance and dedication in the Advanced Software Engineering Program, demonstrating mastery of distributed systems, cloud architecture, and technical leadership.",
"date": "March 15, 2024",
"issuer": "Dr. James Walker",
"issuerTitle": "Program Director",
"organization": "Meridian Institute of Technology"
}
}
}'