VidContext + Make

Connect VidContext to Make (formerly Integromat) to build visual automation scenarios that analyze video content. Extract transcripts, detect brands, score ad effectiveness, and route results to any app in your stack — all without writing code.

How it works

  1. 1

    Add an HTTP module

    In your Make scenario, add the HTTP 'Make a request' module. Set the method to POST and the URL to https://api.vidcontext.com/v1/analyze.

  2. 2

    Set up authentication

    In the Headers section, add a custom header with the name X-API-Key and your VidContext API key as the value.

  3. 3

    Configure the request body

    Set body type to Multipart/form-data. Add a file field mapped to your video binary data, and an output_format field set to your chosen analysis mode.

  4. 4

    Parse and route the response

    VidContext returns structured JSON. Use Make's JSON parser or map fields directly to downstream modules — Google Sheets, Slack, email, CRM, or any connected app.

HTTP module configuration

Reference configuration for the Make HTTP module. Set your timeout to 300 seconds in advanced settings to handle longer videos.

{
  "url": "https://api.vidcontext.com/v1/analyze",
  "method": "POST",
  "headers": [
    { "name": "X-API-Key", "value": "vc_your_key_here" }
  ],
  "bodyType": "Multipart/form-data",
  "fields": [
    {
      "name": "file",
      "type": "file",
      "value": "{{previous_module.fileData}}"
    },
    {
      "name": "output_format",
      "type": "text",
      "value": "context"
    }
  ],
  "timeout": 300,
  "parseResponse": true
}

Scenario ideas

Google Drive to Airtable

Trigger when a new video lands in a Google Drive folder. Download it, send it to VidContext for analysis, then write the structured results — transcript, scenes, brands — into an Airtable base for your team to review.

Email attachment analysis

Watch an inbox for emails with video attachments. Download the attachment, analyze it with VidContext, and reply to the sender with a text summary of the video contents. Useful for teams that receive video briefs.

Social media competitor tracking

Monitor competitor social accounts for new video posts. Download each video, run it through VidContext in competitor mode, and push alerts to Slack when specific brands or messaging patterns are detected.

Client upload to report

Connect a Typeform or JotForm submission (with video upload) to VidContext. Analyze the uploaded video, format the results into a branded PDF or Google Doc, and email it to the client automatically.

What VidContext returns

Every response is structured JSON that Make can parse and route to any downstream module without custom code.

  • Metadata — duration, resolution, format
  • Transcript — timestamped speech with speaker context
  • Visual scenes — descriptions of what appears on screen with timestamps
  • On-screen text — titles, captions, URLs, overlays extracted
  • Brands detected — logos and product mentions identified
  • Audio analysis — music, sound effects, and ambient audio classified

Frequently asked questions

Which Make module do I use for VidContext?

Use the HTTP 'Make a request' module. Set the method to POST, paste the VidContext endpoint URL, add your API key as a custom header, and configure the body as multipart/form-data with your video file.

Can I use VidContext with Make's free plan?

Yes. The HTTP module is available on all Make plans including the free tier. You just need a VidContext API key, which you can get by signing up at vidcontext.com/app.

How long does a video analysis take?

A 3-minute video processes in about 50 seconds. Make's default HTTP timeout is 40 seconds, so you may need to increase it to 300 seconds in the module's advanced settings for longer videos.

What analysis modes are available?

VidContext supports 8 output modes: context (general), editor, analysis, ad, ecommerce, training, ugc, and competitor. Each returns specialized scoring and insights tailored to that domain.

Can I analyze videos from URLs instead of uploading files?

Yes. Pass a source field in the form data with a direct URL to the video file instead of uploading. VidContext downloads and processes it automatically.

Start building

Get your API key and add video analysis to Make in under 5 minutes. 20 free credits on signup.

Get API key