Retrieve the full configuration and details of a specific saved voice agent using its unique ID.
Retrieve the complete configuration profile of a specific Voice Agent. This endpoint is particularly useful when you need to audit an agent’s current settings, verify its configured LLM/TTS engine, or dynamically load its variables into your own application’s UI before starting a live session.Documentation Index
Fetch the complete documentation index at: https://docs.lyzr.ai/llms.txt
Use this file to discover all available pages before exploring further.
x-api-key header.agentId directly in the URL path.
agentId: The unique identifier generated when the agent was first created (e.g., 1bca24a70cf2e9fb0c722a35).200 OK status with the full agent object.
id: Confirms the ID of the fetched agent.config: The exact configuration dictionary powering the agent. This includes all prompt instructions (agent_role, agent_goal), configured voice/avatar models, and any connected tools or knowledge bases.createdAt & updatedAt: Timestamps to help you track configuration changes over time.400 Invalid agent id: This usually occurs if the ID string is malformed or not the correct length. Ensure there are no trailing spaces in your path.404 Agent not found: The format of the ID is correct, but no agent exists with this identifier in your organization. Double-check the ID or verify that the agent hasn’t been deleted.