A REST API, webhooks, and batch processing for your own tools — plus exports formatted for the services you already use.
Build custom integrations with full control
Bearer token with workspace scoping and rate limiting
1000 requests/hour for production, unlimited for development
curl -X POST \
https://api.audiverify.io/v1/certificates \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"title": "My Beat",
"isrc": "QM5KL2210001",
"artists": ["Producer Name"],
"contributors": [{
"name": "Collaborator",
"role": "producer",
"split": 50
}]
}'Real-time events for your application
{
"event": "certificate.created",
"timestamp": "2026-05-26T16:28:00Z",
"data": {
"id": "cert_123abc",
"certificate_number": "AV-2026-001234",
"title": "My First Track",
"creator": "user@example.com",
"status": "draft",
"workspace_id": "ws_456def"
},
"signature": "v1=abc123..."
}Audiverify generates the files these services ask for. You download them and submit them yourself — we hold no account with any of them and send nothing on your behalf.
Generate from your workspace settings
Complete API documentation with examples
Try requests in the playground
Use our SDKs or call REST API directly