Hushxima
Marketplace

Overview

Browse inventory, reserve a lot, pay on-chain, take delivery of the keys, and fund the wallets you own.

The marketplace sells wallets that already have a history: an age, a balance, a transaction record, a funding origin. This API is how your organisation buys them and manages them afterwards.

Everything here happens under one organisation. Whatever credential you present resolves to exactly one org, and every list, quote, wallet and balance you can reach belongs to it.

The shape of a purchase

Four calls, and the third one is mostly waiting.

  1. Browse. GET /catalog returns listed wallets matching your filters, each priced the way a quote would price it.
  2. Reserve. POST /quote takes wallets out of the catalog, holds them for you, and mints a fresh payment address.
  3. Pay. Send the exact amount to that address. Settlement is automatic: the API watches the chain and closes the order itself when the money lands.
  4. Collect. GET /quote/{id}/keys hands back the private keys.

There is no card, no invoice, no callback to a payment provider. The payment address is the checkout, and the order settles once its balance covers the amount due.

What else is here

Base URL

https://marketplace-api.hushxima.com

The machine-readable description is served by the API itself at /openapi.json, and this site is generated from it. There is a Swagger UI at /swagger-ui if you would rather poke at it there.

GET /health is the only unauthenticated endpoint.

GET
/health

Response Body

application/json

curl -X GET "https://example.com/health"
{  "status": "string"}

Last updated on

On this page