Skip to main content

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.

Open session

session = await client.create_prepaid_session(
    agent_auth="AGENT_AUTHORITY",
    budget_usdc=5.0,
)

Send messages

response = await client.send_message_with_budget(
    session_id=session["sessionId"],
    message="Analyze this data",
)

Close

result = await client.close_session(session["sessionId"])