Check the Context.dev app in Make
The Make listing is the source of truth for the native modules currently available.
Before you start
- Create a Context.dev API key in the dashboard.
- Create a Make scenario with a trigger that supplies a company domain.
- Keep the API key in a Make connection or another secret field. Do not place it in scenario names, notes, logs, or output bundles.
Retrieve a company profile
Add HTTP > Make a request after your trigger and configure it as follows:
Use a raw JSON body and map the domain from your trigger:
type selects the lookup method. For a domain lookup, send by_domain and the domain field together.
Run the scenario once so Make learns the response fields. You can then map values such as brand.title, brand.domain, and entries from brand.logos into later modules.
Use another lookup method
Change the body according to the input you already have:- Work email
- Company name
- Transaction
Route expected data states
Add a router after the HTTP module:- Continue the enriched path when the request succeeds and the field you need is present.
- Continue a fallback path when an optional array, such as
brand.logos, is empty. - Send unresolved identities to review instead of silently overwriting a known CRM or transaction record.
Handle API failures
Attach an error-handler route to the HTTP module.
Do not retry every error indefinitely. Record the status, Context.dev error code, request ID, operation, and a redacted input so a failed scenario can be diagnosed safely. See Troubleshooting for the shared failure model.
Example scenario
Cost and scheduling
Make bills scenario operations separately from Context.dev API usage. Check the current Context.dev endpoint cost on the pricing page and your Make plan before enabling a high-volume schedule. Cache stable results in your own workflow only when the applicable data terms and freshness requirements allow it.Next steps
Brand lookup methods
Choose the right request body for domains, emails, names, tickers, URLs, or transactions.
Production checklist
Add timeouts, bounded retries, observability, and cache controls.
Make HTTP docs
Configure requests, response parsing, mapping, and error handlers in Make.
Zapier
Build equivalent workflows with the Context.dev Zapier app.