Entylink
API reference

Reference the endpoints that power UK company lookup, search, and monitoring.

Search, company records, officers, PSCs, filings, webhooks, auth, quota behaviour, error handling, and account endpoints.

CompaniesSearchPSCsFilingsWebhooksGuidesAPI keys
Reference groups

Crawlable reference pages for routes and implementation guides

Interactive explorer

Browse the same endpoint catalog in a faster explorer view. Use the crawlable pages above for indexing and deep linking, and the explorer below for quick implementation checks.

POST/v1/auth/signup

Sign up

Create an Entylink account and return a session token for immediate dashboard and API access.

Open crawlable doc page →
Request
curl https://api.entylink.com/v1/auth/signup \ -X POST \ -H "Content-Type: application/json" \ -d '{ "email": "dev@company.com", "password": "correct-horse-battery-staple" }'
Parameters
ParameterTypeDescription
emailstringA valid email address for the account
passwordstringPassword between 8 and 200 characters
Response
200 OK · application/jsonJSON
{
  "data": {
    "user": {
      "id": "usr_abc123",
      "email": "dev@company.com",
      "plan": "FREE",
      "monthlyQuota": 100
    },
    "token": "eyJhbGciOiJIUzI1NiIs..."
  }
}