Seller reputation
GET /v1/sellers/{id}/reputation
Returns the public trust-layer summary for a seller. No authentication is required.
The response contains the seller id, the newest snapshot as current, and up
to the latest stored snapshots in newest-first history order. current is
null and history is empty when no score has been recorded.
Each snapshot contains:
| field | type | meaning |
|---|---|---|
seller_id | UUID | Seller described by the snapshot |
score | number | Weighted reputation score from 0 through 100 |
fill_rate | number | Successful fills divided by matched trades |
latency_adherence | number | Trades within SLA divided by observed trades |
quality_rate | number | Well-formed responses divided by total responses |
timestamp | RFC 3339 string | Time the snapshot was taken |
curl -s https://aispotmarket.com/market/api/v1/sellers/SELLER_ID/reputation
The reputation response is descriptive. Admission decisions use current trust-layer state, so callers should not treat a cached snapshot as permission to place or receive an order.