Documentation Index
Fetch the complete documentation index at: https://docs.credprotocol.com/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Poll this endpoint to track the progress of an on-chain reputation submission. Returns the current status, computed scores (once available), and transaction details after confirmation.
This is a free endpoint (0 Cred Units). Poll every 5–10 seconds until the status is confirmed or failed.
Authentication
| Method | Header | Cost |
|---|
| API Token | Authorization: Bearer YOUR_API_KEY | 0 Cred Units |
| x402 Payment | X-PAYMENT: <signed_payment> | Free |
Path Parameters
ERC-8004 agent ID. Must be >= 1.
Response
UUID tracking this submission
Current status: pending, scoring, uploading, submitting, confirmed, or failed
Computed scores (available after the scoring phase)
Andromeda 1.0 credit score (300–1000)
Number of verified identity attestations
On-chain transaction details per tag (available after confirmation)
Feedback tag (e.g., creditScore)
transactions[].transaction_hash
Transaction hash on Base
transactions[].block_number
Block number of confirmation
Gas used by the transaction
IPFS URI of the off-chain feedback JSON
Error message if status is failed
ISO 8601 timestamp when the submission was created
ISO 8601 timestamp when the submission was last updated
curl -X GET "https://api.credprotocol.com/api/v2/agents/18/reputation/status/550e8400-e29b-41d4-a716-446655440000" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"submission_id": "550e8400-e29b-41d4-a716-446655440000",
"agent_id": 18,
"status": "confirmed",
"scores": {
"credit_score": 782,
"sybil_score": 12,
"identity_count": 3
},
"transactions": [
{
"tag1": "creditScore",
"transaction_hash": "0xabc123...",
"block_number": 12345678,
"gas_used": 85000
},
{
"tag1": "sybilRisk",
"transaction_hash": "0xdef456...",
"block_number": 12345679,
"gas_used": 82000
}
],
"feedback_uri": "ipfs://QmXyz...",
"error": null,
"created_at": "2026-02-27T15:30:00Z",
"updated_at": "2026-02-27T15:30:45Z"
}