--- title: PrivacyPolicy description: Represents the privacy policy of the instance. menu: docs: parent: entities aliases: [ "/entities/privacypolicy", "/entities/PrivacyPolicy", "/api/entities/privacypolicy", "/api/entities/PrivacyPolicy", ] --- ## Example ```json { "updated_at": "2022-10-07T00:00:00+00:00", "content": "
This privacy policy describes how example.com ("example.com", "we", "us") collects,\nprotects and uses the personally identifiable information you may provide\nthrough the example.com website or its API.
\n\nThis document is CC-BY-SA. Originally adapted from the Discourse privacy\npolicy.
\n" } ``` ## Attributes ### `updated_at` {#updated_at} **Description:** A timestamp of when the privacy policy was last updated.\ **Type:** String ([Datetime](/api/datetime-format#datetime))\ **Version history:**\ 4.0.0 - added ### `content` {#content} **Description:** The rendered HTML content of the privacy policy.\ **Type:** String (HTML)\ **Version history:**\ 4.0.0 - added ## See also {{< page-relref ref="methods/instance#privacy_policy" caption="GET /api/v1/instance/privacy_policy" >}} {{< caption-link url="https://github.com/mastodon/mastodon/blob/main/app/serializers/rest/privacy_policy_serializer.rb" caption="app/serializers/rest/privacy_policy_serializer.rb" >}}