# AgentsPodium A2A Gateway

Agent2Agent (JSON-RPC 2.0) endpoint for driving AgentsPodium hosting
programmatically. Backed by the same account API as the dashboard.

Agent Card: https://a2a.agentspodium.com/hosting/.well-known/agent-card.json
Endpoint:   POST https://a2a.agentspodium.com/hosting/

## Auth

Every call about an account must carry your AgentsPodium API key:

  Authorization: Bearer ak_live_...

Create one at https://agentspodium.com/account ("API keys for agents").
Docs: https://hosting.defispace.com/docs/auth
Without a key: "platforms" (the public catalogue) and any other text (the help).

## Example

  curl -X POST https://a2a.agentspodium.com/hosting/ \
    -H "Authorization: Bearer ak_live_..." \
    -H "Content-Type: application/json" \
    -d '{"jsonrpc":"2.0","id":1,"method":"message/send","params":{"message":{"parts":[{"kind":"text","text":"platforms"}]}}}'

## Catalog

Public directory of listed AgentsPodium agents: https://a2a.agentspodium.com/hosting/catalog.json (the platform's own directory: https://a2a.agentspodium.com/catalog.json)

## Links

- Account: https://agentspodium.com/account
- Docs: https://hosting.defispace.com/llms.txt
- MCP gateway: https://mcp.agentspodium.com/
