Skip to main content
GET
/
v1
/
projects
/
{projectId}
/
fanouts
/
details
curl --request GET \
  --url 'https://api.finseo.ai/v1/projects/proj_abc123/fanouts/details?query=best+CRM+for+small+business+2026&timeframe=30d' \
  --header 'Authorization: Bearer YOUR_API_KEY'
{
  "data": {
    "query": "best CRM for small business 2026",
    "totalOccurrences": 47,
    "occurrences": [
      {
        "resultId": "uuid-1",
        "promptId": "prompt-uuid-1",
        "promptText": "What CRM should I use for my startup?",
        "brandName": "yourbrand",
        "model": "chatgpt",
        "timestamp": "2026-03-29T18:42:00Z",
        "visible": true,
        "mentions": 2
      },
      {
        "resultId": "uuid-2",
        "promptId": "prompt-uuid-2",
        "promptText": "Best CRM for B2B SaaS",
        "brandName": "yourbrand",
        "model": "perplexity",
        "timestamp": "2026-03-29T15:20:00Z",
        "visible": false,
        "mentions": 0
      }
    ]
  }
}
Returns every tracking result where this specific fan-out query was generated, including the source prompt, model, timestamp, visibility, and mentions. Use this endpoint to drill down from the aggregated fan-out list (GET /fanouts) into the individual occurrences.
projectId
string
required
The project ID
query
string
required
The exact fan-out query text (case-insensitive match)
timeframe
string
default:"90d"
Time window — 7d, 30d, 90d, 365d, or all to search across all fan-outs ever
startDate
string
Custom start date (YYYY-MM-DD)
endDate
string
Custom end date (YYYY-MM-DD)
tags
string
Comma-separated tags to filter source prompts
curl --request GET \
  --url 'https://api.finseo.ai/v1/projects/proj_abc123/fanouts/details?query=best+CRM+for+small+business+2026&timeframe=30d' \
  --header 'Authorization: Bearer YOUR_API_KEY'
{
  "data": {
    "query": "best CRM for small business 2026",
    "totalOccurrences": 47,
    "occurrences": [
      {
        "resultId": "uuid-1",
        "promptId": "prompt-uuid-1",
        "promptText": "What CRM should I use for my startup?",
        "brandName": "yourbrand",
        "model": "chatgpt",
        "timestamp": "2026-03-29T18:42:00Z",
        "visible": true,
        "mentions": 2
      },
      {
        "resultId": "uuid-2",
        "promptId": "prompt-uuid-2",
        "promptText": "Best CRM for B2B SaaS",
        "brandName": "yourbrand",
        "model": "perplexity",
        "timestamp": "2026-03-29T15:20:00Z",
        "visible": false,
        "mentions": 0
      }
    ]
  }
}