1. Create an account
Sign up at instant-classification-api.thedatacity.com/signup. You need:- A work email address. Consumer providers (Gmail, Outlook, Hotmail, Yahoo, iCloud, Proton) and known disposable-email domains are rejected.
- A password of 8–128 characters.
- To accept the Terms & Conditions. Signing up without this returns
422.
2. Get an access token
Exchange your email and password for a JWT using the token endpoint. The token is valid for 8 days. Cache it rather than requesting one per call, because this endpoint is rate limited to 5 requests per minute.Treat your access token like a password. Don’t check it into source control or include it in frontend bundles.
3. Classify a company
Send aPOST to /api/v1/instantClassification with either Text (a company description) or Website (a URL) — not both. Include your token in the Authorization header.
Set your client timeout to at least 120 seconds on this endpoint. Classification can take over a minute when the engine is slow, because the API retries upstream before giving up. Most “API errors” reported to support turn out to be short client timeouts.
What’s next
Authentication
Token lifetime and password recovery.
Errors
What each error code means and how to handle it.
Rate limits & quotas
Free-tier quota and paid rate limits.
Endpoint reference
Full request/response schema with the interactive playground.