Peec AI
list_chats
List chats (individual AI responses) for a project over a date range. Each chat is produced by running one prompt against one AI engine on a given date. Filters: - brand_id: only chats that mentioned the given brand - prompt_id: only chats produced by the given prompt - model_id: only chats from the given AI engine (chatgpt-scraper, gpt-4o, gpt-4o-search, gpt-3.5-turbo, llama-sonar, perplexity-scraper, sonar, gemini-2.5-flash, gemini-scraper, google-ai-overview-scraper, google-ai-mode-scraper, llama-3.3-70b-instruct, deepseek-r1, claude-3.5-haiku, claude-haiku-4.5, claude-sonnet-4, grok-scraper, microsoft-copilot-scraper, grok-4) Use the returned chat IDs with get_chat to retrieve full message content, sources, and brand mentions. Returns columnar JSON: {columns, rows, rowCount}. Columns: id, prompt_id, model_id, date.
Other tools also called list_chats?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "number",
"default": 100,
"maximum": 10000,
"minimum": 1,
"description": "Maximum number of results to return"
},
"offset": {
"type": "number",
"default": 0,
"minimum": 0,
"description": "Number of results to skip"
},
"brand_id": {
"type": "string",
"description": "Filter to chats that mentioned this brand"
},
"end_date": {
"type": "string",
"format": "date",
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))$",
"description": "End date in ISO format (YYYY-MM-DD)"
},
"model_id": {
"enum": [
"chatgpt-scraper",
"gpt-4o",
"gpt-4o-search",
"gpt-3.5-turbo",
"llama-sonar",
"perplexity-scraper",
"sonar",
"gemini-2.5-flash",
"gemini-scraper",
"google-ai-overview-scraper",
"google-ai-mode-scraper",
"llama-3.3-70b-instruct",
"deepseek-r1",
"claude-3.5-haiku",
"claude-haiku-4.5",
"claude-sonnet-4",
"grok-scraper",
"microsoft-copilot-scraper",
"grok-4"
],
"type": "string",
"description": "Filter to chats from this AI engine"
},
"prompt_id": {
"type": "string",
"description": "Filter to chats produced by this prompt"
},
"project_id": {
"type": "string",
"description": "The project ID"
},
"start_date": {
"type": "string",
"format": "date",
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))$",
"description": "Start date in ISO format (YYYY-MM-DD)"
}
}
}