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

# Postman collection

> Import and test every endpoint in seconds.

A ready-made Postman collection covers all endpoints: ping, transcription,
note (audio / transcript / custom template), and the full chunked flow.

## Get it

Download [`recnote-api.postman_collection.json`](/recnote-api.postman_collection.json)
from this docs site, then in Postman: **Import → File**.

## Configure

Open the collection → **Variables** tab → set:

| Variable  | Value                    |
| --------- | ------------------------ |
| `baseUrl` | `https://api.recnote.ai` |
| `apiKey`  | your `rec_sk_...` key    |

The collection authenticates every request with `Authorization: Bearer {{apiKey}}`
automatically.

## What's inside

* **Verify key (ping)** — sanity check.
* **Transcribe audio** — pick a file on the `file` form field, send.
* **Note from audio (one-shot)** — audio → transcript + note.
* **Note from transcript (JSON)** — text → note.
* **Note with custom template** — pass `templateSections`.
* **Chunked — 1/2/3** — open session (auto-saves `sessionId`), upload chunks,
  generate. Run in order; the session id is captured for you.

<Note>
  For file requests, click the request → **Body → form-data** → select a local
  audio file on the `file` row before sending.
</Note>
