Semantil API
Search and enrich company domains, inspect the available field catalog, and check account credit usage from the same engine used by the catalog.
Public API docs
The examples below show the stable developer surface. Create a free account to generate a key and start testing requests.
Catalog search
Search live domains with text and facet filters.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://semantil.com/api/search?query=payments&limit=20&include=domain,country,company_name"
Domain lookup
Turn one domain into a lightweight company profile.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://semantil.com/api/domains/iherb.com?include=domain,country,primary_platform,platforms,company_name"
Lookalikes
Find similar companies and project profile fields on each candidate.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://semantil.com/api/lookalike/stripe.com?k=20&include=domain,country,primary_platform,company_name"
Fields catalog
Inspect fields and package availability before choosing an include list.
curl -H "x-api-key: YOUR_API_KEY" \
"https://semantil.com/api/fields"
Account credits
Check authentication, package, credits, and workspace identity.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://semantil.com/api/me"
Lightweight company profile
Semantil returns a flat company profile optimized for Clay and other enrichment tools. Request metadata stays in headers by default and is available in _meta only when include_meta=true.
{
"object": "domain",
"found": true,
"domain": "example.com",
"company_name": "Example",
"country": "US",
"primary_platform": "Shopify",
"platforms": ["Shopify", "Klaviyo"],
"categories": ["B2B software"]
}