> ## 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 tag delivery policy

> Read the public handling policy associated with a message tag DID

A tag policy applies handling rules to a category of messages. A client can read it before constructing an envelope to ensure its TTL, encrypted size, caching choice, and expiration behavior are compatible.

## Request

<ParamField path="tagDid" type="string" required>
  The complete Talaria DID identifying the public tag policy.
</ParamField>

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

## Response

```json 200 Response theme={null}
{
  "did": "did:talaria:1111111111111111111111",
  "scope": "tag",
  "policy": {
    "effective_ttl": 2400,
    "max_message_bytes": 262144,
    "cache_eligible": true,
    "replication": 2,
    "expiration_behavior": "DeleteOnExpiry"
  }
}
```

## Straight to the point

```http theme={null}
GET /delivery-policies/tags/{tagDid}
```

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