Skip to main content
POST
/
api
/
spark
/
companies
/
similar
/spark/companies/similar
curl --request POST \
  --url https://api.anysite.io/api/spark/companies/similar \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@spark_similar_company",
    "name": "<string>",
    "inn": "<string>",
    "ogrn": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Company INN (10/12 digits) or OGRN (13/15 digits), or a full company URL

Minimum string length: 1
Examples:

"7736050003"

"1027700070518"

count
integer
required

Max number of results to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
url
string
required
@type
string
default:@spark_similar_company
name
string | null
inn
string | null
ogrn
string | null