IAMINE.ORG

Simplicity. Efficiency. AI for Everyone.

Your PC has unused power. We turn it into AI. Join the network in 60 seconds with a single command. No cloud, no GPU, no hassle.

pip install iamine-ai && python -m iamine worker --auto
1

Copy

Copy the install command above.

2

Paste

Paste it in your terminal. That's it.

3

Earn

Your PC serves AI and earns $IAMINE tokens.

-
Workers
-
Jobs
-
Network t/s
-
Pool Power
-
Best Model

IAMINE Pool — Live Network

Real-time view of the distributed AI network. Each node is a worker contributing compute power.

0
Workers
0
Total t/s
0
Jobs
-
Best Model

Network Progression

Every worker that joins unlocks more powerful AI. Level up together.

Serve
Run a model on your PC, earn $IAMINE for every token generated
=
Use
Spend $IAMINE to use bigger models you can't run locally
Example: Your 8 GB PC serves a 0.5B model → earns $IAMINE → you spend them to use a 14B model running on a 32 GB machine in the pool. Access AI you could never run locally.

Live AI Chat

IAMINE Chat
No history stored Offline
Welcome! Ask anything to test the distributed AI network.

Benchmark your machine

See what your PC can do. We find the best AI model for you.

Your machine is ready!

Join the IAMINE network now with a single command:

pip install iamine-ai && python -m iamine worker --auto

This will install IAMINE, download the optimal model for your machine, and connect to the pool automatically.

Uninstall IAMINE
pip uninstall iamine-ai -y && rm -rf models/ wallet.json config.json

This removes IAMINE, downloaded models, and local wallet. Your earned $IAMINE credits on the pool are preserved.

$IAMINE

Contribute compute. Earn tokens. Simple.

+

Earn

Every AI request processed generates $IAMINE proportional to your compute.

~

Trade

Tradeable on DEX. Your compute power has real value.

*

Use

Spend $IAMINE for premium models and priority inference.

%

Govern

Holders vote on models, fees, and network upgrades.

pip install iamine-ai && python -m iamine worker --auto

Export to your wallet

When the $IAMINE token is deployed on-chain, you will be able to export your earned tokens to any EVM-compatible wallet.

🦊

Rabby Wallet

Multi-chain wallet. Add IAMINE token with one click.

🔶

MetaMask

The most popular Web3 wallet. Export and trade freely.

How it will work:
1 Connect your wallet (Rabby, MetaMask, or any EVM wallet)
2 Enter your API token (iam_xxx) to verify your balance
3 Choose amount to export and confirm the transaction
$IAMINE tokens appear in your wallet — trade on any DEX
Token contract will be published here after deployment.
Chain: TBD (Hyperliquid / Base / Arbitrum) · Standard: ERC-20 · Supply: proportional to network compute

Your API Access

Contribute compute, earn credits. Use credits to access the AI API. 1 request served = 1 request earned.

Your worker is running!
-
$IAMINE
-
Earned
-
Used
-
Status

How API credits work

+1
You serve 1 AI request
=
-1
You use 1 API request

API Usage

OpenAI-compatible. Works with any client.

Terminal
python -m iamine ask "What is quantum computing?"
curl
curl https://iamine.org/v1/api/chat \ -H "Content-Type: application/json" \ -d '{"api_token":"iam_xxx","messages":[{"role":"user","content":"Hello"}]}'
Python
import requests r = requests.post("https://iamine.org/v1/api/chat", json={ "api_token": "iam_xxx", "messages": [{"role": "user", "content": "Hello"}] }) print(r.json()["choices"][0]["message"]["content"])

Connect to Open WebUI

Use IAMINE as a backend for Open WebUI. Copy these settings:

Open WebUI Settings > Connections > OpenAI API
API Base URL
http://localhost:8080/v1
API Key
-
docker-compose.yml
docker run -d -p 3000:8080 \ -e OPENAI_API_BASE_URL=http://host.docker.internal:8080/v1 \ -e OPENAI_API_KEY=iam_YOUR_TOKEN_HERE \ --name open-webui \ ghcr.io/open-webui/open-webui:main

Full API Reference

EndpointMethodDescriptionAuth
/v1/chat/completionsPOSTChat (free, demo)-
/v1/api/chatPOSTChat (1 credit/request)api_token
/v1/statusGETPool status-
/v1/pool/powerGETPool power analysis-
/v1/wallet/{token}GETCheck balancetoken in URL
/v1/models/availableGETList server models-
/v1/modelsGETList worker models-
/v1/admin/modelsGETModel tiers + unlock status-

No worker detected

Start a worker on this machine to see it here, or log in to manage multiple workers.

pip install iamine-ai && python -m iamine worker --auto

— or —

Tutorials

Use IAMINE with your favorite tools. The API is OpenAI-compatible.

Claude Code + IAMINE

Use Claude Code with IAMINE as a backend. The quality depends on the pool's available models — the more workers join, the more powerful models become available.

Configuration
export OPENAI_API_BASE=https://iamine.org/v1 export OPENAI_API_KEY=iam_YOUR_TOKEN_HERE claude --model iamine
Note: The AI capability depends on the pool's power. With more workers, larger models (7B, 14B...) become available and responses improve.

Open WebUI

Connect Open WebUI to the IAMINE network for a ChatGPT-like interface.

docker run -d -p 3000:8080 \ -e OPENAI_API_BASE_URL=https://iamine.org/v1 \ -e OPENAI_API_KEY=iam_YOUR_TOKEN \ --name open-webui \ ghcr.io/open-webui/open-webui:main

Python (OpenAI SDK)

from openai import OpenAI client = OpenAI( base_url="https://iamine.org/v1", api_key="iam_YOUR_TOKEN" ) response = client.chat.completions.create( model="auto", messages=[{"role": "user", "content": "Hello!"}] ) print(response.choices[0].message.content)

curl

curl https://iamine.org/v1/api/chat \ -H "Content-Type: application/json" \ -d '{ "api_token": "iam_YOUR_TOKEN", "messages": [{"role": "user", "content": "Hello!"}] }'

IAMINE CLI

# Check balance python -m iamine wallet # Ask a question (costs 1+ $IAMINE) python -m iamine ask "What is quantum computing?" # See recommended model for your machine python -m iamine recommend

Get in touch

DM
David M.
Co-founder & Architecture
RP
Regis P.
Co-founder & Strategy
IAMINE.ORG — Open Source — [email protected]