curl --request POST \
--url https://api.akta.pro/api/v1/list/generate/companies/ \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"query": "<string>",
"filters": {},
"sections": [
"<string>"
],
"limit": 123,
"offset": 123
}
'import requests
url = "https://api.akta.pro/api/v1/list/generate/companies/"
payload = {
"query": "<string>",
"filters": {},
"sections": ["<string>"],
"limit": 123,
"offset": 123
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
query: '<string>',
filters: {},
sections: ['<string>'],
limit: 123,
offset: 123
})
};
fetch('https://api.akta.pro/api/v1/list/generate/companies/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.akta.pro/api/v1/list/generate/companies/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'query' => '<string>',
'filters' => [
],
'sections' => [
'<string>'
],
'limit' => 123,
'offset' => 123
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.akta.pro/api/v1/list/generate/companies/"
payload := strings.NewReader("{\n \"query\": \"<string>\",\n \"filters\": {},\n \"sections\": [\n \"<string>\"\n ],\n \"limit\": 123,\n \"offset\": 123\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.akta.pro/api/v1/list/generate/companies/")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"query\": \"<string>\",\n \"filters\": {},\n \"sections\": [\n \"<string>\"\n ],\n \"limit\": 123,\n \"offset\": 123\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.akta.pro/api/v1/list/generate/companies/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"query\": \"<string>\",\n \"filters\": {},\n \"sections\": [\n \"<string>\"\n ],\n \"limit\": 123,\n \"offset\": 123\n}"
response = http.request(request)
puts response.read_body{
"data": [
{
"uuid": "000002f",
"name": "MoonPay",
"website": "moonpay.com",
"product_category": "Crypto Payment Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "000007a",
"name": "Ondo Finance",
"website": "ondo.finance",
"product_category": "Tokenized Real-World Asset Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00003eb",
"name": "Aptos",
"website": "aptoslabs.com",
"product_category": "Layer 1 Blockchain Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000jv6",
"name": "Algorand",
"website": "algorand.com",
"product_category": "Layer-1 Blockchain Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00004vi",
"name": "DoiT",
"website": "doit.com",
"product_category": "Cloud Cost Management & FinOps",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000ici",
"name": "CB Insights",
"website": "cbinsights.com",
"product_category": "Market Intelligence Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00000uv",
"name": "Ava Labs",
"website": "avalabs.org",
"product_category": "Blockchain Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00004pq",
"name": "Backpack",
"website": "backpack.exchange",
"product_category": "Cryptocurrency Exchange",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00005gw",
"name": "Ataccama",
"website": "ataccama.com",
"product_category": "Data Quality and Governance Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000f42",
"name": "GoFundMe",
"website": "gofundme.com",
"product_category": "Crowdfunding Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00000p2",
"name": "Jasper",
"website": "jasper.ai",
"product_category": "AI Marketing Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00002c8",
"name": "Safe Superintelligence",
"website": "ssi.inc",
"product_category": "AI Research & Development (Frontier AI Safety)",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00004la",
"name": "Pathlock",
"website": "pathlock.com",
"product_category": "Identity and Application Access Governance (ERP Security & GRC Software)",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000hp6",
"name": "Stacks",
"website": "stacks.co",
"product_category": "Bitcoin Layer-2 Blockchain Infrastructure",
"company_type": {
"code": "Public",
"label": "Public"
}
},
{
"uuid": "000apt4",
"name": "Campaign Monitor",
"website": "campaignmonitor.com",
"product_category": "Email Marketing Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00004gm",
"name": "CoinList",
"website": "coinlist.co",
"product_category": "Digital Asset Investment Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "000bjpw",
"name": "Venice",
"website": "venice.ai",
"product_category": "Privacy-First AI Infrastructure Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00003fu",
"name": "Lumeris",
"website": "lumeris.com",
"product_category": "Healthcare Value-Based Care Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00000kv",
"name": "Monad",
"website": "monad.xyz",
"product_category": "Layer 1 Blockchain Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000gz4",
"name": "DevRev",
"website": "devrev.ai",
"product_category": "AI Enterprise Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000c49",
"name": "Place",
"website": "place.com",
"product_category": "Real Estate Technology",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000qxo",
"name": "Yield Guild Games",
"website": "yieldguild.io",
"product_category": "AI Data Services and Web3 Gaming",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00006vz",
"name": "Fireflies.ai",
"website": "fireflies.ai",
"product_category": "AI Meeting Assistant Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "000079z",
"name": "Figure Markets",
"website": "figuremarkets.com",
"product_category": "Blockchain-based Digital Asset Marketplace",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00000zg",
"name": "Field AI",
"website": "fieldai.com",
"product_category": "Robot Autonomy Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000091",
"name": "Liquid AI",
"website": "liquid.ai",
"product_category": "AI Foundation Models",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00002qy",
"name": "CallRail",
"website": "callrail.com",
"product_category": "Marketing Attribution and Call Analytics Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "003qcgm",
"name": "Tempo",
"website": "tempo.xyz",
"product_category": "Blockchain Payment Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00006ra",
"name": "iTrustCapital Inc.",
"website": "itrustcapital.com",
"product_category": "Digital Asset Retirement Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00004wg",
"name": "Rarible",
"website": "rarible.com",
"product_category": "NFT Marketplace",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000931",
"name": "OpenFX",
"website": "openfx.com",
"product_category": "Cross-Border Payment Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0002tai",
"name": "Lightspark",
"website": "lightspark.com",
"product_category": "Bitcoin and Stablecoin Payments Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00026w2",
"name": "The Graph",
"website": "thegraph.com",
"product_category": "Blockchain Data Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0002ozi",
"name": "ActBlue",
"website": "secure.actblue.com",
"product_category": "Political Campaign Fundraising Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00004mw",
"name": "Arkham Intelligence",
"website": "arkhamintelligence.com",
"product_category": "Blockchain Analytics and Crypto Intelligence",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00009ae",
"name": "Blockworks",
"website": "blockworks.com",
"product_category": "Crypto Market Intelligence and On-Chain Data Analytics",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000m5g",
"name": "Sentora",
"website": "sentora.com",
"product_category": "Institutional DeFi Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000pnw",
"name": "Wispr Flow",
"website": "wisprflow.ai",
"product_category": "AI Voice Dictation Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00000cx",
"name": "Rezolve AI",
"website": "rezolve.ai",
"product_category": "Enterprise Agentic AI Software",
"company_type": {
"code": "Public",
"label": "Public"
}
},
{
"uuid": "000036e",
"name": "7AI",
"website": "7AI.com",
"product_category": "Cybersecurity Software / Security Operations (SOC) Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00000kc",
"name": "micro1",
"website": "micro1.ai",
"product_category": "AI Training Data & Evaluation Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000gat",
"name": "R3",
"website": "r3.com",
"product_category": "Enterprise Blockchain Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00003qa",
"name": "Array",
"website": "array.com",
"product_category": "Embedded Fintech Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0003o96",
"name": "Responsive",
"website": "responsive.io",
"product_category": "Strategic Response Management Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "000031g",
"name": "Replika",
"website": "replika.ai",
"product_category": "AI Companion Apps",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00005i2",
"name": "DNSFilter",
"website": "dnsfilter.com",
"product_category": "Network Security Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00008h9",
"name": "GMI Cloud",
"website": "gmicloud.ai",
"product_category": "GPU Cloud Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00002jb",
"name": "HeyGen",
"website": "heygen.com",
"product_category": null,
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "000pkt4",
"name": "Unity",
"website": "unity.com",
"product_category": "Real-Time 3D Development Platform",
"company_type": {
"code": "Public",
"label": "Public"
}
},
{
"uuid": "00006aa",
"name": "Prime Intellect",
"website": "primeintellect.ai",
"product_category": "AI Training Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
}
],
"filters": {
"location.hq.country": [
"USA"
],
"business_model.offering_type": [
"software"
],
"funding_detail.funding_overview.funding_stage": [
"series_a"
]
},
"warnings": [],
"skipped_sections": [],
"count": 50,
"total_count": 500,
"offset": 0,
"query_translated": true,
"credits_consumed": 14
}
List Generation API
Build targeted company lists using structured filters or natural language query, with optional data enrichment.
curl --request POST \
--url https://api.akta.pro/api/v1/list/generate/companies/ \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"query": "<string>",
"filters": {},
"sections": [
"<string>"
],
"limit": 123,
"offset": 123
}
'import requests
url = "https://api.akta.pro/api/v1/list/generate/companies/"
payload = {
"query": "<string>",
"filters": {},
"sections": ["<string>"],
"limit": 123,
"offset": 123
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
query: '<string>',
filters: {},
sections: ['<string>'],
limit: 123,
offset: 123
})
};
fetch('https://api.akta.pro/api/v1/list/generate/companies/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.akta.pro/api/v1/list/generate/companies/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'query' => '<string>',
'filters' => [
],
'sections' => [
'<string>'
],
'limit' => 123,
'offset' => 123
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.akta.pro/api/v1/list/generate/companies/"
payload := strings.NewReader("{\n \"query\": \"<string>\",\n \"filters\": {},\n \"sections\": [\n \"<string>\"\n ],\n \"limit\": 123,\n \"offset\": 123\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.akta.pro/api/v1/list/generate/companies/")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"query\": \"<string>\",\n \"filters\": {},\n \"sections\": [\n \"<string>\"\n ],\n \"limit\": 123,\n \"offset\": 123\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.akta.pro/api/v1/list/generate/companies/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"query\": \"<string>\",\n \"filters\": {},\n \"sections\": [\n \"<string>\"\n ],\n \"limit\": 123,\n \"offset\": 123\n}"
response = http.request(request)
puts response.read_body{
"data": [
{
"uuid": "000002f",
"name": "MoonPay",
"website": "moonpay.com",
"product_category": "Crypto Payment Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "000007a",
"name": "Ondo Finance",
"website": "ondo.finance",
"product_category": "Tokenized Real-World Asset Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00003eb",
"name": "Aptos",
"website": "aptoslabs.com",
"product_category": "Layer 1 Blockchain Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000jv6",
"name": "Algorand",
"website": "algorand.com",
"product_category": "Layer-1 Blockchain Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00004vi",
"name": "DoiT",
"website": "doit.com",
"product_category": "Cloud Cost Management & FinOps",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000ici",
"name": "CB Insights",
"website": "cbinsights.com",
"product_category": "Market Intelligence Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00000uv",
"name": "Ava Labs",
"website": "avalabs.org",
"product_category": "Blockchain Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00004pq",
"name": "Backpack",
"website": "backpack.exchange",
"product_category": "Cryptocurrency Exchange",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00005gw",
"name": "Ataccama",
"website": "ataccama.com",
"product_category": "Data Quality and Governance Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000f42",
"name": "GoFundMe",
"website": "gofundme.com",
"product_category": "Crowdfunding Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00000p2",
"name": "Jasper",
"website": "jasper.ai",
"product_category": "AI Marketing Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00002c8",
"name": "Safe Superintelligence",
"website": "ssi.inc",
"product_category": "AI Research & Development (Frontier AI Safety)",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00004la",
"name": "Pathlock",
"website": "pathlock.com",
"product_category": "Identity and Application Access Governance (ERP Security & GRC Software)",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000hp6",
"name": "Stacks",
"website": "stacks.co",
"product_category": "Bitcoin Layer-2 Blockchain Infrastructure",
"company_type": {
"code": "Public",
"label": "Public"
}
},
{
"uuid": "000apt4",
"name": "Campaign Monitor",
"website": "campaignmonitor.com",
"product_category": "Email Marketing Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00004gm",
"name": "CoinList",
"website": "coinlist.co",
"product_category": "Digital Asset Investment Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "000bjpw",
"name": "Venice",
"website": "venice.ai",
"product_category": "Privacy-First AI Infrastructure Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00003fu",
"name": "Lumeris",
"website": "lumeris.com",
"product_category": "Healthcare Value-Based Care Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00000kv",
"name": "Monad",
"website": "monad.xyz",
"product_category": "Layer 1 Blockchain Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000gz4",
"name": "DevRev",
"website": "devrev.ai",
"product_category": "AI Enterprise Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000c49",
"name": "Place",
"website": "place.com",
"product_category": "Real Estate Technology",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000qxo",
"name": "Yield Guild Games",
"website": "yieldguild.io",
"product_category": "AI Data Services and Web3 Gaming",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00006vz",
"name": "Fireflies.ai",
"website": "fireflies.ai",
"product_category": "AI Meeting Assistant Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "000079z",
"name": "Figure Markets",
"website": "figuremarkets.com",
"product_category": "Blockchain-based Digital Asset Marketplace",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00000zg",
"name": "Field AI",
"website": "fieldai.com",
"product_category": "Robot Autonomy Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000091",
"name": "Liquid AI",
"website": "liquid.ai",
"product_category": "AI Foundation Models",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00002qy",
"name": "CallRail",
"website": "callrail.com",
"product_category": "Marketing Attribution and Call Analytics Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "003qcgm",
"name": "Tempo",
"website": "tempo.xyz",
"product_category": "Blockchain Payment Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00006ra",
"name": "iTrustCapital Inc.",
"website": "itrustcapital.com",
"product_category": "Digital Asset Retirement Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00004wg",
"name": "Rarible",
"website": "rarible.com",
"product_category": "NFT Marketplace",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000931",
"name": "OpenFX",
"website": "openfx.com",
"product_category": "Cross-Border Payment Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0002tai",
"name": "Lightspark",
"website": "lightspark.com",
"product_category": "Bitcoin and Stablecoin Payments Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00026w2",
"name": "The Graph",
"website": "thegraph.com",
"product_category": "Blockchain Data Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0002ozi",
"name": "ActBlue",
"website": "secure.actblue.com",
"product_category": "Political Campaign Fundraising Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00004mw",
"name": "Arkham Intelligence",
"website": "arkhamintelligence.com",
"product_category": "Blockchain Analytics and Crypto Intelligence",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00009ae",
"name": "Blockworks",
"website": "blockworks.com",
"product_category": "Crypto Market Intelligence and On-Chain Data Analytics",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000m5g",
"name": "Sentora",
"website": "sentora.com",
"product_category": "Institutional DeFi Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000pnw",
"name": "Wispr Flow",
"website": "wisprflow.ai",
"product_category": "AI Voice Dictation Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00000cx",
"name": "Rezolve AI",
"website": "rezolve.ai",
"product_category": "Enterprise Agentic AI Software",
"company_type": {
"code": "Public",
"label": "Public"
}
},
{
"uuid": "000036e",
"name": "7AI",
"website": "7AI.com",
"product_category": "Cybersecurity Software / Security Operations (SOC) Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00000kc",
"name": "micro1",
"website": "micro1.ai",
"product_category": "AI Training Data & Evaluation Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000gat",
"name": "R3",
"website": "r3.com",
"product_category": "Enterprise Blockchain Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00003qa",
"name": "Array",
"website": "array.com",
"product_category": "Embedded Fintech Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0003o96",
"name": "Responsive",
"website": "responsive.io",
"product_category": "Strategic Response Management Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "000031g",
"name": "Replika",
"website": "replika.ai",
"product_category": "AI Companion Apps",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00005i2",
"name": "DNSFilter",
"website": "dnsfilter.com",
"product_category": "Network Security Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00008h9",
"name": "GMI Cloud",
"website": "gmicloud.ai",
"product_category": "GPU Cloud Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00002jb",
"name": "HeyGen",
"website": "heygen.com",
"product_category": null,
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "000pkt4",
"name": "Unity",
"website": "unity.com",
"product_category": "Real-Time 3D Development Platform",
"company_type": {
"code": "Public",
"label": "Public"
}
},
{
"uuid": "00006aa",
"name": "Prime Intellect",
"website": "primeintellect.ai",
"product_category": "AI Training Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
}
],
"filters": {
"location.hq.country": [
"USA"
],
"business_model.offering_type": [
"software"
],
"funding_detail.funding_overview.funding_stage": [
"series_a"
]
},
"warnings": [],
"skipped_sections": [],
"count": 50,
"total_count": 500,
"offset": 0,
"query_translated": true,
"credits_consumed": 14
}
Overview
The List Generation API lets you build targeted company lists using two approaches:- Structured Filters - Applies specific criteria like company type, location, funding stage, or industry to filter companies
- Natural Language - Describe what you’re looking for in plain text and the API interprets your intent
Endpoint Details
- Method: POST
- Endpoint:
/api/v1/list/generate/companies/
Authentication requirements
- Include a valid API key in the
x-api-keyrequest header.
Request
Request Parameters
Header Parameters
Body Parameters
filters. Choose either query or filters, not both.query.Available Filters
Firmographic Filters
Firmographic Filters
| Field | Type | Accepted Values |
|---|---|---|
firmographic.company_type | string[] | private, public |
firmographic.ownership_category | string[] | corporate_owned, family_owned, founder_individual_operated_bootstrapped, management_employee_owned, nonprofit_foundation_owned, private_equity_controlled, public, state_government_owned, venture_growth_investor_backed |
firmographic.operating_status | string[] | acquired, closed, ipo, operating |
firmographic.founded_year | object | Range object. Accepts gte and/or lte (integer, four-digit year). Eg. {“gte”: 2010, “lte”: 2014 } |
Business Model Filters
Business Model Filters
| Field | Type | Accepted Values |
|---|---|---|
business_model.gtm_type | string[] | b2b, b2b_and_b2c, b2c |
business_model.offering_type | string[] | digital_commerce_content, hardware_manufacturing, services, software |
business_model.gtm_motion | string[] | api_first, channel_partners, community_led, direct_to_consumer, enterprise_field_sales, event_driven, inside_sales, marketplace_listing, oem_embedded, product_led_growth, sales_led, others |
business_model.revenue_model | string[] | advertising, affiliate_referral, data_monetisation, freemium, grants_donations, hardware_sales, licensing_royalties, managed_services, marketplace_commission, one_time_license, professional_services, subscription_recurring, transaction_fee, usage_based |
Company Assessment Filters
Company Assessment Filters
| Field | Type | Accepted Values |
|---|---|---|
company_assessment.customer_concentration.classification | string[] | critical, high, low, moderate |
company_assessment.competitive_moat | string[] | cost_advantage, data_advantage, distribution_advantage, ecosystem_lock_in, efficient_scale, intangible_assets, network_effects, regulatory_moat, switching_costs, talent_moat |
Financial Estimate Filters
Financial Estimate Filters
| Field | Type | Accepted Values |
|---|---|---|
financial_estimate.revenue_estimate | string[] | pre_revenue, under_1m, 1m_5m, 5m_10m, 10m_25m, 25m_50m, 50m_100m, 100m_250m, 250m_500m, 500m_1b, 1b_5b, over_5b |
financial_estimate.valuation_estimate | string[] | under_10m, 10m_50m, 50m_100m, 100m_250m, 250m_500m, 500m_1b, 1b_5b, 5b_10b, 10b_25b, over_25b |
Location Filters
Location Filters
| Field | Type | Accepted Values |
|---|---|---|
location.hq.region | string[] | M49 region codes. Refer here. |
location.hq.country | string[] | Any valid 3-letter ISO alpha-3 country code (e.g. USA, IND, GBR). Refer here. |
location.hq.city | string[] | Free text — any city name (e.g. delhi) |
location.market_served.markets | string[] | Any valid 3-letter ISO alpha-3 country code (e.g. USA, CHN). Refer here. |
location.market_served.is_global | boolean | true, false |
location.offices.country | string[] | Any valid 3-letter ISO 3166-1 country code (e.g. USA, DZA). Refer here. |
location.offices.city | string[] | Free text — any city name (e.g. Berlin) |
Strategic Signal Filters
Strategic Signal Filters
| Field | Type | Accepted Values |
|---|---|---|
strategic_signal.partnership.name | string[] | Free text — any partner/company name (e.g. sequoia) |
strategic_signal.partnership.type | string[] | channel_reseller_distributor, gtm_marketing, implementation_si_consulting, oem_whitelabel_licensing, strategic_codevelopment, technology_integration, others |
strategic_signal.partnership.strategic_tier | string[] | Free text |
Customer Profile Filters
Customer Profile Filters
| Field | Type | Accepted Values |
|---|---|---|
customer_profile.select_customer.name | string[] | Free text — any customer/company name (e.g. Microsoft, Tesla) |
Industry Filters
Industry Filters
| Field | Type | Accepted Values |
|---|---|---|
industry.naics | string[] | NAICS industry codes. See the NAICS Code List. Matches a company carrying any of the selected codes. |
industry.sic | string[] | SIC industry codes. See the SIC Code List. Matches a company carrying any of the selected codes. |
industry.industry | string[] | akta.pro taxonomy industry codes. Use the Industry Search API to find matching codes. Matches any of the selected industries. |
Technology Filters
Technology Filters
| Field | Type | Accepted Values |
|---|---|---|
technology.ai_maturity.scale | number[] | 0, 1, 2, 3, 4, 50 — No AI 1 — AI Assisted 2 — AI Featured 3 — AI Differentiated 4 — AI Native 5 — AI Foundational |
technology.api_detail.has_api | boolean | true, false |
technology.app_detail.has_app | boolean | true, false |
technology.is_technology_focussed | boolean | true, false |
Funding Detail Filters
Funding Detail Filters
| Field | Type | Accepted Values |
|---|---|---|
funding_detail.funding_overview.funding_stage | string[] | acquired, angel, corporate_funded, crowdfunded, debt_funded, initial_coin_offering, non_equity_assistance, post_ipo_debt, post_ipo_equity, pre_seed, private_equity, public, seed, series_a, series_b, series_c, series_d, series_e, series_f, series_g, series_h, series_i, series_j, venture_funded |
funding_detail.funding_overview.total_funding_usd | object | Range object. Accepts gte and/or lte (integer, USD). |
funding_detail.funding_overview.num_funding_rounds | object | Range object. Accepts gte and/or lte (integer). |
funding_detail.funding_overview.last_funding_date | object | Range object. Accepts gte and/or lte (date string, YYYY-MM-DD). |
funding_detail.funding_rounds | object | Nested filter — conditions apply jointly to individual rounds, not the company’s overall funding history. Sub-fields: round (string[], same values as funding_stage above), date (object, gte/lte date string), amount_usd (object, gte/lte integer USD), investors.uuid (string[], match rounds including any of the specified investor UUIDs), investors.lead_investor (boolean, match rounds where the specified investor(s) led). |
{
"filters": {
"firmographic.company_type": ["private"],
"firmographic.founded_year": {"gte": 2015, "lte": 2022},
"location.hq.country": ["USA", "GBR"],
"financial_estimate.revenue_estimate": ["10m_25m", "25m_50m", "50m_100m"],
"technology.api_detail.has_api": true,
"business_model.gtm_motion": ["product_led_growth", "sales_led"],
"funding_detail.funding_rounds": {
"round": ["series_a", "series_b"],
"amount_usd": {"gte": 5000000}
}
}
}
firmographic, business_model, company_assessment, trust_signal, company_hierarchy, digital_presence, financial_estimate, location, management_profile, product_offering, strategic_signal, customer_profile, industry, technology, funding_detail (Enterprise only), mna_and_investment (Enterprise only)If omitted, results include only basic identity fields (uuid, name, website).Note: These sections are not supported on Pay-as-you-go plan.
relevance (default), revenue_estimate, valuation_estimate, employee_range, total_funding, founded_yearasc, descDefault = descNote: on Pay-as-you-go plan, maximum 20 companies are allowed.
Response
Successful Response Fields
{
"data": [
{
"uuid": "000002f",
"name": "MoonPay",
"website": "moonpay.com",
"product_category": "Crypto Payment Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "000007a",
"name": "Ondo Finance",
"website": "ondo.finance",
"product_category": "Tokenized Real-World Asset Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00003eb",
"name": "Aptos",
"website": "aptoslabs.com",
"product_category": "Layer 1 Blockchain Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000jv6",
"name": "Algorand",
"website": "algorand.com",
"product_category": "Layer-1 Blockchain Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00004vi",
"name": "DoiT",
"website": "doit.com",
"product_category": "Cloud Cost Management & FinOps",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000ici",
"name": "CB Insights",
"website": "cbinsights.com",
"product_category": "Market Intelligence Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00000uv",
"name": "Ava Labs",
"website": "avalabs.org",
"product_category": "Blockchain Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00004pq",
"name": "Backpack",
"website": "backpack.exchange",
"product_category": "Cryptocurrency Exchange",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00005gw",
"name": "Ataccama",
"website": "ataccama.com",
"product_category": "Data Quality and Governance Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000f42",
"name": "GoFundMe",
"website": "gofundme.com",
"product_category": "Crowdfunding Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00000p2",
"name": "Jasper",
"website": "jasper.ai",
"product_category": "AI Marketing Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00002c8",
"name": "Safe Superintelligence",
"website": "ssi.inc",
"product_category": "AI Research & Development (Frontier AI Safety)",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00004la",
"name": "Pathlock",
"website": "pathlock.com",
"product_category": "Identity and Application Access Governance (ERP Security & GRC Software)",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000hp6",
"name": "Stacks",
"website": "stacks.co",
"product_category": "Bitcoin Layer-2 Blockchain Infrastructure",
"company_type": {
"code": "Public",
"label": "Public"
}
},
{
"uuid": "000apt4",
"name": "Campaign Monitor",
"website": "campaignmonitor.com",
"product_category": "Email Marketing Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00004gm",
"name": "CoinList",
"website": "coinlist.co",
"product_category": "Digital Asset Investment Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "000bjpw",
"name": "Venice",
"website": "venice.ai",
"product_category": "Privacy-First AI Infrastructure Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00003fu",
"name": "Lumeris",
"website": "lumeris.com",
"product_category": "Healthcare Value-Based Care Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00000kv",
"name": "Monad",
"website": "monad.xyz",
"product_category": "Layer 1 Blockchain Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000gz4",
"name": "DevRev",
"website": "devrev.ai",
"product_category": "AI Enterprise Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000c49",
"name": "Place",
"website": "place.com",
"product_category": "Real Estate Technology",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000qxo",
"name": "Yield Guild Games",
"website": "yieldguild.io",
"product_category": "AI Data Services and Web3 Gaming",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00006vz",
"name": "Fireflies.ai",
"website": "fireflies.ai",
"product_category": "AI Meeting Assistant Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "000079z",
"name": "Figure Markets",
"website": "figuremarkets.com",
"product_category": "Blockchain-based Digital Asset Marketplace",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00000zg",
"name": "Field AI",
"website": "fieldai.com",
"product_category": "Robot Autonomy Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000091",
"name": "Liquid AI",
"website": "liquid.ai",
"product_category": "AI Foundation Models",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00002qy",
"name": "CallRail",
"website": "callrail.com",
"product_category": "Marketing Attribution and Call Analytics Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "003qcgm",
"name": "Tempo",
"website": "tempo.xyz",
"product_category": "Blockchain Payment Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00006ra",
"name": "iTrustCapital Inc.",
"website": "itrustcapital.com",
"product_category": "Digital Asset Retirement Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00004wg",
"name": "Rarible",
"website": "rarible.com",
"product_category": "NFT Marketplace",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000931",
"name": "OpenFX",
"website": "openfx.com",
"product_category": "Cross-Border Payment Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0002tai",
"name": "Lightspark",
"website": "lightspark.com",
"product_category": "Bitcoin and Stablecoin Payments Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00026w2",
"name": "The Graph",
"website": "thegraph.com",
"product_category": "Blockchain Data Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0002ozi",
"name": "ActBlue",
"website": "secure.actblue.com",
"product_category": "Political Campaign Fundraising Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00004mw",
"name": "Arkham Intelligence",
"website": "arkhamintelligence.com",
"product_category": "Blockchain Analytics and Crypto Intelligence",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00009ae",
"name": "Blockworks",
"website": "blockworks.com",
"product_category": "Crypto Market Intelligence and On-Chain Data Analytics",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000m5g",
"name": "Sentora",
"website": "sentora.com",
"product_category": "Institutional DeFi Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000pnw",
"name": "Wispr Flow",
"website": "wisprflow.ai",
"product_category": "AI Voice Dictation Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00000cx",
"name": "Rezolve AI",
"website": "rezolve.ai",
"product_category": "Enterprise Agentic AI Software",
"company_type": {
"code": "Public",
"label": "Public"
}
},
{
"uuid": "000036e",
"name": "7AI",
"website": "7AI.com",
"product_category": "Cybersecurity Software / Security Operations (SOC) Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00000kc",
"name": "micro1",
"website": "micro1.ai",
"product_category": "AI Training Data & Evaluation Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0000gat",
"name": "R3",
"website": "r3.com",
"product_category": "Enterprise Blockchain Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00003qa",
"name": "Array",
"website": "array.com",
"product_category": "Embedded Fintech Platform",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "0003o96",
"name": "Responsive",
"website": "responsive.io",
"product_category": "Strategic Response Management Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "000031g",
"name": "Replika",
"website": "replika.ai",
"product_category": "AI Companion Apps",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00005i2",
"name": "DNSFilter",
"website": "dnsfilter.com",
"product_category": "Network Security Software",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00008h9",
"name": "GMI Cloud",
"website": "gmicloud.ai",
"product_category": "GPU Cloud Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "00002jb",
"name": "HeyGen",
"website": "heygen.com",
"product_category": null,
"company_type": {
"code": "Private",
"label": "Private"
}
},
{
"uuid": "000pkt4",
"name": "Unity",
"website": "unity.com",
"product_category": "Real-Time 3D Development Platform",
"company_type": {
"code": "Public",
"label": "Public"
}
},
{
"uuid": "00006aa",
"name": "Prime Intellect",
"website": "primeintellect.ai",
"product_category": "AI Training Infrastructure",
"company_type": {
"code": "Private",
"label": "Private"
}
}
],
"filters": {
"location.hq.country": [
"USA"
],
"business_model.offering_type": [
"software"
],
"funding_detail.funding_overview.funding_stage": [
"series_a"
]
},
"warnings": [],
"skipped_sections": [],
"count": 50,
"total_count": 500,
"offset": 0,
"query_translated": true,
"credits_consumed": 14
}
Authorizations
API key obtained from your Akta account.
Body
Natural language search query (e.g. 'SaaS companies in the US with Series A funding'). Cannot be used with filters.
Structured filter conditions. Use the Filter Builder API to generate valid filters. Cannot be used with query. See filter options at /api-reference/listgen-api.
Data enrichment sections to include. Values: firmographic, business_model, company_assessment, trust_signal, company_hierarchy, digital_presence, financial_estimate, location, management_profile, product_offering, strategic_signal, customer_profile, industry, technology, funding_detail (Enterprise), mna_and_investment (Enterprise)
Field to sort results by. Default: relevance
relevance, revenue_estimate, valuation_estimate, employee_range, total_funding, founded_year Sort direction. Default: desc
asc, desc Maximum companies to return. Default: 50, Max: 500
Number of results to skip for pagination. Default: 0
.png?fit=max&auto=format&n=tMpg-r-6yeOIk-hz&q=85&s=e0cafcb914826d8adc60e5092187e1ca)
.png?fit=max&auto=format&n=tMpg-r-6yeOIk-hz&q=85&s=f214ebe0a940d8aa0f19a709a6bfd7fa)