← Blog
·7 min read

Using banner.yt in No-Code Tools Like Make and Zapier

How to use the banner.yt API in no-code automation tools like Make (Integromat), Zapier, n8n, and Bubble without writing any code.

No-CodeMakeZapierAutomationAPI
Blog Post Example Banner

banner.yt in No-Code Tools

Since the banner.yt API is plain HTTP with no authentication, it works out of the box in any no-code or automation tool that can make HTTP requests.

Make (Integromat)

  1. Create a new Scenario
  2. Add an HTTP module, choose Make a Request
  3. Set URL to https://banner.yt/api/channel/UCX6OQ3DkcsbYNE6H8uQQuVA
  4. Set Method to GET
  5. In Response, set As to JSON
  6. Map the output fields (title, subscriberCount, bannerUrl) to the next step

Zapier

  1. Add a Webhooks action
  2. Choose GET or Custom Request
  3. Paste the banner.yt API URL
  4. Zapier will parse the JSON response and let you map fields

n8n

Use the HTTP Request node. No credentials needed, just paste the URL and run.

{
  "method": "GET",
  "url": "https://banner.yt/api/channel/UCX6OQ3DkcsbYNE6H8uQQuVA",
  "responseFormat": "json"
}

Bubble

In Bubble, go to Plugins, install the API Connector plugin, and add a new API. Set the base URL to https://banner.yt. Create a GET call to /api/channel/<channelId> with the channelId as a parameter. Bubble will auto-parse the JSON fields.

Notion and Airtable

Neither supports arbitrary HTTP calls natively, but you can use Make or Zapier to bridge them. For example: when a new row is added to Airtable with a YouTube channel ID, trigger a Make workflow that fetches the banner URL and writes it back to the Airtable row.

Use cases

  • Auto-populate a Notion database with YouTube channel banners and stats
  • When a new video is posted (via RSS), fetch the channel banner and post it to Slack
  • Build a Zapier workflow that emails a team with updated subscriber counts weekly
  • Sync channel art to a headless CMS when a campaign starts