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

# akta.pro

> Private company data and news signals API covering 20M+ entity-resolved companies.

Private company data and news signals API covering 20M+ entity-resolved companies. Enriches a company across sections (firmographics, business model, management, technology, financial estimates), fetches news enriched with AI summaries, sentiment, and event types, and returns alternative signals: employee and product reviews, headcount trends, job posts, social posts, and website traffic. Best for private-market research, deal screening, and CRM enrichment. Unlike Apollo (contact-centric sales prospecting), akta.pro focuses on company-level intelligence for private markets; the free company/industry search endpoints resolve names or domains to UUIDs and industry codes used by the paid endpoints.

10 endpoints available through Lava's AI Gateway. See the [akta.pro API docs](https://docs.akta.pro) for full documentation.

<Info>Supports both **managed** (Lava's API keys) and **unmanaged** (bring your own credentials) mode.</Info>

## Endpoints

### Fetch news articles filtered by company, industry, topic, date range, sentiment, type, or news score. Each article carries an AI summary, event classification, sentiment, company mentions, and named entities. Paginate with limit/offset (default limit 10, max 1000). Costs 0.1 credits per call plus 0.01 per article returned.

**GET** `https://api.akta.pro/api/v1/news/?company=https://canva.com&limit=10` — \$0.01 / request

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.akta.pro/api/v1/news/?company=https://canva.com&limit=10', { method: 'GET' });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.akta.pro%2Fapi%2Fv1%2Fnews%2F%3Fcompany%3Dhttps%3A%2F%2Fcanva.com%26limit%3D10" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY"
    ```
  </Tab>
</Tabs>

### Enrich a company (by website or UUID) across sections: firmographic, business\_model, company\_assessment, trust\_signal, company\_hierarchy, digital\_presence, financial\_estimate, location, management\_profile, product\_offering, strategic\_signal, customer\_profile, industry, technology. Omitting `sections` returns all of them (17.5 credits); scope it to pay only for the sections you need (0.5 to 2 credits each).

**GET** `https://api.akta.pro/api/v1/company/enrichment/?company=https://canva.com&sections=firmographic,business_model` — \$0.875 / request

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.akta.pro/api/v1/company/enrichment/?company=https://canva.com&sections=firmographic,business_model', { method: 'GET' });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.akta.pro%2Fapi%2Fv1%2Fcompany%2Fenrichment%2F%3Fcompany%3Dhttps%3A%2F%2Fcanva.com%26sections%3Dfirmographic%2Cbusiness_model" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY"
    ```
  </Tab>
</Tabs>

### Resolve a company by name, website, or UUID and get core identity fields including the UUID used by the other endpoints. Free, consumes no credits.

**GET** `https://api.akta.pro/api/v1/company/search/?query=canva` — Free

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.akta.pro/api/v1/company/search/?query=canva', { method: 'GET' });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.akta.pro%2Fapi%2Fv1%2Fcompany%2Fsearch%2F%3Fquery%3Dcanva" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY"
    ```
  </Tab>
</Tabs>

### Resolve an industry from a free-text query and get matching industry codes ranked by similarity, for use in news filters. Free, consumes no credits.

**GET** `https://api.akta.pro/api/v1/industry/search/?query=cloud%20computing` — Free

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.akta.pro/api/v1/industry/search/?query=cloud%20computing', { method: 'GET' });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.akta.pro%2Fapi%2Fv1%2Findustry%2Fsearch%2F%3Fquery%3Dcloud%2520computing" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY"
    ```
  </Tab>
</Tabs>

### Fetch employee review signals for a company: overall rating, dimension-level scores (culture, work-life balance, senior management), and paginated individual reviews sourced from Glassdoor and other providers. 1.5 credits per 50 reviews.

**GET** `https://api.akta.pro/api/v1/company/employee-reviews/?company=https://canva.com&limit=50` — \$0.075 / request

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.akta.pro/api/v1/company/employee-reviews/?company=https://canva.com&limit=50', { method: 'GET' });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.akta.pro%2Fapi%2Fv1%2Fcompany%2Femployee-reviews%2F%3Fcompany%3Dhttps%3A%2F%2Fcanva.com%26limit%3D50" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY"
    ```
  </Tab>
</Tabs>

### Fetch a company product catalog and per-product reviews with ratings, star distribution, pros, cons, and pricing, sourced from G2 and other providers. Fetching the product list alone is free; 1.5 credits per 50 reviews returned.

**GET** `https://api.akta.pro/api/v1/company/product-reviews/?company=https://canva.com&limit=50` — \$0.075 / request

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.akta.pro/api/v1/company/product-reviews/?company=https://canva.com&limit=50', { method: 'GET' });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.akta.pro%2Fapi%2Fv1%2Fcompany%2Fproduct-reviews%2F%3Fcompany%3Dhttps%3A%2F%2Fcanva.com%26limit%3D50" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY"
    ```
  </Tab>
</Tabs>

### Fetch LinkedIn-sourced headcount data for a company: total employee count, historical growth trends, and a functional breakdown of the workforce. 2.5 credits per call.

**GET** `https://api.akta.pro/api/v1/company/headcount-trends/?company=https://canva.com` — \$0.125 / request

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.akta.pro/api/v1/company/headcount-trends/?company=https://canva.com', { method: 'GET' });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.akta.pro%2Fapi%2Fv1%2Fcompany%2Fheadcount-trends%2F%3Fcompany%3Dhttps%3A%2F%2Fcanva.com" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY"
    ```
  </Tab>
</Tabs>

### Fetch live LinkedIn and Indeed job listings for a company, including title, location, description, compensation, experience level, and extracted key skills. 3 credits per call.

**GET** `https://api.akta.pro/api/v1/company/jobs/?company=https://canva.com&limit=50` — \$0.15 / request

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.akta.pro/api/v1/company/jobs/?company=https://canva.com&limit=50', { method: 'GET' });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.akta.pro%2Fapi%2Fv1%2Fcompany%2Fjobs%2F%3Fcompany%3Dhttps%3A%2F%2Fcanva.com%26limit%3D50" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY"
    ```
  </Tab>
</Tabs>

### Fetch social media posts published by a company, including content type, text, publish date, paid/repost flags, an AI classification, and engagement metrics. 1.5 credits per call.

**GET** `https://api.akta.pro/api/v1/company/posts/?company=https://canva.com&limit=50` — \$0.075 / request

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.akta.pro/api/v1/company/posts/?company=https://canva.com&limit=50', { method: 'GET' });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.akta.pro%2Fapi%2Fv1%2Fcompany%2Fposts%2F%3Fcompany%3Dhttps%3A%2F%2Fcanva.com%26limit%3D50" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY"
    ```
  </Tab>
</Tabs>

### Fetch website traffic signals for a company: the most recent month of engagement metrics, historical monthly visit estimates, and a breakdown of traffic by acquisition source. 1.5 credits per call.

**GET** `https://api.akta.pro/api/v1/company/website-traffic/?company=https://canva.com` — \$0.075 / request

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.akta.pro/api/v1/company/website-traffic/?company=https://canva.com', { method: 'GET' });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.akta.pro%2Fapi%2Fv1%2Fcompany%2Fwebsite-traffic%2F%3Fcompany%3Dhttps%3A%2F%2Fcanva.com" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY"
    ```
  </Tab>
</Tabs>

## Next Steps

<CardGroup cols={2}>
  <Card title="All Providers" icon="grid" href="/gateway/supported-providers">
    Browse all supported AI providers
  </Card>

  <Card title="Forward Proxy" icon="route" href="/gateway/forward-proxy">
    Learn how to construct proxy URLs and authenticate requests
  </Card>
</CardGroup>
