Entylink
← Back to docs
Auth
POST/v1/auth/signup

Sign up endpoint

Use the Entylink sign-up endpoint to create an account, set the initial free plan quota, and receive the session token used in authenticated product flows.

When to use it

Practical implementation contexts

Create a self-serve account before generating API keys

Onboard internal users into the Entylink dashboard

Automate sandbox or product signup flows in tests

Auth

Access model

Authentication

Public

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
Response exampleapplication/json
{
  "data": {
    "user": {
      "id": "usr_abc123",
      "email": "dev@company.com",
      "plan": "FREE",
      "monthlyQuota": 100
    },
    "token": "eyJhbGciOiJIUzI1NiIs..."
  }
}
Next step

Move from docs into a real registry workflow.

Entylink is built for teams embedding UK company data, verification, and monitoring into products rather than manually browsing the register.