> ## Documentation Index
> Fetch the complete documentation index at: https://docs.talaria.chat/llms.txt
> Use this file to discover all available pages before exploring further.

# Get a persona delivery policy

> Read public message-handling rules associated with a persona DID

A persona policy describes delivery behavior for a public persona identity. Compatible clients can inspect it before sending rather than assuming every identity accepts the same message size, cache behavior, retention, or pricing.

## Request

<ParamField path="personaDid" type="string" required>
  The complete Talaria DID identifying the persona policy.
</ParamField>

<RequestExample>
  ```bash Request theme={null}
  curl --request GET \
    --url "https://directory.example.com/delivery-policies/personas/did%3Atalaria%3A1111111111111111111111"
  ```
</RequestExample>

## Response

```json 200 Response theme={null}
{
  "did": "did:talaria:1111111111111111111111",
  "scope": "persona",
  "policy": {
    "effective_ttl": 14400,
    "max_message_bytes": 1048576,
    "cache_eligible": false,
    "expiration_behavior": "TombstoneReference"
  }
}
```

## Straight to the point

```http theme={null}
GET /delivery-policies/personas/{personaDid}
```

* Authentication: none
* Success: `200`
* Unknown policy: `404`
* Policy schema: the same as recipient and tag policies
