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

# Quickstart

> Plaud Embedded has **two core components** for integrating with Plaud:

<Columns cols={2}>
  <Card title="Embedded SDK" img="https://mintcdn.com/plaud/E1lTvtruOMzEP-O1/assets/embedded-sdk-hero.png?fit=max&auto=format&n=E1lTvtruOMzEP-O1&q=85&s=07cfbee14bdddd72a8b75ed387593b25" alt="embedded sdk" width="1361" height="378" data-path="assets/embedded-sdk-hero.png">
    iOS & Android SDKs for linking your users' Plaud devices to your mobile app
  </Card>

  <Card title="Transcription API" img="https://mintcdn.com/plaud/E1lTvtruOMzEP-O1/assets/transcription-api.png?fit=max&auto=format&n=E1lTvtruOMzEP-O1&q=85&s=1537fa52825b8afcef5304337e45c094" alt="transcription api" width="1361" height="378" data-path="assets/transcription-api.png">
    APIs to upload audio files and transcribe them with Plaud models
  </Card>
</Columns>

To start using these components, you must first onboard to the Plaud Developer Portal to access your client credentials and API keys.

<Tip>
  **Try the Plaud Embedded Skill** to have your coding agent guide you through the Plaud Embedded SDK and APIs.

  ```bash theme={"system"}
  npx skills add Plaud-AI/plaud-embedded-skills
  ```

  <Frame>
    <img src="https://mintcdn.com/plaud/CoiGXFovbjiIFiuR/assets/agent-ss.png?fit=max&auto=format&n=CoiGXFovbjiIFiuR&q=85&s=7afca22d6c0d9cb2ab5c295d5c91f2e1" alt="agent skill" width="2310" height="1724" data-path="assets/agent-ss.png" />
  </Frame>

  Visit our [GitHub repo](https://github.com/Plaud-AI/plaud-embedded-skills.git) for more details on the skill.
</Tip>

## Onboard to the Plaud Developer Platform

If you don't have access to the **Plaud Developer Platform**, visit **[dev.plaud.ai](https://dev.plaud.ai)** and fill out the contact form. Once your request is reviewed, you'll receive setup instructions and access to the developer console.

Create an **Embedded SDK Application** to receive your **Client ID** and **Client Secret**.

<Frame>
  <img src="https://mintcdn.com/plaud/E1lTvtruOMzEP-O1/assets/app-created.png?fit=max&auto=format&n=E1lTvtruOMzEP-O1&q=85&s=7ae9480fa729f0828e61d35c750d8ba3" alt="app credentials" width="1426" height="667" data-path="assets/app-created.png" />
</Frame>

## Create Your API Key

Your **Client ID** and **Client Secret** are used to generate User Tokens and link user devices. Your **API Key** will be used to interact with the [Transcription API](/plaud-embedded/transcription-api-overview) to transcribe audio files, using Plaud's transcription pipeline to provide speech-to-text with noise reduction, language detection, speaker detection, and more.

You can grab your **API Key** from your developer portal under App Settings > API Keys

<Frame>
  <img src="https://mintcdn.com/plaud/E1lTvtruOMzEP-O1/assets/generate-api-key.png?fit=max&auto=format&n=E1lTvtruOMzEP-O1&q=85&s=ab61c356775b848cff515f27703d9cfa" alt="generate api key" width="2216" height="1068" data-path="assets/generate-api-key.png" />
</Frame>

## Find Your Region

Plaud Embedded APIs are served with Plaud's **region-level** API services. There is no global host for these calls; use the host of the region your client was provisioned in.

| Region    | Public host                          | Status      |
| --------- | ------------------------------------ | ----------- |
| US        | `platform-us.plaud.ai/developer/api` | Available   |
| Japan     | `platform-jp.plaud.ai/developer/api` | Available   |
| Europe    | `platform-eu.plaud.ai/developer/api` | Coming soon |
| Singapore | `platform-sg.plaud.ai/developer/api` | Coming soon |

## Ready to Build

<Note>
  If you want a walkthrough of how the SDKs and APIs fit together, read the [How Plaud Embedded Works Guide](/plaud-embedded/how-plaud-embedded-works).
</Note>

<Columns cols={2}>
  <Card title="Starter App" icon="link" href="/plaud-embedded/starter-app-guide" arrow="true" cta="Build on the Starter App">
    For new builders to build on top of our iOS template with the Embedded SDK pre-implemented (Also a great reference)
  </Card>

  <Card title="Embedded SDK" icon="link" href="/plaud-embedded/ios-sdk" arrow="true" cta="Jump into the Embedded SDK">
    For developers ready to jump in and implement the Embedded SDK in their existing mobile app
  </Card>
</Columns>
