molroo docs
WorldAPI ReferenceWorldsIdPersonas

Get persona configs for a world

GET
/worlds/{id}/personas

Path Parameters

id*string

World ID

Response Body

application/json

application/json

curl -X GET "https://api.molroo.io/worlds/uuid/personas"
{
  "result": {
    "property1": {
      "personality": {
        "O": 1,
        "C": 1,
        "E": 1,
        "A": 1,
        "N": 1,
        "H": 1
      },
      "identity": {
        "name": "string",
        "role": "string",
        "speakingStyle": "string",
        "coreValues": [
          "string"
        ],
        "culturalIdentity": "string"
      },
      "goals": [
        {
          "id": "string",
          "content": "string",
          "priority": 0,
          "mutable": true,
          "status": "active"
        }
      ],
      "type": "persona",
      "reflection": {
        "vadDeltaThreshold": 0,
        "predictionErrorThreshold": 0,
        "turnFallback": 0
      },
      "property1": null,
      "property2": null
    },
    "property2": {
      "personality": {
        "O": 1,
        "C": 1,
        "E": 1,
        "A": 1,
        "N": 1,
        "H": 1
      },
      "identity": {
        "name": "string",
        "role": "string",
        "speakingStyle": "string",
        "coreValues": [
          "string"
        ],
        "culturalIdentity": "string"
      },
      "goals": [
        {
          "id": "string",
          "content": "string",
          "priority": 0,
          "mutable": true,
          "status": "active"
        }
      ],
      "type": "persona",
      "reflection": {
        "vadDeltaThreshold": 0,
        "predictionErrorThreshold": 0,
        "turnFallback": 0
      },
      "property1": null,
      "property2": null
    }
  }
}
{
  "error": {
    "code": "string",
    "message": "string"
  }
}