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

Log in endpoint

Use the Entylink log-in endpoint to authenticate a user with email and password and retrieve the bearer token used by the dashboard and session-authenticated API flows.

When to use it

Practical implementation contexts

Authenticate internal dashboard users

Restore a session before calling protected account routes

Test API product flows end to end

Auth

Access model

Authentication

Public

Request
curl https://api.entylink.com/v1/auth/login \ -X POST \ -H "Content-Type: application/json" \ -d '{ "email": "dev@company.com", "password": "correct-horse-battery-staple" }'
Parameters
ParameterTypeDescription
emailstringThe account email
passwordstringThe account password
Response
Response exampleapplication/json
{
  "data": {
    "user": {
      "id": "usr_abc123",
      "email": "dev@company.com",
      "plan": "PROFESSIONAL",
      "monthlyQuota": 250000
    },
    "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.