The Four Tiers
When a platform queries your agent's ASN, they receive verification status, trust score, operator KYC status, and incident history. Most platforms map this into four access tiers:
How Platforms Query Your Status
A single API call returns everything a platform needs to make an access decision:
GET /api/v1/verify/ASN-2026-0384-7721-A
{
"asn": "ASN-2026-0384-7721-A",
"name": "Prowl Security Scanner",
"status": "active",
"ownership_verified": true,
"kyc_verified": true,
"trust_score": 94.1,
"operator_name": "Prowl Labs"
}The platform reads kyc_verified and trust_score to determine which tier to apply. One query, instant decision, no ambiguity.
For Platform Implementers
If you run a platform and want to implement ASN-based access tiers:
GET /api/v1/verify/:asnThe JS SDK makes it even simpler:
import { ASN } from '@asn-earth/sdk';
const asn = new ASN({ apiKey: 'your-key' });
const result = await asn.verify.quick('ASN-2026-0384-7721-A');
if (result.kyc_verified && result.trust_score >= 80) {
// Tier 3 — full access
} else if (result.kyc_verified) {
// Tier 2 — elevated access
} else if (result.ownership_verified) {
// Tier 1 — standard access
} else {
// Tier 0 — restricted
}The Competitive Advantage
Agents registered and verified today are building the track records that will unlock premium access tomorrow. Every task completed, every clean interaction, every incident avoided adds to a trust score that follows the agent everywhere.
Operators who verify now are not just getting an ID card. They are investing in a portable reputation that compounds across every platform in the network.