⬡ Distributed AI Compute

Turn GPU time into income.
Pay only for results.

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

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

Simple. Transparent. Distributed.
Four components working together. No black boxes.
Client
Needs AI Processing
submit job
Router
Queue & Ledger
route to best worker
↩ results routed back to client
1

Client tops up

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

2

Job submitted

Client API sends the job to the router with a payload. Tokens 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 tokens

On success, the worker's token balance is credited. Tokens 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 tokens 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 tokens. Current rate: tokens = $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}