> ## Documentation Index
> Fetch the complete documentation index at: https://docs.supadata.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Community Resources

> Explore tutorials, guides, and videos about using Supadata

export const OtherVideos = () => {
  const videos = [{
    embedId: "cMwb_PiFHb8",
    title: "Supadata Overview"
  }, {
    embedId: "f-4a-M99AnA",
    title: "Web Scraping with Supadata"
  }, {
    embedId: "nSv16Z7k4p4",
    title: "API Tutorial"
  }];
  return <div className="space-y-4">
      {videos.map((video, index) => <div key={index}>
          <iframe src={`https://www.youtube.com/embed/${video.embedId}`} title={video.title} allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen className="w-full aspect-video rounded-lg" />
        </div>)}
    </div>;
};

export const ZapierVideos = () => {
  const videos = [{
    embedId: "Gkd-GPXzTlM",
    title: "Zapier and Supadata Integration",
    startTime: 14
  }, {
    embedId: "ZOqDpzy6Prw",
    title: "Building Zaps with Supadata"
  }];
  return <div className="space-y-4">
      {videos.map((video, index) => <div key={index}>
          <iframe src={`https://www.youtube.com/embed/${video.embedId}${video.startTime ? `?start=${video.startTime}` : ""}`} title={video.title} allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen className="w-full aspect-video rounded-lg" />
        </div>)}
    </div>;
};

export const MakeVideos = () => {
  const videos = [{
    embedId: "ukxp-shgkkM",
    title: "Getting Started with Supadata and Make"
  }, {
    embedId: "0EAHfHqPQu0",
    title: "Advanced Make Integration"
  }, {
    embedId: "UPMlRzi4-x0",
    title: "Make Scenarios with Supadata"
  }];
  return <div className="space-y-4">
      {videos.map((video, index) => <div key={index}>
          <iframe src={`https://www.youtube.com/embed/${video.embedId}`} title={video.title} allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen className="w-full aspect-video rounded-lg" />
        </div>)}
    </div>;
};

export const N8nVideos = () => {
  const videos = [{
    embedId: "_BhS71m_niQ",
    title: "n8n Data Processing"
  }, {
    embedId: "nMRKKHw_9NA",
    title: "n8n Workflow Tutorial"
  }, {
    embedId: "szFHzs-zwyc",
    title: "Complex n8n Workflows"
  }, {
    embedId: "wxM7VcjaulE",
    title: "n8n Automation Examples"
  }, {
    embedId: "rDgloQZ7vMs",
    title: "n8n Workflow Examples"
  }, {
    embedId: "uj7KaFSh95Y",
    title: "n8n API Integration"
  }, {
    embedId: "3sPqsIWNuew",
    title: "Building n8n Workflows"
  }, {
    embedId: "cUxQjP6XMP0",
    title: "n8n Best Practices"
  }, {
    embedId: "pr6_oBBHVOE",
    title: "n8n and Supadata Deep Dive"
  }, {
    embedId: "JPP-uvAzQXY",
    title: "Supadata n8n Node Tutorial"
  }, {
    embedId: "Um6-sHCVzCs",
    title: "n8n Supadata Use Cases"
  }, {
    embedId: "azv5kvuqHnU",
    title: "Getting Started with Supadata and n8n"
  }, {
    embedId: "CqGuzvh8uis",
    title: "Advanced n8n Integration"
  }];
  return <div className="space-y-4">
      {videos.map((video, index) => <div key={index}>
          <iframe src={`https://www.youtube.com/embed/${video.embedId}${video.startTime ? `?start=${video.startTime}` : ""}`} title={video.title} allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen className="w-full aspect-video rounded-lg" />
        </div>)}
    </div>;
};

export const CodingVideos = () => {
  const videos = [{
    embedId: "-FRBotBLc1o",
    title: "Vibe Coding with Supadata"
  }, {
    embedId: "WsQ_W0VHW2I",
    title: "Vibe Coding Tutorial",
    startTime: 815
  }, {
    embedId: "QTJh7uueLAk",
    title: "Advanced Vibe Coding"
  }, {
    embedId: "QI4Xqm7jsy4",
    title: "Vibe Coding Examples"
  }];
  return <div className="space-y-4">
      {videos.map((video, index) => <div key={index}>
          <iframe src={`https://www.youtube.com/embed/${video.embedId}${video.startTime ? `?start=${video.startTime}` : ""}`} title={video.title} allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen className="w-full aspect-video rounded-lg" />
        </div>)}
    </div>;
};

## YouTube Videos

Browse our collection of community-created videos and tutorials organized by platform.

### Coding

<CodingVideos />

### n8n Integration

<N8nVideos />

### Make Integration

<MakeVideos />

### Zapier Integration

<ZapierVideos />

### Other Resources

<OtherVideos />
