Set up the welcome page for your API to help users make their first call.
Log in to see your API keys
| API Key | Label | Last Used | |
|---|---|---|---|
Every request requires your API key. You can pass it two ways, pick whichever fits your stack.
Query parameter (simplest, works anywhere):
GET https://api.companyenrich.com/v1/companies/enrich?domain=stripe.com&api_key=YOUR_API_KEYBearer token (recommended for production, keeps the key out of URLs and server logs):
GET https://api.companyenrich.com/v1/companies/enrich?domain=stripe.com
Authorization: Bearer YOUR_API_KEYGenerate, rotate, or revoke keys anytime from the dashboard at app.companyenrich.com.
Keep your key server-side. Don't expose it in client-side code, mobile apps, or public repos. If a key leaks, rotate it from the dashboard and the old one is dead instantly.