GET
/
api
/
v2
/
storefront
/
policies
/
{policy_slug}
Retrieve a Policy
curl --request GET \
  --url https://demo.spreecommerce.org/api/v2/storefront/policies/{policy_slug} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "1",
    "type": "policy",
    "attributes": {
      "name": "Terms and Conditions",
      "slug": "terms-and-conditions",
      "show_in_checkout_footer": true,
      "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"
    }
  }
}

Authorizations

Authorization
string
header
required

User token to authorize Cart and Checkout requests.

It is required to associate Cart with the User.

Response

200
application/vnd.api+json

200 Success - Returns the policy object.

The response is of type object.