QovaQova docs
REST API

Verification Endpoints

Agent verification and sanctions screening.

POST /api/verify

Run 8 verification checks on an agent. Rate limit: 100/min

curl -X POST https://api.qova.cc/api/verify \
  -H "Content-Type: application/json" \
  -d '{"address": "0xAgent..."}'
{
  "success": true,
  "data": {
    "status": "VERIFIED",
    "grade": "BBB",
    "score": 750,
    "checks": {
      "registration": true,
      "contractExists": true,
      "accountAge": true,
      "ownerConsistency": true,
      "activityLevel": true,
      "ownershipStability": true,
      "sanctionsScreening": true,
      "minimumScore": true
    },
    "passed": 8,
    "total": 8
  }
}

Verification Statuses

StatusChecks PassedMeaning
VERIFIED8/8Fully verified, trustworthy
PARTIALLY_VERIFIED5-7/8Some checks passed
UNVERIFIED2-4/8Most checks failed
SUSPICIOUS0-1/8Likely malicious

POST /api/verify/sanctions

Sanctions screening endpoint. Rate limit: 100/min

curl -X POST https://api.qova.cc/api/verify/sanctions \
  -H "Content-Type: application/json" \
  -d '{"address": "0xAgent..."}'