Skip to content
Scalekit Docs

Akta Pro

scalekit1 toolAPI KeyAnalyticsSearch

Connect to Akta Pro to search and monitor company news signals, including sentiment, entities, and industry classification, for sales and market...

Akta Pro connector

  1. Terminal window
    npm install @scalekit-sdk/node

    Full SDK reference: Node.js | Python

  2. Add your Scalekit credentials to your .env file. Find values in app.scalekit.com > Developers > API Credentials.

    .env
    SCALEKIT_ENVIRONMENT_URL=<your-environment-url>
    SCALEKIT_CLIENT_ID=<your-client-id>
    SCALEKIT_CLIENT_SECRET=<your-client-secret>
  3. quickstart.ts
    import { ScalekitClient } from '@scalekit-sdk/node'
    import 'dotenv/config'
    const scalekit = new ScalekitClient(
    process.env.SCALEKIT_ENV_URL,
    process.env.SCALEKIT_CLIENT_ID,
    process.env.SCALEKIT_CLIENT_SECRET,
    )
    const actions = scalekit.actions
    const connector = 'aktapro'
    const identifier = 'user_123'
    // Make your first call
    const result = await actions.executeTool({
    connector,
    identifier,
    toolName: 'aktapro_search_news',
    toolInput: {},
    })
    console.log(result)

Connect this agent connector to let your agent:

  • Search news — Search company news signals with filters for company, industry, sentiment, entities, and date range

Use the exact tool names from the Tool list below when you call execute_tool. If you’re not sure which name to use, list the tools available for the current user first.

aktapro_search_news#Search company news signals with filters for company, industry, sentiment, entities, and date range. Returns article title, URL, publisher, sentiment, AI summary, and classification metadata.23 params

Search company news signals with filters for company, industry, sentiment, entities, and date range. Returns article title, URL, publisher, sentiment, AI summary, and classification metadata.

NameTypeRequiredDescription
blacklistedstringoptionalComma-separated publisher domains to exclude.
companystringoptionalCompany website URL or company UUID to filter news for. Mutually exclusive with primary_company.
countriesstringoptionalComma-separated 3-letter ISO country codes to filter by.
end_datestringoptionalEnd date filter, format YYYY-MM-DD. Defaults to today.
entity_event_liststringoptionalComma-separated events to filter by.
entity_location_liststringoptionalComma-separated locations to filter by.
entity_person_liststringoptionalComma-separated person names to filter by.
entity_product_liststringoptionalComma-separated products to filter by.
iab_code_liststringoptionalComma-separated IAB codes to filter by.
industrystringoptionalComma-separated industry codes to filter by.
iptc_code_liststringoptionalComma-separated IPTC codes to filter by.
limitintegeroptionalNumber of results to return. Default 10, max 1000.
naics_code_liststringoptionalComma-separated NAICS codes to filter by.
news_score_liststringoptionalFilter by newsworthiness score: High, Medium, Low, or all (default).
offsetintegeroptionalOffset for pagination. Default 0.
primary_companystringoptionalCompany website URL or UUID where the company is the primary subject of the article. Mutually exclusive with company.
querystringoptionalTopic or keyword search. Mutually exclusive with title.
sentiment_liststringoptionalComma-separated sentiment filters: positive, negative, neutral, or all.
sic_code_liststringoptionalComma-separated SIC codes to filter by.
start_datestringoptionalStart date filter, format YYYY-MM-DD.
titlestringoptionalSearch by article title. Mutually exclusive with query.
type_liststringoptionalComma-separated news category filters.
unique_articlebooleanoptionalGroup similar articles together.