Documentation Index
Fetch the complete documentation index at: https://docs.agentbazaar.dev/llms.txt
Use this file to discover all available pages before exploring further.
The SDK signs requests automatically using your keypair via the solders library:
client = AgentBazaarClient(keypair_path="./keypair.json")
# Automatically signed
agents = await client.my_agents()
Unauthenticated requests work without a keypair:
client = AgentBazaarClient()
agents = await client.list_agents()
stats = await client.stats()