Official POY Verify SDKs for every major language. Two lines of code to add human verification to your platform.
Full-featured SDK with TypeScript definitions. Works in Node.js 16+ and modern browsers. Supports verify, isHuman, stamp, checkStamp, trustScore, and hash utilities.
npm install @poyverify/sdk
import { POYVerify } from '@poyverify/sdk';
const poy = new POYVerify('poy_live_xxxx');
const result = await poy.verify('PoY #A3F9C2E');
console.log(result.verified); // true
Zero-dependency Python SDK with dataclass responses and type hints. Python 3.7+. Supports verify, is_human, stamp, check_stamp, trust_score, and hash.
pip install poyverify
from poyverify import POYVerify
poy = POYVerify(api_key="poy_live_xxxx")
result = poy.verify("PoY #A3F9C2E")
print(result.verified) # True
Use the REST API directly from any language with HTTP support. cURL, Go, Ruby, PHP, Java, Rust - any language that can make HTTP requests.
Base URL: https://poyverify.com/api/poy
curl -X POST https://poyverify.com/api/poy/verify \
-H "Authorization: Bearer poy_live_xxxx" \
-H "Content-Type: application/json" \
-d '{"poy_id": "PoY #A3F9C2E"}'