Partner Spotlight·

Akta.pro: Private Company Data and Signals API for Agents

Christian Pickett

Christian Pickett

Co-founder

Private company data is still split between expensive legacy terminals, scraped lists, and noisy web search. That is awkward for a human analyst. It is worse for an agent that needs to find the right company, understand what changed, and act while the signal is still fresh.

Today we're excited to announce our partnership with akta.pro, a private company data and signals API built by Wokelo AI, now available on Orthogonal. akta.pro gives agents structured company intelligence, entity-resolved news, list generation, and alternative signals through an API surface designed for automated workflows.

What is akta.pro?

akta.pro is a private markets API suite for agents, developers, GTM teams, finance teams, and data teams. It covers more than 20 million global companies, monitors more than 30,000 sub-sectors, and returns more than 70 data points per company.

The useful part is not only the scale. akta.pro pairs company records with real-time news and alternative signals, then resolves those signals back to companies so an agent can reason from a stable entity instead of a pile of articles. Its docs expose company data, company search, news signals, list generation, headcount trends, website traffic, job posts, social posts, employee reviews, and product reviews.

That makes akta.pro a strong fit for workflows where agents need private-market context. A sourcing agent can generate a list of companies in a narrow thesis. A GTM agent can enrich accounts and watch for product launches, partnerships, hiring, or funding signals. A diligence agent can start with a domain and assemble firmographics, business model context, customer profile, funding detail, technology, digital presence, and strategic signals.

Using akta.pro with Orthogonal

akta.pro is available through the same Orthogonal SDK your agents already use. One Orthogonal key gives you access to private company data and signals alongside the rest of your agent API stack.

Resolve a Company

Start with a company name or website and resolve it to the Akta company record your agent can use across enrichment and monitoring workflows.

import Orthogonal from "@orth/sdk"; const orthogonal = new Orthogonal({ apiKey: process.env.ORTHOGONAL_API_KEY, }); const company = await orthogonal.run({ api: "akta-pro", path: "/v1/company/search", method: "GET", query: { query: "canva.com", }, }); console.log(company.data);

Enrich a Company

Company enrichment returns structured sections for firmographics, business model, company assessment, trust signals, hierarchy, digital presence, financial estimates, locations, management profile, products, strategic signals, customer profile, industry, technology, funding, and M&A data. Ask for the sections your workflow needs so the response stays compact.

const profile = await orthogonal.run({ api: "akta-pro", path: "/v1/company/enrichment", method: "GET", query: { company: "canva.com", sections: "firmographic,business_model,customer_profile,technology", }, }); console.log(profile.data);

Monitor News Signals

News Signals returns articles enriched with AI summaries, event types, publisher metadata, sentiment, industry tags, named entities, company mentions, and article text. Agents can monitor one company, a primary company mention, an industry, an open-ended topic, or a structured set of event filters.

const news = await orthogonal.run({ api: "akta-pro", path: "/v1/news", method: "GET", query: { primary_company: "canva.com", start_date: "2026-08-01", news_score_list: "High", sentiment_list: "positive,neutral", group_articles: "true", limit: "10", }, }); console.log(news.data);

Use this when an agent needs to know what changed at an account, portfolio company, competitor, sector, or topic. The response is designed to reduce duplicate and misattributed news before it enters the workflow.

Generate a Target Company List

List Generation turns natural-language market descriptions or structured filters into matching companies. That gives agents a way to move from a thesis to a working account list without hand-building a search UI.

const list = await orthogonal.run({ api: "akta-pro", path: "/v1/list/generate/companies/", method: "POST", body: { query: "AI infrastructure companies in the US with Series A funding", limit: 25, }, }); console.log(list.data);

Using x402 Protocol

akta.pro on Orthogonal supports x402 for native HTTP payments. Agents can pay for individual API calls with USDC, no separate Akta key required.

import { wrapFetchWithPayment } from "x402-fetch"; import { privateKeyToAccount } from "viem/accounts"; const account = privateKeyToAccount( process.env.PRIVATE_KEY as `0x${string}` ); const fetchWithPayment = wrapFetchWithPayment(fetch, account); const params = new URLSearchParams({ primary_company: "canva.com", news_score_list: "High", group_articles: "true", limit: "10", }); const response = await fetchWithPayment( `https://x402.orthogonal.com/akta-pro/v1/news?${params}`, { method: "GET" } ); const data = await response.json(); console.log(data);

Using MPP

akta.pro also works through MPP, the open standard for machine-to-machine payments co-authored by Tempo and Stripe. Agents can pay for Akta calls with stablecoins, cards, or Bitcoin on the same endpoint.

import { privateKeyToAccount } from "viem/accounts"; import { Mppx, tempo } from "mppx/client"; Mppx.create({ methods: [tempo({ account: privateKeyToAccount("0x...") })], }); const response = await fetch( "https://mpp.orthogonal.com/akta-pro/v1/company/enrichment?company=canva.com&sections=firmographic,business_model", { method: "GET" } ); const data = await response.json(); console.log(data);

The mppx client handles the 402 challenge, signs a credential with your wallet, and retries with proof of payment.

What Agents Can Do with akta.pro

Agents can use akta.pro to build and refresh private-company intelligence without stitching together a pile of data vendors. They can resolve a domain to a company record, enrich the profile with structured fields, monitor entity-resolved news, and generate lists that match a precise market thesis.

That shows up in practical workflows. A GTM agent can find accounts that match an ICP, check whether a company is hiring or launching products, and route only high-signal accounts to outreach. A VC agent can monitor portfolio companies, watch competitors, and surface private-market movement before a quarterly review. A diligence agent can collect source-attributed company context and decide what needs a human follow-up.

Why We Partnered with akta.pro

Agents need current private-company context, not just a static company row. akta.pro combines company records, real-time news, list generation, and alternative signals in a form agents can call directly. The entity resolution and compact responses matter because they make downstream workflows more reliable: fewer duplicate articles, fewer ambiguous company matches, and less parsing work between signal and action.

That fits Orthogonal well. We want agents to discover the right API, call it through one interface, and pay only for the data they use. akta.pro gives builders a private-market intelligence layer that can sit inside sourcing, sales, research, diligence, and monitoring workflows from day one.

Try It Today

Sign up for Orthogonal and get $10 free credits to try akta.pro and dozens of other APIs. One key, hundreds of APIs, pay per request.

Get Started | View on Orthogonal | akta.pro Website