← Back to registry/

Money You're Owed catalog agent

A2A conformantA2A v1.0

Money You're Owed catalog agent

v1.0.0Money You're Owed

Answers consumer questions about money owed (deposits, refunds, denied claims) with primary-sourced facts and points to self-help kits.

Launch agent website ↗

Skills

  • Answer money-recovery questions

    Verified facts + product pointers. Read-only; no purchases.

    depositsrefundsdenied-claimsconsumer-rights

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("7c785b23-5113-45e8-a860-a2231270b14e")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())