NEW AI Studio is now available Try it now
Photography & Design

Figma Community Scraper

Extract community files, plugin details, duplicate counts, and creator profiles from Figma Community hub. Powered by spider-browser .

Get Started Documentation
figma.com/community target
99.5% success rate
~4ms latency
Quick Start

Extract data in minutes

figma-community-scraper.ts
import { SpiderBrowser } from "spider-browser";

const spider = new SpiderBrowser({
  apiKey: process.env.SPIDER_API_KEY!,
  stealth: 2,
});

await spider.connect();
const page = spider.page!;
await page.goto("https://www.figma.com/community/search?resource_type=mixed&sort_by=popular&query=dashboard");
await page.content(10000);

const data = await page.evaluate(`(() => {
  const files = [];
  document.querySelectorAll("[data-testid='community-resource-card']").forEach(el => {
    const title = el.querySelector("[data-testid='resource-card-title']")?.textContent?.trim();
    const creator = el.querySelector("[data-testid='resource-card-creator']")?.textContent?.trim();
    const likes = el.querySelector("[data-testid='resource-card-likes']")?.textContent?.trim();
    const duplicates = el.querySelector("[data-testid='resource-card-duplicates']")?.textContent?.trim();
    if (title) files.push({ title, creator, likes, duplicates });
  });
  return JSON.stringify({ total: files.length, files: files.slice(0, 10) });
})()`);

console.log(JSON.parse(data));
await spider.close();
✓ ready to run | spider-browser | TypeScript
Fetch API

Structured data endpoint

Extract structured JSON from figma.com/community with a single POST request. AI-configured selectors, cached for fast repeat calls.

POST /fetch/figma.com/
File titleCreatorDuplicatesLikesDescriptionTags
curl
curl -X POST https://api.spider.cloud/fetch/figma.com/ \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"return_format": "json"}'
Python
import requests

resp = requests.post(
    "https://api.spider.cloud/fetch/figma.com/",
    headers={
        "Authorization": "Bearer YOUR_API_KEY",
        "Content-Type": "application/json",
    },
    json={"return_format": "json"},
)
print(resp.json())
Node.js
const resp = await fetch("https://api.spider.cloud/fetch/figma.com/", {
  method: "POST",
  headers: {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json",
  },
  body: JSON.stringify({ return_format: "json" }),
});
const data = await resp.json();
console.log(data);
Extraction

Data you can extract

File titleCreatorDuplicatesLikesDescriptionTagsThumbnailPublished date
Content

Asset metadata

Extract image metadata, tags, and license info from figma.com/community.

Rendering

Gallery handling

Handle masonry grids, lightboxes, and lazy-loaded image galleries.

Scale

Collection scraping

Process entire collections and portfolios with automatic pagination.

Related

More Photography & Design scrapers

Start scraping figma.com/community

Get your API key and start extracting data in minutes.