Skip to main content
Send your API key as a bearer token on every API request except public health checks.
curl "https://api.nanoclip.ai/v1/projects/proj_abc123" \
  -H "Authorization: Bearer $NANOCLIP_API_KEY"

Keep keys server-side

API keys identify a workspace and should be treated like credentials. Do not ship them in mobile apps, browser clients, or public repositories. Route browser and mobile traffic through your own backend when calling nano clip.

Scopes

API keys are workspace-scoped. Endpoints require the matching read or write scope for the resource being accessed.
ScopeAllows
projects:readRead project metadata
projects:writeCreate projects and complete uploads
transcript:readRead transcript results
transcript:writeStart transcript commands
vision:readRead vision results
vision:writeStart vision commands
retake_removal:readRead retake-removal results
retake_removal:writeStart retake-removal commands
*All public API operations

Common auth failures

StatusCause
401 UnauthorizedMissing, malformed, inactive, or invalid API key.
403 ForbiddenThe key is valid but does not include the required scope.