Skip to main content
X-API-Key
string
required
Your API key. Requires the tech module.

Request body

domain
string
required
Company website domain, e.g. empresa.cl or company.com.br. Works for any publicly accessible domain worldwide.

Response

domain
string
The queried domain (normalized to lowercase).
crm
string | null
Detected CRM platform. Examples: HubSpot, Salesforce, Pipedrive. null if none detected.
email_marketing
string | null
Detected email marketing platform. Examples: Mailchimp, Klaviyo, ActiveCampaign. null if none detected.
ecommerce
string | null
Detected ecommerce platform. Examples: Shopify, WooCommerce, VTEX, Nuvemshop. null if none detected.
payments
string | null
Detected payment processor. Examples: Stripe, MercadoPago, Transbank, Conekta. null if none detected.
analytics
string | null
Detected analytics platform. Examples: Google Analytics, Mixpanel, Amplitude. null if none detected.
live_chat
string | null
Detected live chat or customer support widget. Examples: Intercom, Zendesk Chat, Drift. null if none detected.
raw
array
Full list of all detected technologies across all categories, sorted alphabetically.
confidence
string
Detection quality indicator:
  • full — JavaScript rendered, highest accuracy
  • partial — HTML-only fallback (bot protection triggered)
  • cached — Result served from cache (7-day TTL)
curl -X POST https://api.enrichlatam.com/v1/tech \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"domain": "empresa.cl"}'
{
  "domain": "empresa.cl",
  "crm": "HubSpot",
  "email_marketing": "Mailchimp",
  "ecommerce": null,
  "payments": "MercadoPago",
  "analytics": "Google Analytics",
  "live_chat": "Intercom",
  "raw": ["Google Analytics", "HubSpot", "Intercom", "Mailchimp", "MercadoPago"],
  "confidence": "full"
}