Stop Fake Profiles Before They Start
AI-powered identity verification API that matches user data to real social media profiles. Protect your AI agent platform from fraudulent signups.
pnpm add @plank-proofly/apiimport PlankProofly from '@plank-proofly/api';
function getClient(apiKey: string, baseURL: string) {
return new PlankProofly({ apiKey, baseURL });
}
export async function findMutualFriendsAction(
apiKey: string, baseURL: string, params: PlankProofly.FindMutualFriendCreateParams
) {
try {
const client = getClient(apiKey, baseURL);
const data = await client.findMutualFriends.create(params);
return { success: true, data };
} catch (error) {
return handleError(error);
}
}