Seller reputation
GET https://aispotmarket.com/sell/api/v1/reputation
Returns the authenticated seller's trust-layer summary.
Auth: X-Seller-API-Key.
Advanced Market clients can read public snapshots for any seller through
GET /v1/sellers/{id}/reputation beneath the /market/api base without a
seller credential.
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/sell/api/v1/reputation \
-H "X-Seller-API-Key: $SPOT_SELLER_KEY"
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.