TrustGhost

Developers

Stars widget and abuse API

Show your TrustGhost rating on any site, and look up wallet abuse reports from your own product. No API key. CORS is open for GET requests.

Review stars widget

Drop this on your homepage. Replace the slug with your TrustGhost listing (the last part of your company URL).

<script
  src="https://trustghost.io/widget.js"
  data-company="your-company-slug"
  async
></script>

Or omit data-company and the widget will look up the listing from the page hostname:

<script src="https://trustghost.io/widget.js" async></script>

Optional attributes: data-theme="dark", data-width="320", data-website="example.com".

Stars JSON

Returns name, average stars, review count, and a link back to TrustGhost. Only approved listings are public.

curl "https://trustghost.io/api/v1/companies/metamask"
curl "https://trustghost.io/api/v1/companies?website=example.com"

Wallet abuse JSON

Look up a Bitcoin, Ethereum, Tron, Solana, or Litecoin address. You get report count, risk band, reason breakdown, and recent public reports. Reporter identity and evidence URLs are not included.

curl "https://trustghost.io/api/v1/wallets/bitcoin/ADDRESS"
curl "https://trustghost.io/api/v1/wallets?address=0x...&network=ethereum"

If the address has no reports, the response is still 200 with found: false and reportCount: 0.

Endpoint index: /api/v1. Company owners can copy the widget from the company dashboard after the listing is approved.