close
Skip to main content
Connect Context.dev to Make with either the listed native app or Make’s HTTP module. Use the native app when it exposes the operation you need. Use HTTP when you want direct control over the current API request and response.

Check the Context.dev app in Make

The Make listing is the source of truth for the native modules currently available.

Before you start

  1. Create a Context.dev API key in the dashboard.
  2. Create a Make scenario with a trigger that supplies a company domain.
  3. 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:
Each request must contain the fields for one lookup type. See Retrieve brand data for the complete decision map.

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.
Use Make’s mapping controls rather than a fixed array position when the distinction between logo variants matters. The first returned asset is not a permanent promise that it will match every background or layout.

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

This pattern also works before Google Slides, email, database, and notification modules. Keep the Context.dev result as evidence for the next step; do not automatically turn descriptive text or images into approved marketing claims.

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.