Programmatically issue verifiable certificates directly from your own platform.
Authenticate your requests by including your secret API key in the Authorization header.
Issue a new digital certificate. Returns the unique code and verification URL.
{
"product_name": "Chanel Classic Flap",
"brand": "Chanel",
"model": "Medium Double Flap",
"main_image": "https://example.com/image.jpg",
"customer_email": "customer@example.com"
}curl -X POST https://issued.com/api/v1/certificates \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{
"product_name": "Hermes Birkin 30",
"brand": "Hermes",
"main_image": "https://example.com/birkin.jpg"
}'