Skip to main content
POST
/
api
/
v1
/
instantClassification
Instant Classification
curl --request POST \
  --url https://api.example.com/api/v1/instantClassification \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "Text": "Software development and consulting services",
  "Website": "https://example.com"
}
'
{
  "RTICs": [],
  "SimilarCompanies": [],
  "RSICs": [],
  "RNAICs": [],
  "SICs": [],
  "TotalWordsProcessed": 123,
  "ProcessingTimeMs": 123,
  "Website": "<string>",
  "Description": "<string>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json

Request model for instant company classification.

Text
string | null

Company description text to classify

Maximum string length: 1000
Website
string | null

Company website URL

Maximum string length: 500

Response

Successful Response

Response model for instant company classification results.

RTICs
ClassificationResult ยท object[] | null

Real Time Industry Classification codes

SimilarCompanies
SimilarCompany ยท object[] | null

Companies with similar business activities

RSICs
RSIC ยท object[] | null

Recommended Standard Industrial Classification codes

RNAICs
RNAIC ยท object[] | null

Recommended North American Industry Classification codes

SICs
SIC ยท object[] | null

Standard Industrial Classification codes

TotalWordsProcessed
integer | null

Total number of words processed during classification

ProcessingTimeMs
integer | null

Processing time in milliseconds

Website
string | null

Company website if provided

Description
string | null

Company description text that was classified

Last modified on May 25, 2026