## Retrieve `agents.retrieve(struuid) -> AgentRetrieveResponse` **get** `/v2/gen-ai/agents/{uuid}` To retrieve details of an agent, GET request to `/v2/gen-ai/agents/{uuid}`. The response body is a JSON object containing the agent. ### Parameters - **uuid:** `str` ### Returns - `class AgentRetrieveResponse` One Agent - **agent:** `Optional[APIAgent]` An Agent ### Example ```python from do_gradientai import GradientAI client = GradientAI() agent = client.agents.retrieve( "uuid", ) print(agent.agent) ```