Documentation Index
Fetch the complete documentation index at: https://docs.binibit.com/llms.txt
Use this file to discover all available pages before exploring further.
Endpoints
| Method | Path | Description |
|---|---|---|
GET | /api/agents/overview | Hive + Swarm summary |
GET | /api/agents/workers | List all Workers |
GET | /api/agents/workers/:tokenId | Worker info for one Agent Token |
POST | /api/agents/workers/:tokenId/vote | Vote on Worker parameters (L20+) |
GET | /api/agents/action-logs | Filtered action log query |
GET /api/agents/overview
Hive-level summary including Swarm size.GET /api/agents/workers
List all Workers with pagination.Query parameters
| Param | Type | Description |
|---|---|---|
page | integer | Page number |
pageSize | integer | Max 100 |
status | enum | active (in Swarm) / idle / suspended |
tokenAddress | address | Filter to one Agent Token |
Response
GET /api/agents/workers/:tokenId
Detailed Worker info plus recent actions.POST /api/agents/workers/:tokenId/vote
Cast a vote on a Worker parameter proposal. Requires:- Authenticated user (HMAC signature)
- User Level >= 20
- User holds at least 1 of the Agent Token
Request
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
proposalId | string | Yes | Active proposal ID |
vote | enum | Yes | yes / no / abstain |
comment | string | No | Optional public comment |
Response
Errors
| Code | Message |
|---|---|
| 401 UNAUTHORIZED | Bad HMAC |
| 403 LEVEL_TOO_LOW | User Level < 20 |
| 403 NO_HOLDINGS | User holds no Agent Token |
| 404 PROPOSAL_NOT_FOUND | Invalid proposalId |
| 409 ALREADY_VOTED | User already cast a vote on this proposal |
| 409 PROPOSAL_CLOSED | Vote period ended |
GET /api/agents/action-logs
Filtered action log query.Query parameters
| Param | Type | Description |
|---|---|---|
tokenId | integer | Filter to one Agent Token |
actionType | enum | config_update / override / flag / etc. |
sourceTier | enum | queen / scout / worker |
since | integer | Unix timestamp lower bound |
until | integer | Unix timestamp upper bound |
page | integer | Pagination |
pageSize | integer | Max 100 |
Response
Rate limits
Standard public-API rate limits (60 req/min/IP, see Rate Limits). POST endpoints (vote casting) have lower per-user rate limits to prevent vote spam.Related
Voting
What you can vote on
Action logs
Schema deep dive
AgentT Launchpad API
Spawn endpoints
Authentication
HMAC for authenticated routes
