ANDRÔMEDACOREv2.1.0-ESTÁVEL
SISTEMA ATIVO
API REFERENCE v1.0AVIP v2.0 STANDARD
Andromeda Core API
Portable, verifiable reputation for the decentralized web. Integrate AVIP scores into any platform — LinkedIn, Upwork, Fiverr, or your own DAO tooling.
54/55 milestones verified
4 ecosystems integrated
<200ms response time
MongoDB + Supabase
Authentication
Include your API key in the x-api-key header or as an api_key query parameter.
Free
ac_93261294471ff237e...Pro
ac_a393f74185eb71154...Enterprise
ac_06defb36fb7c5e895...bash
# Header (recommended)
curl -H "x-api-key: ac_your_key_here" \
https://andromeda-core.vercel.app/api/reputation/verify/{did}
# Query parameter
curl "https://andromeda-core.vercel.app/api/reputation/verify/{did}?api_key=ac_your_key_here"Endpoints
GET
/api/reputation/verify/{did}Returns AVIP score, trust level and verification summary for any DID. Ideal for quick reputation checks before onboarding a contractor or displaying a trust badge.
LinkedIn: Show verified badge on profileUpwork: Pre-screen contractorsFiverr: Display trust score on gig
Parameters
didpathrequiredBuilder DID (did:andromeda:{chain}:{address})x-api-keyheaderrequiredYour Andromeda API keyExample Request
bash
curl -X GET \ "https://andromeda-core.vercel.app/api/reputation/verify/did:andromeda:optimism:did:pkh:eip155:10:0x47c88bb92b409ff25f6587ea611fac4e55f76007" \ -H "x-api-key: ac_93261294471ff237e02ff9d135c9a0593b319b9a941faab5a175e7cdb046baaa"
Response
json
{
"success": true,
"did": "did:andromeda:optimism:...",
"reputation": {
"avipScore": 78,
"trustLevel": "GOLD",
"verificationRate": 100,
"totalMilestones": 6,
"verifiedMilestones": 6,
"ecosystems": ["optimism"],
"lastVerified": "2026-04-01T17:06:07.000Z"
},
"meta": {
"poweredBy": "Andromeda Core AVIP v2.0"
}
}Pricing
Free
$0/month
1,000 req/month
Basic reputation verification
Ecosystem telemetry
Community support
Endpoints
/api/reputation/verify/api/intelligence/telemetryMost Popular
Pro
$49/month
10,000 req/month
Full AVIP score breakdown
Activity timeline
Webhook notifications
Priority support
Endpoints
/api/reputation/verify/api/reputation/score/api/intelligence/*Enterprise
Custom
Unlimited
Unlimited requests
Dedicated API key
SLA guarantee
Custom integrations
White-label option
Endpoints
All endpointsIntegration Examples
JavaScript / Node.js
javascript
const response = await fetch(
'https://andromeda-core.vercel.app/api/reputation/verify/' +
encodeURIComponent(builderDid),
{ headers: { 'x-api-key': process.env.ANDROMEDA_API_KEY } }
);
const { reputation } = await response.json();
if (reputation.trustLevel === 'GOLD' ||
reputation.trustLevel === 'PLATINUM') {
// Show verified badge
displayTrustBadge(reputation.avipScore);
}Python
python
import requests
def verify_builder(did: str, api_key: str):
url = f"https://andromeda-core.vercel.app/api/reputation/verify/{did}"
headers = {"x-api-key": api_key}
r = requests.get(url, headers=headers)
data = r.json()
return {
"score": data["reputation"]["avipScore"],
"level": data["reputation"]["trustLevel"],
"verified": data["reputation"]["verificationRate"]
}Ready to integrate?
Contact us for enterprise pricing or to get your API key.