For developers REST API access

ReccaAI REST API

Programmatic access to your notes, transcripts, and team data

Quick start

Authenticate with an API key, then list and search notes in minutes.

1. Get your API key

Settings
  1. a) Log in to your ReccaAI account
  2. b) Navigate to Settings → API Keys
  3. c) Click "Create API Key"
  4. d) Store securely - shown only once!
Get API Key →

2. Make your first request

cURL
curl -X GET \
  "https://app.reccaai.com/api/rest/notes" \
  -H "X-API-Key: nt_your_api_key"

Tip: keep your key in an env var and pass it at runtime (don’t commit it).

Python example

requests
import requests

API_KEY = "nt_your_api_key"
BASE_URL = "https://app.reccaai.com/api/rest"

headers = {
    "X-API-Key": API_KEY
}

# List notes
response = requests.get(f"{BASE_URL}/notes", headers=headers)
notes = response.json()

# Search notes
response = requests.get(
    f"{BASE_URL}/notes/search",
    headers=headers,
    params={ "q": "budget meeting" }
)
results = response.json()

# Get note details
note_id = "your-note-uuid"
response = requests.get(f"{BASE_URL}/notes/{note_id}", headers=headers)
note = response.json()

Need help with the API?

Our developer support team is here to help you integrate ReccaAI into your workflow.