diff --git a/index.html b/index.html index d8ab06e..ee22b87 100644 --- a/index.html +++ b/index.html @@ -330,19 +330,19 @@
-
Live on Base · Score + Certify + evaluator surfaces
-

Score, certify, and evaluate agent wallets before money moves.

-

DJD is evolving from a score API into trust infrastructure for the agent economy: free wallet scoring, public certification, standards-ready documents, evaluator previews, and x402 gating in one stack. Start with the score, then layer on directory distribution and settlement policy.

+
Live on Base · Wallet trust for apps, marketplaces, and agents
+

Know who an agent wallet is before your app sends money.

+

DJD turns on-chain behavior into a trust layer. For humans, that means profiles, certification, and a public directory. For developers, it means APIs, SDKs, and policy checks you can use before payouts, x402 requests, or automated settlement.

Try the live lookup + Read developer docs Browse certified agents - See the x402 path
- No signup for basic lookups - Certified directory and badges - ERC-8004 + evaluator surfaces - Live chain data on Base + Free basic wallet lookup + API keys and SDKs for developers + Card billing for teams + x402 support for autonomous agents
@@ -459,33 +459,33 @@

Score, certify, and evaluate agent wallets before money moves.

-
Start Here
-
Pick the first trust workflow that matches your stack
-
Most teams should start with one of these three paths. Each one gets you from raw wallet uncertainty to a concrete trust decision quickly.
+
What DJD Does
+
A trust layer for AI agents and the apps around them
+
In plain English, DJD helps you answer three questions before work or money changes hands: should I trust this wallet, how does a real agent prove itself, and how does my product enforce that decision?
1
-
Fastest Test
-

Score a wallet before payout

-

Use the free basic score endpoint to decide whether a counterparty gets the job, the funds, or another verification step.

+
Decision
+

Should this wallet be trusted?

+

DJD scores the wallet from public on-chain behavior so you can decide whether to release funds, accept a job, or route the request into another review step.

curl "__DJD_PUBLIC_BASE_URL__/v1/score/basic?wallet=0x..."
Run a free lookup
2
-
Best Wedge
-

Gate your x402 route

-

Screen payer wallets before your Hono handler runs. Low-trust wallets can be rejected or treated differently without custom policy plumbing.

-
npm i x402-agent-score
- Open the x402 example +
Proof
+

How does a real agent show credibility?

+

Profiles, certification, badges, and directory listings turn a bare wallet address into something customers and counterparties can actually inspect.

+
/agent/{wallet} · /certify · /directory
+ See the public surfaces
3
-
Trust Boost
-

Register your agent

-

Publish basic identity and project metadata so your wallet has more context attached to its score and profile page.

-
POST /v1/agent/register
- See the registration payload +
Policy
+

How do developers enforce trust?

+

Use the API, SDKs, and x402 gate to block risky wallets, apply different settlement rules, or ask for an evaluator-style decision before expensive work runs.

+
x402-agent-score · /v1/score/evaluator
+ Open the integration path
@@ -494,21 +494,21 @@

Register your agent

-
Now Live
-
Turn raw signals into trust products
-
Phase 2 layers public and machine-readable trust surfaces on top of the scoring engine, so counterparties can inspect credibility instead of guessing at it.
+
Trust Products
+
One trust engine, packaged for humans and software
+
The same underlying signals can be displayed to a buyer, read by another service, or used as an automated policy input. That is the enterprise: developer infrastructure with public trust surfaces on top.
1
-
Free
+
For Humans

Browse the certified directory

-

List active DJD-certified agents with current score tier, confidence, badges, profile metadata, and direct evaluator links.

+

Give customers and counterparties a public page where they can inspect certification status, score context, profile details, and next trust actions.

GET /v1/certification/directory
Open the directory
2
-
Free
+
For Software

Fetch an ERC-8004 score document

Return a machine-readable trust document for a wallet, including registration, certification, scoring, and publication context.

GET /v1/score/erc8004?wallet=0x...
@@ -516,7 +516,7 @@

Fetch an ERC-8004 score document

3
-
Paid
+
For Automation

Ask for an evaluator decision

Get an approve, review, or reject settlement preview that combines score, certification, risk, staking, and registration signals.

GET /v1/score/evaluator?wallet=0x...
@@ -655,7 +655,7 @@

Integrity Systems

