View as Markdown
Speak AI icon

Speak AI ACTION

Find Media

Look up a single Speak AI media file by its ID and return everything stored against it: transcript, sentiment, keywords, topics and metadata. Use Get Transcription instead when only the transcript is needed. See the documentation.
  • Action
  • Read only
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Speak AI account once, then configure and run Find Media from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "speak_ai-find-media",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    speak_ai: { authProvisionId: "apn_xxxxxxx" },
    mediaId: "Media ID",
    userId: "User ID",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Find Media inputs
Property Type Description
mediaId Media ID string
A Speak AI media ID, for example b4994aa1267c. Get it from the mediaId field returned by Speak AI.
Required Dynamic
userId User ID string
A Speak AI user ID, e.g. 6a708504253783a639e51914, returned as userId on any media record. Looks the media file up on behalf of that user. Enterprise accounts only; ignored otherwise
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
speak_ai-find-media
Version
0.0.2
App
Speak AI
Authentication
OAuth
Read-only
Yes
Destructive
No
Open world
Yes