Industry Search
curl --request GET \
--url https://api.akta.pro/api/v1/industry/search \
--header 'x-api-key: <api-key>'import requests
url = "https://api.akta.pro/api/v1/industry/search"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.akta.pro/api/v1/industry/search', 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/industry/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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"
"net/http"
"io"
)
func main() {
url := "https://api.akta.pro/api/v1/industry/search"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.akta.pro/api/v1/industry/search")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.akta.pro/api/v1/industry/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"code": "IMAHAHAN",
"industry_name": "Warehouse & Intralogistics Automation Systems (AS/RS, Sortation, Conveyance Controls)",
"similarity": 0.7098
},
{
"code": "IMAHABAK",
"industry_name": "Warehouse Automation Systems (AS/RS, Shuttle Systems, Vertical Lift Modules)",
"similarity": 0.7026
},
{
"code": "HDAAAIAA",
"industry_name": "Industrial & Warehouse Robotics",
"similarity": 0.7004
},
{
"code": "HSAKAKAJ",
"industry_name": "Warehouse & Inventory Relocation (Racking, Pallets, Stock)",
"similarity": 0.6387
},
{
"code": "TLALADAL",
"industry_name": "Automated / Robotics-Enabled Fulfillment Centers (AS/RS, AMRs, Goods-to-Person)",
"similarity": 0.6347
},
{
"code": "IMAIAMAJ",
"industry_name": "Supply Chain & Warehouse Automation (Smart Logistics)",
"similarity": 0.6331
},
{
"code": "HDAEABAK",
"industry_name": "Data Observability & Warehouse Monitoring",
"similarity": 0.6273
},
{
"code": "TLAEABAI",
"industry_name": "WMS for Automation & Robotics Orchestration (WES/WCS Integration)",
"similarity": 0.6225
},
{
"code": "EDAOANAI",
"industry_name": "Warehousing, Inventory & Materials Handling",
"similarity": 0.6157
},
{
"code": "CRAFAMAD",
"industry_name": "Pick/Pack & Value-Added Warehouse Services (Kitting, Returns Prep)",
"similarity": 0.6155
},
{
"code": "IMAHAHAJ",
"industry_name": "Industrial Automation Software (SCADA, HMI, MES, Historian)",
"similarity": 0.6088
},
{
"code": "TLALAAAM",
"industry_name": "Returns & Reverse Logistics Processing Centers (Non-Temp Controlled)",
"similarity": 0.6056
},
{
"code": "BPABABAG",
"industry_name": "Industrial & Warehouse Cleaning (Degreasing, Machine/Plant Cleaning)",
"similarity": 0.5983
},
{
"code": "IMAHABAC",
"industry_name": "Conveyors & Sortation Systems (Warehouse & Parcel)",
"similarity": 0.5909
},
{
"code": "HDAEABAL",
"industry_name": "Data Warehouse/Lakehouse Performance Optimization & Cost Management",
"similarity": 0.5813
},
{
"code": "IMAHAHAL",
"industry_name": "Factory Automation Cells & Integrated Systems (Assembly, Welding, Painting Lines)",
"similarity": 0.5808
},
{
"code": "TLAEABAD",
"industry_name": "WMS for Manufacturing & Production Warehousing",
"similarity": 0.5734
},
{
"code": "TLAEACAI",
"industry_name": "Slotting, Wave/Batch Planning & Release-to-Warehouse",
"similarity": 0.571
},
{
"code": "HSAKAIAD",
"industry_name": "Warehouse-Hosted Portable Storage (Off-Site Storage + Redelivery)",
"similarity": 0.5702
},
{
"code": "HDAEABAA",
"industry_name": "Cloud Data Warehouses",
"similarity": 0.5657
},
{
"code": "TLAEABAH",
"industry_name": "WMS for Micro-Fulfillment, Dark Stores & Urban Warehousing",
"similarity": 0.565
},
{
"code": "TLAEABAJ",
"industry_name": "WMS for Yard/Trailer/Container Inventory within Facilities",
"similarity": 0.5649
},
{
"code": "IMAKANAK",
"industry_name": "Mining Automation, Telematics & Fleet Management Systems",
"similarity": 0.5632
},
{
"code": "AFAAAGAJ",
"industry_name": "Agricultural Robotics Integration, Retrofit & Automation Services (Kit installs, integration, maintenance)",
"similarity": 0.5628
},
{
"code": "IMAHAOAK",
"industry_name": "Conveying, Feeding & Accumulation Systems (Packaging Lines)",
"similarity": 0.561
},
{
"code": "AFAOACAB",
"industry_name": "Private Commercial Grain Warehouses (Merchant-Owned)",
"similarity": 0.5609
},
{
"code": "IMAHABAF",
"industry_name": "Dock Equipment & Yard Logistics Systems (Dock Levelers, Restraints, Yard Trucks)",
"similarity": 0.559
},
{
"code": "EDAOAHAD",
"industry_name": "PLC, HMI & SCADA Automation",
"similarity": 0.5588
},
{
"code": "TLALAAAC",
"industry_name": "E-commerce & Omnichannel Fulfillment Centers (Non-Temp Controlled)",
"similarity": 0.5561
},
{
"code": "CRAFAMAF",
"industry_name": "Parcel Shipping, Labeling & Rate Shopping Platforms",
"similarity": 0.5549
}
],
"count": 30,
"credits_consumed": 0
}
Supporting APIs
Industry Search API
Resolves an industry from a free-text query and returns matching industry codes ranked by similarity.
GET
/
v1
/
industry
/
search
Industry Search
curl --request GET \
--url https://api.akta.pro/api/v1/industry/search \
--header 'x-api-key: <api-key>'import requests
url = "https://api.akta.pro/api/v1/industry/search"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.akta.pro/api/v1/industry/search', 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/industry/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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"
"net/http"
"io"
)
func main() {
url := "https://api.akta.pro/api/v1/industry/search"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.akta.pro/api/v1/industry/search")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.akta.pro/api/v1/industry/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"code": "IMAHAHAN",
"industry_name": "Warehouse & Intralogistics Automation Systems (AS/RS, Sortation, Conveyance Controls)",
"similarity": 0.7098
},
{
"code": "IMAHABAK",
"industry_name": "Warehouse Automation Systems (AS/RS, Shuttle Systems, Vertical Lift Modules)",
"similarity": 0.7026
},
{
"code": "HDAAAIAA",
"industry_name": "Industrial & Warehouse Robotics",
"similarity": 0.7004
},
{
"code": "HSAKAKAJ",
"industry_name": "Warehouse & Inventory Relocation (Racking, Pallets, Stock)",
"similarity": 0.6387
},
{
"code": "TLALADAL",
"industry_name": "Automated / Robotics-Enabled Fulfillment Centers (AS/RS, AMRs, Goods-to-Person)",
"similarity": 0.6347
},
{
"code": "IMAIAMAJ",
"industry_name": "Supply Chain & Warehouse Automation (Smart Logistics)",
"similarity": 0.6331
},
{
"code": "HDAEABAK",
"industry_name": "Data Observability & Warehouse Monitoring",
"similarity": 0.6273
},
{
"code": "TLAEABAI",
"industry_name": "WMS for Automation & Robotics Orchestration (WES/WCS Integration)",
"similarity": 0.6225
},
{
"code": "EDAOANAI",
"industry_name": "Warehousing, Inventory & Materials Handling",
"similarity": 0.6157
},
{
"code": "CRAFAMAD",
"industry_name": "Pick/Pack & Value-Added Warehouse Services (Kitting, Returns Prep)",
"similarity": 0.6155
},
{
"code": "IMAHAHAJ",
"industry_name": "Industrial Automation Software (SCADA, HMI, MES, Historian)",
"similarity": 0.6088
},
{
"code": "TLALAAAM",
"industry_name": "Returns & Reverse Logistics Processing Centers (Non-Temp Controlled)",
"similarity": 0.6056
},
{
"code": "BPABABAG",
"industry_name": "Industrial & Warehouse Cleaning (Degreasing, Machine/Plant Cleaning)",
"similarity": 0.5983
},
{
"code": "IMAHABAC",
"industry_name": "Conveyors & Sortation Systems (Warehouse & Parcel)",
"similarity": 0.5909
},
{
"code": "HDAEABAL",
"industry_name": "Data Warehouse/Lakehouse Performance Optimization & Cost Management",
"similarity": 0.5813
},
{
"code": "IMAHAHAL",
"industry_name": "Factory Automation Cells & Integrated Systems (Assembly, Welding, Painting Lines)",
"similarity": 0.5808
},
{
"code": "TLAEABAD",
"industry_name": "WMS for Manufacturing & Production Warehousing",
"similarity": 0.5734
},
{
"code": "TLAEACAI",
"industry_name": "Slotting, Wave/Batch Planning & Release-to-Warehouse",
"similarity": 0.571
},
{
"code": "HSAKAIAD",
"industry_name": "Warehouse-Hosted Portable Storage (Off-Site Storage + Redelivery)",
"similarity": 0.5702
},
{
"code": "HDAEABAA",
"industry_name": "Cloud Data Warehouses",
"similarity": 0.5657
},
{
"code": "TLAEABAH",
"industry_name": "WMS for Micro-Fulfillment, Dark Stores & Urban Warehousing",
"similarity": 0.565
},
{
"code": "TLAEABAJ",
"industry_name": "WMS for Yard/Trailer/Container Inventory within Facilities",
"similarity": 0.5649
},
{
"code": "IMAKANAK",
"industry_name": "Mining Automation, Telematics & Fleet Management Systems",
"similarity": 0.5632
},
{
"code": "AFAAAGAJ",
"industry_name": "Agricultural Robotics Integration, Retrofit & Automation Services (Kit installs, integration, maintenance)",
"similarity": 0.5628
},
{
"code": "IMAHAOAK",
"industry_name": "Conveying, Feeding & Accumulation Systems (Packaging Lines)",
"similarity": 0.561
},
{
"code": "AFAOACAB",
"industry_name": "Private Commercial Grain Warehouses (Merchant-Owned)",
"similarity": 0.5609
},
{
"code": "IMAHABAF",
"industry_name": "Dock Equipment & Yard Logistics Systems (Dock Levelers, Restraints, Yard Trucks)",
"similarity": 0.559
},
{
"code": "EDAOAHAD",
"industry_name": "PLC, HMI & SCADA Automation",
"similarity": 0.5588
},
{
"code": "TLALAAAC",
"industry_name": "E-commerce & Omnichannel Fulfillment Centers (Non-Temp Controlled)",
"similarity": 0.5561
},
{
"code": "CRAFAMAF",
"industry_name": "Parcel Shipping, Labeling & Rate Shopping Platforms",
"similarity": 0.5549
}
],
"count": 30,
"credits_consumed": 0
}
Overview
The Industry Search API resolves an industry from a free-text query such as saywarehouse automationand returns a ranked list of matching industry codes and names. Results are ordered by similarity score, so callers can pick the best match or present several candidates to a user. This is a free endpoint and does not consume credits. Results are returned in the API response.
Endpoint Details
- Method: GET
- Endpoint:
/api/v1/industry/search
Authentication requirements
- Include a valid API key in the
x-api-keyrequest header.
Request
Request Parameters
Header Parameters
string
required
Your API key.
URL Parameters
string
required
Free-text industry name or topic to search for. Example:
warehouse automationstring
Restrict results to one or more levels of the industry taxonomy hierarchy. Accepts a single level or a comma-separated list of multiple levels.Available values:
l1, l2, l3, l4 , allPassing multiple levels (e.g. l4,l1) returns matches from any of the specified levels, ranked together by similarity score. Default level is l4.Request Example
curl -G "https://api.akta.pro/api/v1/industry/search/?query=warehouse+automation&level=l4%2Cl1" \
-H "x-api-key: YOUR_API_KEY"
Response
Successful Response Fields
Returns a JSON object with the following structure:array
List of matching industry objects, ranked by similarity score. Returns an empty array when no matches are found. See Industry Object Fields below.
integer
Number of industry objects returned in the
data array.float
Credits consumed by the request. This endpoint is free and always returns
0.Industry Object Fields
string
Unique industry code.
string
Full name of the industry.
float
Similarity score between the query and the matched industry, ranging from
0 to 1. Higher values indicate a closer match. Results are returned in descending order of relevance, though scores are not guaranteed to be strictly sorted for ties.{
"data": [
{
"code": "IMAHAHAN",
"industry_name": "Warehouse & Intralogistics Automation Systems (AS/RS, Sortation, Conveyance Controls)",
"similarity": 0.7098
},
{
"code": "IMAHABAK",
"industry_name": "Warehouse Automation Systems (AS/RS, Shuttle Systems, Vertical Lift Modules)",
"similarity": 0.7026
},
{
"code": "HDAAAIAA",
"industry_name": "Industrial & Warehouse Robotics",
"similarity": 0.7004
},
{
"code": "HSAKAKAJ",
"industry_name": "Warehouse & Inventory Relocation (Racking, Pallets, Stock)",
"similarity": 0.6387
},
{
"code": "TLALADAL",
"industry_name": "Automated / Robotics-Enabled Fulfillment Centers (AS/RS, AMRs, Goods-to-Person)",
"similarity": 0.6347
},
{
"code": "IMAIAMAJ",
"industry_name": "Supply Chain & Warehouse Automation (Smart Logistics)",
"similarity": 0.6331
},
{
"code": "HDAEABAK",
"industry_name": "Data Observability & Warehouse Monitoring",
"similarity": 0.6273
},
{
"code": "TLAEABAI",
"industry_name": "WMS for Automation & Robotics Orchestration (WES/WCS Integration)",
"similarity": 0.6225
},
{
"code": "EDAOANAI",
"industry_name": "Warehousing, Inventory & Materials Handling",
"similarity": 0.6157
},
{
"code": "CRAFAMAD",
"industry_name": "Pick/Pack & Value-Added Warehouse Services (Kitting, Returns Prep)",
"similarity": 0.6155
},
{
"code": "IMAHAHAJ",
"industry_name": "Industrial Automation Software (SCADA, HMI, MES, Historian)",
"similarity": 0.6088
},
{
"code": "TLALAAAM",
"industry_name": "Returns & Reverse Logistics Processing Centers (Non-Temp Controlled)",
"similarity": 0.6056
},
{
"code": "BPABABAG",
"industry_name": "Industrial & Warehouse Cleaning (Degreasing, Machine/Plant Cleaning)",
"similarity": 0.5983
},
{
"code": "IMAHABAC",
"industry_name": "Conveyors & Sortation Systems (Warehouse & Parcel)",
"similarity": 0.5909
},
{
"code": "HDAEABAL",
"industry_name": "Data Warehouse/Lakehouse Performance Optimization & Cost Management",
"similarity": 0.5813
},
{
"code": "IMAHAHAL",
"industry_name": "Factory Automation Cells & Integrated Systems (Assembly, Welding, Painting Lines)",
"similarity": 0.5808
},
{
"code": "TLAEABAD",
"industry_name": "WMS for Manufacturing & Production Warehousing",
"similarity": 0.5734
},
{
"code": "TLAEACAI",
"industry_name": "Slotting, Wave/Batch Planning & Release-to-Warehouse",
"similarity": 0.571
},
{
"code": "HSAKAIAD",
"industry_name": "Warehouse-Hosted Portable Storage (Off-Site Storage + Redelivery)",
"similarity": 0.5702
},
{
"code": "HDAEABAA",
"industry_name": "Cloud Data Warehouses",
"similarity": 0.5657
},
{
"code": "TLAEABAH",
"industry_name": "WMS for Micro-Fulfillment, Dark Stores & Urban Warehousing",
"similarity": 0.565
},
{
"code": "TLAEABAJ",
"industry_name": "WMS for Yard/Trailer/Container Inventory within Facilities",
"similarity": 0.5649
},
{
"code": "IMAKANAK",
"industry_name": "Mining Automation, Telematics & Fleet Management Systems",
"similarity": 0.5632
},
{
"code": "AFAAAGAJ",
"industry_name": "Agricultural Robotics Integration, Retrofit & Automation Services (Kit installs, integration, maintenance)",
"similarity": 0.5628
},
{
"code": "IMAHAOAK",
"industry_name": "Conveying, Feeding & Accumulation Systems (Packaging Lines)",
"similarity": 0.561
},
{
"code": "AFAOACAB",
"industry_name": "Private Commercial Grain Warehouses (Merchant-Owned)",
"similarity": 0.5609
},
{
"code": "IMAHABAF",
"industry_name": "Dock Equipment & Yard Logistics Systems (Dock Levelers, Restraints, Yard Trucks)",
"similarity": 0.559
},
{
"code": "EDAOAHAD",
"industry_name": "PLC, HMI & SCADA Automation",
"similarity": 0.5588
},
{
"code": "TLALAAAC",
"industry_name": "E-commerce & Omnichannel Fulfillment Centers (Non-Temp Controlled)",
"similarity": 0.5561
},
{
"code": "CRAFAMAF",
"industry_name": "Parcel Shipping, Labeling & Rate Shopping Platforms",
"similarity": 0.5549
}
],
"count": 30,
"credits_consumed": 0
}
Authorizations
API key obtained from your Akta account.
Query Parameters
Free-text industry name or topic to search for. Example: 'warehouse automation'
Restrict results to one or more levels of the industry taxonomy hierarchy. Accepts a single level or a comma-separated list of multiple levels. Available values: l1, l2, l3, l4, all. Default is l4.
.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)