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- a) Log in to your ReccaAI account
- b) Navigate to Settings → API Keys
- c) Click "Create API Key"
- d) Store securely - shown only once!
2. Make your first request
cURLcurl -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
requestsimport 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.