Step 1
Authenticate
clibob
export BOB_API_KEY=bok_... export BOB_API_URL=http://localhost:8080/api/v1 bob auth me
Clear contracts, runnable examples, and proof-attribution primitives by Bank of Bots.
Step 1
export BOB_API_KEY=bok_... export BOB_API_URL=http://localhost:8080/api/v1 bob auth me
Step 2
bob agent get <agent-id> bob wallet list <agent-id> bob policy list <agent-id>
Step 3
bob intent quote <agent-id> --amount 2500 \ --destination-type bank_counterparty \ --destination-ref <counterparty-id> bob intent execute <agent-id> <intent-id>
Base URL: https://api.bankofbots.ai/api/v1 • Auth: Authorization: Bearer <api_key>
5 endpoints found.
/api/v1/agents/{agent_id}/payment-intentsBuilds an intent with ranked rails, fee projection, and settlement ETA guidance.
Parameters
agent_idpath · uuid · requiredOwning agent identifier.amountbody · integer · requiredSmallest unit amount (cents/sats).destination_typebody · enum · requiredOne of raw | bank_counterparty | unit_account | bob_address.destination_refbody · string · requiredDestination handle or resource id.prioritybody · enum · optionalcheapest | fastest | balanced.Request Example
curl -X POST "$BOB_API_URL/agents/$AGENT_ID/payment-intents" \
-H "Authorization: Bearer $BOB_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"amount": 2500,
"destination_type": "bank_counterparty",
"destination_ref": "cp_123",
"priority": "balanced"
}'{
"amount": 2500,
"destination_type": "bank_counterparty",
"destination_ref": "cp_123",
"priority": "balanced"
}Need deeper integration guidance for your agent fleet?