Getting Started

Introduction

DeepaData is the significance layer for AI memory.

AI systems remember what was said. EDM structures what it meant — significance encoded at capture time, before retrieval ever happens.

Every EDM artifact is a structured record of a significant moment: what happened, what it meant emotionally, how much it matters, and who it belongs to. Sealed with cryptographic proof. Verifiable by anyone.

The artifact

An EDM artifact is a structured JSON record. Send any text — a journal entry, therapy session note, conversation transcript. Get back structured significance.

Request

curl -X POST https://deepadata.com/api/v1/extract \
  -H "Authorization: Bearer dda_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "content": "Just got these photos and what an absolute ball I had competing in my physie comps! About 8 years ago I was diagnosed with psoriatic arthritis which affects my joints. However continuing to move really keeps it at bay.",
    "jurisdiction": "GDPR",
    "consent_basis": "consent"
  }'

Response

{
  "success": true,
  "data": {
    "meta": {
      "id": "edm_01HV8X3K2M...",
      "version": "0.8.0",
      "profile": "essential"
    },
    "core": {
      "anchor": "physie competitions",
      "spark": "receiving competition photos",
      "wound": "psoriatic arthritis diagnosis",
      "fuel": "supportive community",
      "bridge": "returning to movement",
      "echo": "feeling capable again"
    },
    "constellation": {
      "emotion_primary": "joy",
      "emotion_subtone": ["pride", "gratitude"],
      "narrative_arc": "transformation"
    },
    "governance": {
      "jurisdiction": "GDPR",
      "consent_basis": "consent",
      "visibility": "private",
      "subject_rights": {
        "portable": true,
        "erasable": true
      }
    }
  },
  "meta": {
    "version": "0.8.0",
    "extracted_at": "2026-03-18T10:30:01Z",
    "latency_ms": 1840
  }
}

Significance encoded at capture time. The anchor, emotional tone, and narrative arc are structured fields — queryable, filterable, retrievable by meaning not just keyword.

Getting started

Resources