Links
This page collects all verified infrastructure URLs and endpoint patterns for InfraMind. Use this as your single reference for interacting with the network โ from deploying a model, calling inference endpoints, exploring the mesh, or participating in governance.
๐ Core Domains
API Root (Inference)
https://api.inframind.host/inference/v1/
Base URL for model inference calls
๐ฆ Storage & Deployment
IPFS CID Gateway
https://ipfs.io/ipfs/<cid>
View model bundles via IPFS
Arweave Transaction Viewer
https://viewblock.io/arweave/tx/<txid>
View Arweave-pinned model metadata
Registry Publish
infra publish --image <path>
Push model container to mesh storage
Container Reference
ipfs://<cid>
Canonical model pointer
Model Manifest Location
included in registry entry
Refers to model.yaml
+ container hash
๐ง Model API & Access
Public Model Endpoint
https://api.inframind.host/inference/v1/summarizer-v1
Call a deployed model
Private Token Generator
infra token generate --model <model_id>
CLI command to create access tokens
Model OpenAPI Docs
https://api.inframind.host/docs/<model_id>
Auto-generated schema documentation
Upload Model
infra register --model model.yaml
Registers your container + metadata
๐งฐ Developer Utilities
Test Locally
infra simulate --model model.yaml --input test.json
Run full job simulation offline
Job Debug Viewer
infra debug --job <job_id>
See logs, proof, container output
Tokenized Endpoint Auth
Authorization: Bearer <token>
Header format for private model calls
Job Tracing
infra trace --model ...
Measure container startup + inference
๐๏ธ Governance
DAO Voting Power
infra gov power
View how many votes you hold
Execute Vote Outcome
infra gov execute --id <proposal_id>
Enact a passed proposal (multisig-only)
๐ฏ Bounties & Ecosystem
Submit Bounty Result
infra bounty submit --bounty-id <id> --model ./model
Claim reward after deployment
๐๏ธ Infrastructure APIs (Advanced)
Scheduler Ping
GET /scheduler/ping
For testing scheduler reachability
Node Heartbeat Submit
POST /node/heartbeat
For custom nodes manually submitting
Proof Submit API
POST /job/submit-proof
Submit signed receipt from non-agent
Prometheus Exporter
http://<node_ip>:9100/metrics
For live mesh metrics visualization
Last updated