⬡ Distributed AI Compute

Turn GPU time into income.
Pay only for results.

LHITCOIN is a distributed AI compute marketplace. Submit OCR, transcription, and AI jobs to a network of GPU workers. Workers earn coins redeemable for real money.

Access Client Dashboard Register as Worker
Workers Online
Tasks Completed
Task Types
Coins per $1

How It Works
Simple. Transparent. Distributed.
Four components working together. No black boxes.
🏢
Client API
OCR, STT,
Video APIs
submit job
+ deduct coins
Router
Queue & Ledger
route to
best worker
🖥️
Worker
NVIDIA GPU
runs model
result
+ earn coins
Result
Returned to
client API
1

Client tops up

Clients pay real money. An admin approves the payment. Coins appear in the client's balance at the current rate.

2

Job submitted

Client API sends the job to the router with a payload. Coins are deducted instantly. The job enters the queue.

3

Worker picks it up

A GPU worker polls the queue, claims the task, runs the model locally, and sends the result back.

4

Worker earns coins

On success, the worker's coin balance is credited. Coins can be redeemed for real money via bank, USDC, or PayPal.


Who Is It For?
Two sides of the same marketplace
🏢

For Clients

You need AI processing but don't have enough GPU power. Pay only for what gets done.

  • OCR — scan documents page by page
  • Speech-to-text — transcribe audio by the minute
  • Video generation — coming soon
  • Pay per unit — no idle infrastructure costs
  • API-first integration with your existing tools
  • Transparent pricing from the catalog
Open Client Dashboard →
🖥️

For Workers

You have an NVIDIA GPU sitting idle. Put it to work and earn coins for every job you complete.

  • Works with any NVIDIA GPU (4GB+ VRAM)
  • Automatic task routing — no manual selection
  • Multiple task types from one worker binary
  • VRAM-aware model switching
  • Cash out via bank transfer, USDC, or PayPal
  • Run as many workers as you have GPUs
Start Earning →

Pricing
Simple, per-unit pricing
Every task type has a fixed price per unit. No hidden fees. Workers receive 80% of every job.
Task Type What It Does Unit Price Worker Receives
Loading pricing…

* Prices shown in coins. Current rate: coins = $1.00


Get Started
Up and running in minutes
# 1. Contact admin to get an API key and top up your balance # 2. Check your balance curl http://your-router:9000/api/balance \ -H "X-API-Key: your-api-key" # 3. Submit an OCR job (image base64 encoded) curl -X POST http://your-router:9000/api/jobs \ -H "X-API-Key: your-api-key" \ -H "Content-Type: application/json" \ -d '{ "task_type": "ocr", "payload_b64": "'$(base64 -i document.png)'", "payload_meta": {"format": "png"}, "price_units": 1 }' # 4. The result comes back in the response (synchronous by default) # Add ?async=true to submit and poll later via GET /api/jobs/{id}