Integration
Start with the x402 gate
-
This is the narrowest, highest-value integration path: check the payer wallet before your paid Hono route does any work.
+
If you are a developer, this is the fastest production wedge: check the payer wallet before your paid route does any work. Human teams can use API keys and card billing; autonomous agents can still pay per request with x402.
Hono + x402
import { agentScoreGate } from 'x402-agent-score'
 
 app.use(
@@ -672,6 +672,7 @@ 

Integrity Systems

@@ -708,7 +709,7 @@

Integrity Systems

Endpoints
API reference
-
Basic lookups are free. Upgrade when you're ready: monthly plans (credit card) for predictable costs, or x402 micropayments (USDC on Base) for agents that pay per query from their own wallet.
+
Start with a free wallet lookup during development. When you need production enforcement, move to monthly API-key plans for predictable billing, or keep x402 micropayments for autonomous agents that pay from their own wallet.
Endpoint
Price
Method
/v1/score/basic?wallet=
Composite score, tier, confidence, recommendation
Free tier
GET
@@ -796,7 +797,7 @@

Integrity Systems

Integration Partner
Identity attestation powered by
Insumer Model
-

DJD Agent Score integrates with Insumer Model to provide verified identity attestations for AI agent wallets. Identity signals from Insumer are factored into our scoring engine as high-confidence trust indicators that are costly to fake at scale.

+

DJD Agent Score integrates with Insumer Model to provide verified identity attestations for AI agent wallets. Identity alone is not enough, but it helps developers and counterparties separate serious operators from disposable wallets at scale.

@@ -815,8 +816,8 @@

Integrity Systems

-

Need a trust launch plan?

-

We can help you choose score thresholds, wire the x402 middleware, and decide when your service is ready for Certify, evaluator-based settlement rules, or directory distribution.

+

Need a trust plan for your product?

+

If you're building an agent marketplace, paid tool, network, or automated workflow, DJD can help you choose score thresholds, public trust surfaces, and the right billing path for your first launch.

Email for a pilot @@ -831,7 +832,7 @@

Need a trust launch plan?

Disclaimer: DJD Agent Score is experimental. All scores are algorithmically generated from publicly available blockchain data and unverified third-party submissions. Scores are not financial advice, credit assessments, investment recommendations, or guarantees. The scoring model is unvalidated and may produce inaccurate results. This service is not a "consumer report" as defined by the FCRA. By using this service you agree to the Terms of Service and acknowledge the Privacy Policy.
-
© 2026 DJD Agent Score LLC · Built on Base · Pricing · Identity attestation by Insumer Model
+
© 2026 DJD Agent Score LLC · Trust infrastructure for agent payments and marketplaces on Base · Pricing · Identity attestation by Insumer Model
diff --git a/openapi.json b/openapi.json index 951abb5..625adc8 100644 --- a/openapi.json +++ b/openapi.json @@ -2,7 +2,7 @@ "openapi": "3.1.0", "info": { "title": "DJD Agent Score API", - "description": "Reputation scoring for autonomous AI agent wallets on Base. Scores are derived from on-chain USDC behavioral data and optional self-registration. Paid endpoints require an x402 USDC micropayment on Base; free endpoints require no authentication. Interactive docs available at /docs.", + "description": "Trust infrastructure for AI agent wallets on Base. DJD helps apps and agent operators score wallets, publish public trust surfaces, and enforce payout or settlement policy before money moves. Paid endpoints support x402 on Base or API-key access for developer teams; free endpoints require no authentication. Interactive docs available at /docs.", "version": "2.0.0", "contact": { "email": "drewjacobs32@gmail.com" }, "license": { "name": "MIT", "url": "https://github.com/jacobsd32-cpu/djdagentscore/blob/main/LICENSE" } diff --git a/src/services/discoveryService.ts b/src/services/discoveryService.ts index 26fa1f8..adada0b 100644 --- a/src/services/discoveryService.ts +++ b/src/services/discoveryService.ts @@ -78,7 +78,7 @@ const SWAGGER_HTML = `

DJD Agent Score API

-

On-chain reputation scoring for autonomous AI agents · View pricing & plans

+

Developer docs for scoring wallets, publishing trust surfaces, and gating payouts or x402 routes · View pricing & plans

@@ -148,8 +148,8 @@ export function getX402DiscoveryView(requestUrl: string, forwardedProto?: string service: { name: SERVICE_TITLE, description: - 'On-chain reputation scoring for autonomous AI agents on Base. ' + - 'Score any wallet before sending money — detect sybil attacks, wash trading, and gaming.', + 'Trust infrastructure for apps and agents on Base. ' + + 'Score wallets, publish public trust surfaces, and gate payouts or x402 routes before money moves.', version: SERVICE_VERSION, docs: `${baseUrl}/docs`, openapi: `${baseUrl}/openapi.json`, diff --git a/src/templates/legal.ts b/src/templates/legal.ts index 3b0b017..bbb3439 100644 --- a/src/templates/legal.ts +++ b/src/templates/legal.ts @@ -28,7 +28,7 @@ export const wrapHtml = (title: string, content: string) => ` ${content} - + ` @@ -42,7 +42,7 @@ export const tosContent = `

These Terms of Service (“Terms”) govern your access to and use of the DJD Agent Score API and related services (the “Service”), operated by DJD Agent Score (“Company,” “we,” “our”). By accessing or using the Service, you agree to be bound by these Terms. If you do not agree, do not use the Service.

1. Description of Service

-

DJD Agent Score is an experimental reputation scoring API for autonomous AI agent wallets on the Base blockchain. The Service provides trust scores, fraud reports, and related data products, accessible via HTTP endpoints and payable through the x402 micropayment protocol using USDC.

+

DJD Agent Score is an experimental trust and reputation platform for autonomous AI agent wallets on the Base blockchain. The Service provides trust scores, certification surfaces, fraud reports, and related data products, accessible via HTTP endpoints and payable through the x402 micropayment protocol using USDC.

2. Experimental Status

The Service is experimental. All scores, tiers, recommendations, confidence intervals, and related outputs are generated by an unvalidated algorithmic model based on publicly available on-chain data. Scores are informational only. They are not financial advice, credit assessments, consumer reports, investment recommendations, or guarantees of any kind.

@@ -293,7 +293,7 @@ export const leaderboardHtml = `

- DJD Agent Score · Reputation API for the agent economy · + DJD Agent Score · Trust infrastructure for the agent economy · API · Terms