API Access

Build with our powerful API

Integrate certificate generation directly into your POS, e-commerce platform, or custom application. Our REST API gives you full programmatic control.

api-example.js
// Create a new certificate
const response = await fetch('https://api.getissued.com/v1/certificates', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    product_name: 'Speedy 30 Bandoulière',
    brand: 'Louis Vuitton',
    customer_email: 'customer@example.com',
    main_image: 'https://...'
  })
});

const certificate = await response.json();
console.log(certificate.unique_code); // "CERT-2024-XK7M9P"

Developer-first design

Built by developers, for developers.

RESTful API

Clean, well-documented REST endpoints for all certificate operations.

Secure Authentication

API key authentication with scoped permissions for team security.

Real-time Webhooks

Get notified instantly when certificates are created or verified.

Full Documentation

Comprehensive guides, code examples, and SDKs for popular languages.

Simple, powerful endpoints

POST/v1/certificatesCreate a new certificate
GET/v1/certificates/:idRetrieve a certificate
GET/v1/certificatesList all certificates
PATCH/v1/certificates/:idUpdate a certificate
DELETE/v1/certificates/:idDelete a certificate
GET/v1/verify/:codeVerify by unique code

Start building today

Get your API key and create your first certificate in minutes.