## List `agents.api_keys.list(stragent_uuid, APIKeyListParams**kwargs) -> APIKeyListResponse` **get** `/v2/gen-ai/agents/{agent_uuid}/api_keys` To list all agent API keys, send a GET request to `/v2/gen-ai/agents/{agent_uuid}/api_keys`. ### Parameters - **agent\_uuid:** `str` - **page:** `int` Page number. - **per\_page:** `int` Items per page. ### Returns - `class APIKeyListResponse` - **api\_key\_infos:** `Optional[List[APIAgentAPIKeyInfo]]` Api key infos - **created\_at:** `Optional[datetime]` Creation date - **created\_by:** `Optional[str]` Created by - **deleted\_at:** `Optional[datetime]` Deleted date - **name:** `Optional[str]` Name - **secret\_key:** `Optional[str]` - **uuid:** `Optional[str]` Uuid - **links:** `Optional[APILinks]` Links to other pages - **meta:** `Optional[APIMeta]` Meta information about the data set ### Example ```python from do_gradientai import GradientAI client = GradientAI() api_keys = client.agents.api_keys.list( agent_uuid="\"123e4567-e89b-12d3-a456-426614174000\"", ) print(api_keys.api_key_infos) ```