Skip to main content
GET
/
personas
Read the composite persona
curl --request GET \
  --url https://api.deyta.ai/gateway/v1/personas \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "namespace_id": "ns_abc123",
    "subject": "Filip Petrovic",
    "built_at": "2023-11-07T05:31:56Z",
    "source_event_count": 1234,
    "providers": [
      {
        "provider": "slack",
        "event_count": 800,
        "oldest_at": "2023-11-07T05:31:56Z",
        "newest_at": "2023-11-07T05:31:56Z"
      }
    ],
    "identity": {
      "role": "<string>",
      "organization": "<string>",
      "background": "<string>",
      "expertise_areas": {},
      "priorities": [
        "<string>"
      ],
      "key_relationships": [
        {}
      ],
      "data_interests": [
        "<string>"
      ],
      "communication_preferences": {}
    },
    "traits": {
      "big_five": {},
      "big_five_confidence": {},
      "values": {},
      "motivations": [
        {}
      ],
      "cognitive_style": {},
      "emotional_baseline": {},
      "decision_patterns": [
        {}
      ],
      "stress_responses": [
        {}
      ],
      "version": 123
    },
    "episodes": [
      {
        "kind": "<string>",
        "label": "<string>",
        "valid_from": "2023-11-07T05:31:56Z",
        "valid_until": "2023-11-07T05:31:56Z",
        "horizon": "<string>"
      }
    ],
    "peers": [
      {
        "name": "<string>",
        "relationship_type": "<string>",
        "trust_level": "<string>",
        "formality": "<string>",
        "warmth": "<string>",
        "directness": "<string>",
        "topics": [
          "<string>"
        ],
        "channels": [
          "<string>"
        ]
      }
    ],
    "facets": {
      "idiolect": {},
      "opinions": [
        {}
      ],
      "mental_models": [
        {}
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

API key obtained from the Deyta Console

Query Parameters

namespace_id
string

Namespace ID. Required if external_reference_id is not provided.

external_reference_id
string

External reference ID. Required if namespace_id is not provided.

Response

Composite persona retrieved successfully

success
boolean
Example:

true

data
object

Full composite persona, returned once a build has completed. The shape mirrors Digor's PersonaRead model (ADR-072).