Integrate truth verification into your web or mobile application.
npm install @vericord/client
Verify a URL against the Silversparre ledger and C2PA standards.
import { Vericord } from '@vericord/client';
const client = new Vericord({
apiKey: process.env.VERICORD_KEY
});
async function checkContent(url) {
const result = await client.verify(url);
if (result.isVerified) {
console.log(`Verified by: ${result.publisher}`);
console.log(`Ledger TX: ${result.transactionHash}`);
} else {
console.warn(`Risk Score: ${result.riskScore}`);
}
}
Currently in Closed Beta. Request access via the homepage.