> **For coding agents and LLMs:** This is one page from the Social Fetch docs (markdown export). For curated orientation and workflow guidance, start with [`/llms.txt`](https://www.socialfetch.dev/llms.txt); for agent onboarding and crawl rules, use [`/agents.txt`](https://www.socialfetch.dev/agents.txt); for the full endpoint list with links to pages like this one, use [`/llms-endpoints.txt`](https://www.socialfetch.dev/llms-endpoints.txt); for one platform's parameters and curls, use [`/llms-{platform}.txt`](https://www.socialfetch.dev/llms-tiktok.txt); use [`/llms.json`](https://www.socialfetch.dev/llms.json) when you need structured JSON for tool registration.

## This page

- **On-site (HTML):** [https://www.socialfetch.dev/docs/integrations/make](https://www.socialfetch.dev/docs/integrations/make)
- **Markdown (.mdx) URL:** [https://www.socialfetch.dev/docs/integrations/make.mdx](https://www.socialfetch.dev/docs/integrations/make.mdx)

## API base URL and authentication

- **API origin (from OpenAPI `servers`):** `https://api.socialfetch.dev`
- **Authentication:** send `x-api-key: sfk_...` on `/v1/**` routes unless the operation is explicitly anonymous (check OpenAPI `security`, the [API reference hub](https://www.socialfetch.dev/docs/api.mdx), [`/llms.txt`](https://www.socialfetch.dev/llms.txt), or [`/llms.json`](https://www.socialfetch.dev/llms.json) for each route).
- **OpenAPI JSON:** [https://www.socialfetch.dev/openapi.json](https://www.socialfetch.dev/openapi.json)

## Recommended docs entrypoints (this site)

- [Documentation overview](https://www.socialfetch.dev/docs.mdx) — top-level orientation (markdown).
- [Quickstart](https://www.socialfetch.dev/docs/quickstart.mdx) — authenticate with `x-api-key`, validate auth with `whoami`, and understand the JSON envelope.
- [SDK](https://www.socialfetch.dev/docs/sdk.mdx) — official TypeScript SDK guide, including `SocialFetchClient`, `Result`, and `unwrap()`.
- [SDK reference](https://www.socialfetch.dev/docs/sdk-reference.mdx) — exhaustive SDK method inventory and route mapping for agents, tooling, and power users.
- [Choose the right endpoint](https://www.socialfetch.dev/docs/choose-endpoint.mdx) — task-oriented route selection for smoke tests, profiles, list endpoints, and single-item lookups.
- [Capability matrix](https://www.socialfetch.dev/docs/capability-matrix.mdx) — fast comparison of identifiers, pagination, outcomes, media download, and SDK coverage.
- [Recipes](https://www.socialfetch.dev/docs/recipes.mdx) — copyable workflows (brand monitoring, transcripts, Ad Library, creator scoring, Reddit research) with credit callouts and SDK examples.
- [Integrations](https://www.socialfetch.dev/docs/integrations.mdx) — MCP for AI clients, n8n verified node, Apify Store Actors, Make custom app, SDK, and REST API connection paths.
- [MCP product page](https://www.socialfetch.dev/mcp) — hosted MCP overview, OAuth, Skills install.
- [MCP integration](https://www.socialfetch.dev/docs/integrations/mcp.mdx) — hosted `/mcp` server, OAuth, Cursor/VS Code/Claude install snippets, 165 endpoint tools, plus docs_search/docs_read for implementation help.
- [n8n integration](https://www.socialfetch.dev/docs/integrations/n8n.mdx) — install `n8n-nodes-socialfetch`, credentials, and workflow examples.
- [Apify integration](https://www.socialfetch.dev/docs/integrations/apify.mdx) — Store Actors under @social-fetch, PPE billing, dataset export, and quick start.
- [Make integration](https://www.socialfetch.dev/docs/integrations/make.mdx) — custom app modules for Make scenarios, API key credentials, and module catalog.
- [`/llms-endpoints.txt`](https://www.socialfetch.dev/llms-endpoints.txt) — every documented operation with a direct link to that route's agent-readable markdown page (prefer this over parsing OpenAPI).
- [`/llms-{platform}.txt`](https://www.socialfetch.dev/llms-tiktok.txt) — per-platform endpoint files generated from OpenAPI (parameters, credits, curls).
- [`/agents.txt`](https://www.socialfetch.dev/agents.txt) — agent crawl/onboarding file with capabilities, auth rules, and allowlist.
- [`/llms.json`](https://www.socialfetch.dev/llms.json) — structured machine-readable operation inventory with parameter names, pagination, outcomes, credits, and SDK mapping.
- [API reference hub](https://www.socialfetch.dev/docs/api.mdx) — human-friendly index of operations with links into generated pages.
- [Errors](https://www.socialfetch.dev/docs/errors.mdx) — shared error envelope and HTTP status guidance.
- [Credits](https://www.socialfetch.dev/docs/credits.mdx) — metering, `402`, and planning batch jobs.
- Outcome semantics such as `found`, `not_found`, and `private` are documented in [Errors](https://www.socialfetch.dev/docs/errors.mdx) and on operation pages when present in the OpenAPI contract.

## Markdown docs convention

- Every docs page has a markdown twin: append **`.mdx`** to the docs pathname (for example `/docs/quickstart` → `/docs/quickstart.mdx`).
- Agents that send `Accept: text/markdown` on `/docs/**` HTML URLs may receive markdown directly (same URL, `Vary: Accept`).

---
# Make (https://www.socialfetch.dev/docs/integrations/make)

Add **Social Fetch** to [Make](https://www.make.com) scenarios with your `sfk_…` API key. Each module returns the same `{ data, meta }` envelope as the [REST API](/docs/api). Invite-based custom app until directory listing.

<div className="not-prose mt-5 flex flex-wrap gap-2.5">
  <a className="inline-flex items-center gap-2 rounded-lg border border-border/60 bg-muted/20 px-3.5 py-2 text-sm font-medium text-foreground no-underline transition-colors hover:border-border hover:bg-muted/40" href="https://www.make.com/en/hq/app-invitation/8c40ad4f79f90a2d1857a51228a014e3" rel="noreferrer" target="_blank">

    Install Social Fetch on Make
  </a>
</div>

## What you'll need

* A **Make** account.
* A **Social Fetch API key** (starts with `sfk_`) — create one in your [API Keys](https://app.socialfetch.dev/api-keys) dashboard.
* **Credits** for metered routes — see [Credits & billing](/docs/credits).

## Install

1. Open the [invite link](https://www.make.com/en/hq/app-invitation/8c40ad4f79f90a2d1857a51228a014e3) and accept **Social Fetch** into your organization.
2. In a scenario, search for **Social Fetch** and pick a module (for example **Get a profile**).

## Credentials

1. Open a Social Fetch module and create a connection.
2. Paste your full `sfk_…` key from [API Keys](https://app.socialfetch.dev/api-keys) and save.
3. Make validates the key with `GET /v1/whoami` before saving.

The same connection is reused across every Social Fetch module in your organization.

## Modules

Capability modules over the public API — profiles, posts, transcripts, search, web, ads, and a **Watch new items** trigger. Full generated catalog:

* [Module catalog](/docs/integrations/make-modules)

Search modules paginate with a `limit` (default 10). Raising it may fetch more pages and spend more credits. Every module maps to routes in the [API reference](/docs/api).

### Credits

Each run consumes credits. `meta.creditsCharged` is on every response. See [Credits & billing](/docs/credits) for metered routes and 402 handling.

## Next steps

- [Module catalog](/docs/integrations/make-modules) — Generated table of Make actions and searches.

- [API reference](/docs/api) — Every endpoint behind the Make modules.

- [n8n](/docs/integrations/n8n) — Full platform coverage in no-code workflows with the same API key.

- [MCP](/docs/integrations/mcp) — OAuth-connected tools for Cursor, VS Code, and Claude.

- [Credits & billing](/docs/credits) — Metered routes, 402 handling, creditsCharged.