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

# Integrations

> Wire Influship into Zapier, n8n, or Make. Enrich any workflow with creator data — no code required.

Influship is an **enrichment API**, not an event source. In a no-code platform, your scenario is started by something *you* already track — a new Instagram comment, a Slack message, a Google Sheet row, an inbound email — and Influship runs as a step inside that scenario to enrich, score, search, or look up.

That model decides which capabilities are exposed: **Actions** (do work, return data) and **Searches** (find a single record, used with Find-or-Create). There are no Triggers, because Influship doesn't emit events that fire on real-world time.

## Pick a platform

<CardGroup cols={3}>
  <Card title="Zapier" icon="bolt" href="/integrations/zapier">
    10 Actions + 3 Searches. API-key auth. In Private Beta — email us to be added.
  </Card>

  <Card title="n8n" icon="diagram-project" href="/integrations/n8n">
    Community node with 13 operations across 4 resources. Marked `usableAsTool`, so n8n AI Agents can call it.
  </Card>

  <Card title="Make" icon="puzzle-piece" href="/integrations/make">
    10 Actions, 3 Searches, plus a Universal API module. Mirrors the Zapier surface 1:1.
  </Card>
</CardGroup>

## What you can do across all three

| Capability                          | Endpoint                                          | Use it for                                                                            |
| ----------------------------------- | ------------------------------------------------- | ------------------------------------------------------------------------------------- |
| **Search Creators**                 | `POST /v1/search`                                 | Pull a ranked list of creators matching a natural-language brief.                     |
| **Find Creator**                    | `POST /v1/search` (top 1)                         | Find-or-Create entry — return the single best match for a brief.                      |
| **Get Creator**                     | `GET /v1/creators/:id`                            | Hydrate a stored creator ID with profiles + AI summary.                               |
| **Score Creator Match**             | `POST /v1/creators/match`                         | Score a creator against a campaign brief; returns `good`/`neutral`/`avoid` + reasons. |
| **Find Lookalikes**                 | `POST /v1/creators/lookalike`                     | Given a seed creator, return similar ones.                                            |
| **Get Profile**                     | `GET /v1/profiles/instagram/:username`            | Cached Instagram profile lookup by handle.                                            |
| **Lookup Profiles**                 | `POST /v1/profiles/lookup`                        | Batch profile enrichment, up to 50 handles per call.                                  |
| **Get Posts**                       | `GET /v1/posts`                                   | A creator's recent posts.                                                             |
| **Get Live Instagram Profile**      | `GET /v1/raw/instagram/profile/:username`         | Bypass cache; fresh-scrape a profile (≤90s).                                          |
| **Get Live YouTube Channel**        | `GET /v1/raw/youtube/channel/:handle`             | Live YouTube channel fetch.                                                           |
| **Get YouTube Video Transcript**    | `GET /v1/raw/youtube/transcript/:video_id`        | Pull a single video transcript.                                                       |
| **Get YouTube Channel Transcripts** | `GET /v1/raw/youtube/channel-transcripts/:handle` | Batch transcripts for a channel.                                                      |
| **Search YouTube**                  | `GET /v1/raw/youtube/search`                      | Free-text YouTube search.                                                             |

<Note>
  The YouTube channel actions accept a bare handle (`techreviews`), an `@handle` (`@techreviews`), or a full channel URL (`https://youtube.com/@techreviews`) — surrounding share tokens and trailing paths are ignored. A value that isn't a channel handle returns a `400` validation error.
</Note>

All three platforms expose the same surface. Pick the one your team already uses.

## How costs work

Every call is metered in credits. **1 credit = \$0.01**.

* Reads are cheap: profile or post lookups cost 0.05–0.1 credits.
* AI calls (search, match, lookalike) are pricier: 1.5–25+ credits depending on what they return.
* Live scrapes (the `/v1/raw/*` actions) are 0.5 credits regardless of platform.

Each per-platform page lists the cost for every capability so you can budget before you build.

## Three workflow patterns that fit Influship

<CardGroup cols={3}>
  <Card title="Bulk enrichment" icon="table">
    A new row appears in a sheet or CRM → look up the handle → write back metrics.
  </Card>

  <Card title="Inbound scoring" icon="filter">
    A creator pitches you in email or Slack → score them against your brief → route the good ones into your pipeline.
  </Card>

  <Card title="On-demand discovery" icon="magnifying-glass">
    A form submission or slash command → search for matching creators → drop results into Notion, Linear, or Slack.
  </Card>
</CardGroup>

Each per-platform page walks one of these end-to-end with a concrete recipe.
