Endpoints/Enrich
Enrich API
Get comprehensive company data from any domain--industry, employees, location, social profiles, and more.
Endpoint
POST
/api/enrichRequest Body
urlstringRequired
Company domain or URL (e.g., "stripe.com" or "https://stripe.com")
Example Request
cURL
curl -X POST https://api.vera.com/enrich \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "stripe.com"}'Example Response
JSON
200 OK
{
"status": "success",
"data": {
"domain": "stripe.com",
"name": "Stripe",
"description": "Financial infrastructure for the internet",
"logo": "https://stripe.com/img/v3/home/social.png",
"website": "https://stripe.com",
"industry": "Financial Technology",
"foundedYear": 2010,
"employeeCount": "5000-10000",
"location": "San Francisco, CA",
"socialProfiles": {
"linkedin": "https://linkedin.com/company/stripe",
"twitter": "https://twitter.com/stripe",
"github": "https://github.com/stripe"
},
"email": "support@stripe.com",
"phone": null,
"enrichedAt": "2026-01-15T12:00:00Z",
"confidence": 0.85,
"sources": ["website-scraper"]
},
"meta": {
"requestId": "req_xyz789",
"timestamp": "2026-01-15T12:00:00Z"
}
}Response Fields
data.domainstringNormalized company domain
data.namestringCompany name
data.descriptionstring | nullCompany description
data.logostring | nullCompany logo URL
data.industrystring | nullIndustry classification
data.foundedYearnumber | nullYear the company was founded
data.employeeCountstring | nullEmployee count range
data.locationstring | nullCompany headquarters location
data.socialProfilesobjectSocial media profile URLs
data.emailstring | nullContact email
data.phonestring | nullContact phone number
data.confidencenumberData confidence score (0-1)
Industry Classifications
Companies are automatically classified into one of the following industries:
Financial TechnologyArtificial IntelligenceE-commerceSoftwareTechnologyHealthcareEducationMarketing
Error Codes
400
VALIDATION_ERRORInvalid request parameters
401
AUTHENTICATION_FAILEDInvalid or missing API key
429
RATE_LIMIT_EXCEEDEDToo many requests, please slow down
500
ENRICHMENT_FAILEDFailed to enrich the company data