IAMINE Pool — Live Network
Real-time view of the distributed AI network. Each node is a worker contributing compute power.
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
Copy the install command above.
Paste it in your terminal. That's it.
Your PC serves AI and earns $IAMINE tokens.
Real-time view of the distributed AI network. Each node is a worker contributing compute power.
Every worker that joins unlocks more powerful AI. Level up together.
See what your PC can do. We find the best AI model for you.
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.
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.
Contribute compute. Earn tokens. Simple.
Every AI request processed generates $IAMINE proportional to your compute.
Tradeable on DEX. Your compute power has real value.
Spend $IAMINE for premium models and priority inference.
Holders vote on models, fees, and network upgrades.
pip install iamine-ai && python -m iamine worker --auto
When the $IAMINE token is deployed on-chain, you will be able to export your earned tokens to any EVM-compatible wallet.
Multi-chain wallet. Add IAMINE token with one click.
The most popular Web3 wallet. Export and trade freely.
Contribute compute, earn credits. Use credits to access the AI API. 1 request served = 1 request earned.
OpenAI-compatible. Works with any client.
python -m iamine ask "What is quantum computing?"
curl https://iamine.org/v1/api/chat \
-H "Content-Type: application/json" \
-d '{"api_token":"iam_xxx","messages":[{"role":"user","content":"Hello"}]}'
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"])
Use IAMINE as a backend for Open WebUI. Copy these settings:
| API Base URL | http://localhost:8080/v1 |
| API Key | - |
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| Endpoint | Method | Description | Auth |
|---|---|---|---|
| /v1/chat/completions | POST | Chat (free, demo) | - |
| /v1/api/chat | POST | Chat (1 credit/request) | api_token |
| /v1/status | GET | Pool status | - |
| /v1/pool/power | GET | Pool power analysis | - |
| /v1/wallet/{token} | GET | Check balance | token in URL |
| /v1/models/available | GET | List server models | - |
| /v1/models | GET | List worker models | - |
| /v1/admin/models | GET | Model tiers + unlock status | - |
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 —
Use IAMINE with your favorite tools. The API is OpenAI-compatible.
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.
export OPENAI_API_BASE=https://iamine.org/v1
export OPENAI_API_KEY=iam_YOUR_TOKEN_HERE
claude --model iamine
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
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 https://iamine.org/v1/api/chat \
-H "Content-Type: application/json" \
-d '{
"api_token": "iam_YOUR_TOKEN",
"messages": [{"role": "user", "content": "Hello!"}]
}'
# 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