> ## Documentation Index
> Fetch the complete documentation index at: https://docs.akta.pro/llms.txt
> Use this file to discover all available pages before exploring further.

# List Generation API Use cases

> Usecases walkthough- Prospecting lists, companies by business model, open ended search

### Find Prospects by Funding Stage

Build lists of recently funded companies for outreach. Here is a sample payload.

```json theme={null}
{
  "limit": 100,
  "sections": [
    "firmographic",
    "funding_detail",
    "business_model"
  ],
  "sort_by": "revenue_estimate",
  "sort_order": "desc",
  "filters": {
    "funding_detail.funding_overview.funding_stage": [
      "series_a",
      "series_b"
    ],
    "location.hq.country": [
      "USA"
    ],
    "funding_detail.funding_overview.last_funding_date": {
      "gte": "2024-01-01"
    }
  }
}
```

### Find AI-Mature Companies

Here is a sample payload

```json theme={null}
{
  "limit": 50,
  "sections": [
    "firmographic",
    "technology",
    "company_assessment"
  ],
  "sort_by": "founded_year",
  "sort_order": "desc",
  "filters": {
    "firmographic.company_type": [
      "private"
    ],
    "technology.ai_maturity.scale": [
      3,
      4,
      5
    ]
  }
}
```

### Find Companies by Business Model

Subscription-based SaaS companies with PLG motion.

```json theme={null}
{
  "limit": 50,
  "sections": [
    "firmographic",
    "business_model"
  ],
  "filters": {
    "business_model.offering_type": [
      "software"
    ],
    "business_model.gtm_motion": [
      "product_led_growth"
    ],
    "business_model.revenue_model": [
      "subscription_recurring"
    ]
  }
}
```

### Open ended query

Sample payloads

```json theme={null}
{
  "query": "Healthcare SaaS companies in Europe that raised funding in 2025",
  "sections": ["firmographic", "funding_detail"],
  "limit": 50
}
```

```json theme={null}
{
  "query": "AI startups with over $50M in funding",
  "sections": ["firmographic", "financial_estimate", "technology"],
  "limit": 100
}
```
