Documentation v1 · UPDATED 21 AUG 2026
Get an API key

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:

fieldtypemeaning
seller_idUUIDSeller described by the snapshot
scorenumberWeighted reputation score from 0 through 100
fill_ratenumberSuccessful fills divided by matched trades
latency_adherencenumberTrades within SLA divided by observed trades
quality_ratenumberWell-formed responses divided by total responses
timestampRFC 3339 stringTime 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.