Get AgentDNS Entity Card
zyndai_get_agentRetrieve the full signed entity card for an agent, including identity, endpoints, pricing, and input/output schemas, from AgentDNS or the agent's own endpoint.
Instructions
Fetch the full signed entity card for an agent or service.
Hits GET /v1/entities/{id}/card on AgentDNS, falling back to the entity's own /.well-known/agent.json if the registry doesn't return a card.
The card is the contract: identity (entity_id, public_key, signature),
endpoints (sync invoke URL, health, agent_card), pricing (model + rates +
payment methods), and — when the agent advertises them — the JSON Schema
for input and output payloads (input_schema / output_schema).
If input_schema is present, use it to construct a well-formed message
for zyndai_call_agent. If output_schema is present, parse the call
response as JSON.
Args:
entity_id (string): zns:… ID from search/resolve results.
Errors:
404 — agent not registered or already deregistered.
5xx — registry temporarily unavailable.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| entity_id | Yes | AgentDNS entity ID — looks like 'zns:a90cb541…' or 'zns:svc:…'. Get one from search results. |