Skip to main content
POST
/
v1
/
auth
/
signup
curl -X POST https://api.dotlookup.dev/v1/auth/signup \
  -H "Content-Type: application/json" \
  -d '{"email": "you@example.com", "name": "Jane Doe", "company": "Acme Logistics"}'
{
  "id": 1,
  "email": "you@example.com",
  "name": "Jane Doe",
  "company": "Acme Logistics",
  "api_key": "dl_a1b2c3d4e5f6...",
  "tier": "default",
  "rate_limit": 100,
  "is_active": true,
  "created_at": "2025-03-20T14:30:00Z"
}
Create a new account and receive an API key. Only an email address is required.
email
string
required
Your email address
name
string
Your name
company
string
Your company name
curl -X POST https://api.dotlookup.dev/v1/auth/signup \
  -H "Content-Type: application/json" \
  -d '{"email": "you@example.com", "name": "Jane Doe", "company": "Acme Logistics"}'
{
  "id": 1,
  "email": "you@example.com",
  "name": "Jane Doe",
  "company": "Acme Logistics",
  "api_key": "dl_a1b2c3d4e5f6...",
  "tier": "default",
  "rate_limit": 100,
  "is_active": true,
  "created_at": "2025-03-20T14:30:00Z"
}