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

Service
URL
Description

Main Website

Project homepage and overview

App Dashboard

Node dashboard, job metrics, config tools

Model Marketplace

Public registry of deployed models

Governance Portal

DAO voting interface

Documentation (Docs)

GitBook-based technical documentation

Node Explorer

Real-time view of nodes and mesh metrics

API Root (Inference)

https://api.inframind.host/inference/v1/

Base URL for model inference calls


๐Ÿ“ฆ Storage & Deployment

Resource
Format or Pattern
Description

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

Type
Example or Link
Notes

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

Tool or Interface
URL or CLI
Purpose

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

Area
URL or Tool
Purpose

Proposal Portal

View and vote on protocol changes

DAO Voting Power

infra gov power

View how many votes you hold

Proposal Drafts (GitHub)

Draft and discuss upgrade proposals

Execute Vote Outcome

infra gov execute --id <proposal_id>

Enact a passed proposal (multisig-only)


๐ŸŽฏ Bounties & Ecosystem

Feature
Link or Format
Purpose

Bounty Board

Open calls for missing models

Submit Bounty Result

infra bounty submit --bounty-id <id> --model ./model

Claim reward after deployment

Agent Models Listing

Prebuilt agent-compatible tools


๐Ÿ—ƒ๏ธ Infrastructure APIs (Advanced)

Endpoint/API
Format or Tool
Use Case

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