GET
/
api
/
v2
/
storefront
/
policies
/
{policy_slug}
Retrieve a Policy
curl --request GET \
  --url https://demo.spreecommerce.org/api/v2/storefront/policies/{policy_slug}
{
  "data": {
    "id": "1",
    "type": "policy",
    "attributes": {
      "name": "Terms and Conditions",
      "slug": "terms-and-conditions",
      "created_at": "2025-08-12T12:13:09.183Z",
      "updated_at": "2025-08-12T13:27:59.470Z",
      "body": "asdrdfas",
      "body_html": "<div class=\"trix-content\">\n  <div>asdrdfas</div>\n</div>\n"
    }
  }
}

Response

200 Success - Returns the policy object.

data
object
required

Policy represents terms and conditions, privacy policies, and other legal documents that can be displayed on the storefront.