Skip to main content
GET
/
v1
/
company
/
search
Company Search
curl --request GET \
  --url https://api.akta.pro/api/v1/company/search \
  --header 'x-api-key: <api-key>'
{
    "data": [
        {
            "uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
            "name": "Acme Corporation",
            "website": "https://acme.com",
            "product_category": "SaaS",
            "company_status": "public"
        }
    ],
    "credits_consumed": 0.00
}

Overview

The Company Search API resolves a company from a single input — a name, website or UUID — and returns core identity and classification fields. The backend automatically detects the input type, so callers don’t need to specify whether they’re passing a name, domain or identifier. This is a free endpoint and does not consume credits. Results are returned in the API response.

Endpoint Details

  • Method: GET
  • Endpoint: /v1/company/search

Authentication requirements

  • Include a valid API key in the x-api-key request header.

Request

Request Parameters

Header Parameters

x-api-key
string
required
Your API key.

URL Parameters

query
string
required
A company name, website. The backend automatically resolves the input type. Examples: https://canva.com, canva

Response

Successful Response Fields

Returns a JSON object with the following structure:
data
array
List of matching company objects. Returns an empty array when no matches are found. See Company Object Fields below.
credits_consumed
float
Credits consumed by the request. This endpoint is free and always returns 0.00.

Company Object Fields

uuid
string
Unique identifier for the company in UUID format.
name
string
Legal or registered name of the company.
website
string
Primary website URL. Normalized with no trailing slash.
product_category
string
Primary product or service category. Example: SaaS, FinTech, Healthcare.
company_status
string
Public market status. Allowed values: public, private, acquired, delisted, unknown.
{
    "data": [
        {
            "uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
            "name": "Acme Corporation",
            "website": "https://acme.com",
            "product_category": "SaaS",
            "company_status": "public"
        }
    ],
    "credits_consumed": 0.00
}

Authorizations

x-api-key
string
header
required

API key obtained from your Akta account.

Query Parameters

name
string
required

A company name, website. The backend automatically resolves the input type. Examples: https://canva.com, canva

Response

Search results returned

data
object[]
credits_consumed
number<float>
Example:

0