Skip to main content
POST
/
api
/
nucleus
/
capture
/
note
Submit a text note as a Nucleus capture
curl --request POST \
  --url https://app.auditynow.com/api/nucleus/capture/note \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "content": "Met with Initech CTO. Decided to defer SOC2 work until Q3. Action: send updated implementation roadmap by Friday.",
  "projectId": "550e8400-e29b-41d4-a716-446655440000"
}
'
{
  "capture": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "channel": "transcript",
    "rawContent": "<string>",
    "status": "pending",
    "capturedAt": "2023-11-07T05:31:56Z",
    "userId": "<string>",
    "projectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "contentType": "<string>",
    "processedContent": "<string>",
    "processingResults": {},
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.auditynow.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

A Personal Access Token issued from https://app.auditynow.com/dashboard/settings/api-tokens. Format: aky_<32 random chars>.

Body

application/json
content
string
required

The raw text to capture. Up to 50,000 characters.

Required string length: 1 - 50000
projectId
string<uuid> | null

Optional project to attach this capture to.

Response

Capture created and queued for processing

capture
object
required

A unit of information ingested into Nucleus. Mirrors nucleus_captures table.