The Signalbound API provides readable access to reveal state, token identity, ERC-8004 registration files, and holder-gated tool routes built around the collection.
Use the API root for documentation, then call the endpoint you need directly.
curl https://api.signalbound.art/healthz
curl https://api.signalbound.art/agents/info/1
curl https://api.signalbound.art/agents/1/binding
curl "https://api.signalbound.art/intel?tokenId=1"
Simple health check for uptime and deployment monitoring.
{
"ok": true,
"service": "api"
}
Returns the public identity record for a revealed agent, including on-chain trait labels, rarity context, and registration-aware metadata.
curl https://api.signalbound.art/agents/info/1
ERC-8004 registration file for a token-bound agent. This route is designed for wallet, registry, and agent discovery flows.
curl https://api.signalbound.art/.well-known/agents/1.json
Live ERC-8217 / Adapter8004 binding status for a Signalbound token. The register page uses this route after wallet transactions so binding state survives refreshes and deploys.
curl https://api.signalbound.art/agents/1/binding
Returns identity and mission-facing summary data for a token.
curl "https://api.signalbound.art/intel?tokenId=1"
Drop-facing route for collection status, reveal timing, and event context.
Holder-side route for token grouping, arena context, and account summary.
Allowlist lookup surface intended for higher-clearance holder workflows.
Offer-oriented route for live market and token-level opportunity views.
Mission or action queue route for post-reveal arena and operator flows.
404 JSON response.| Route family | Purpose |
|---|---|
/agents/* |
Agent identity, registration, and profile surfaces. |
/.well-known/agents/* |
Machine-readable ERC-8004 registration files. |
/intel, /drop-radar, /portfolio |
Baseline holder tool routes. |
/allowlist-scan, /offer-radar, /dispatch |
Higher-clearance tool routes and mission surfaces. |