List all keys for a given user or team.
Returns: { "keys": List[str], "total_count": int, "current_page": int, "total_pages": int, }
Successful Response
const response = await fetch('/key/list', { method: 'GET', headers: {}, }); const data = await response.json();
{ "keys": [ "text" ], "total_count": 0, "current_page": 0, "total_pages": 0 }