Skip to main content
POST
/
api
/
nucleus
/
memories
Create a Nucleus memory manually
curl --request POST \
  --url https://app.auditynow.com/api/nucleus/memories \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "subject": "Initech security posture",
  "content": "Initech CTO confirmed they will not pursue SOC2 in 2026. Compliance roadmap should focus on HIPAA + PCI only.",
  "memoryType": "client",
  "projectId": "550e8400-e29b-41d4-a716-446655440000"
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "memoryType": "client",
  "subject": "<string>",
  "content": "<string>",
  "sourceType": "explicit",
  "confidence": 0.5,
  "userId": "<string>",
  "projectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "stakeholderId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "timesRetrieved": 123,
  "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
subject
string
required

Short label for the memory (e.g., 'Initech security posture').

Required string length: 1 - 200
content
string
required

The full memory content.

Required string length: 1 - 2000
memoryType
enum<string>
default:client
Available options:
client,
pattern,
preference
projectId
string<uuid> | null

Response

Memory created

id
string<uuid>
required
memoryType
enum<string>
required
Available options:
client,
pattern,
preference
subject
string
required
Maximum string length: 200
content
string
required
Maximum string length: 2000
sourceType
enum<string>
required
Available options:
explicit,
extracted,
detected
confidence
number
required
Required range: 0 <= x <= 1
userId
string
projectId
string<uuid> | null
stakeholderId
string<uuid> | null
timesRetrieved
integer
createdAt
string<date-time>
updatedAt
string<date-time>