Slice website screenshot

Slice

Slice is an online ordering and management platform built specifically for independent local pizzerias, giving small shops digital ordering, marketing, loyalty, and back-office tools that compete with large delivery marketplaces at a low flat per-order fee. For technology partners, Slice publishes a Slice Public API documented on a Stoplight developer portal, exposing pizzeria-oriented resources such as shops and orders over a RESTful HTTP interface in two versions (v1 and v2). The platform serves pizzeria owners and the partners that integrate ordering, POS, and operations into the Slice network across thousands of locations.

2 APIs 0 Features
RestaurantPizzaOnline OrderingLocal CommerceMenusOrders

APIs

Slice Public API (v1)

Version 1 of the Slice Public API: a RESTful HTTP API documented on Slice's Stoplight developer portal (project slice-public-api, spec node /API-V1.yaml). It provides programmat...

Slice Public API (v2)

Version 2 of the Slice Public API on Slice's Stoplight developer portal (spec node /API-V2.yaml). It exposes the same shops and orders surface as v1 — GET /shops plus create/get...

Collections

Pricing Plans

Slice Plans Pricing

3 plans

PLANS

Rate Limits

Slice Rate Limits

2 limits

RATE LIMITS

FinOps

Slice Finops

FINOPS

Semantic Vocabularies

Slice Context

4 classes · 4 properties

JSON-LD

API Governance Rules

Slice API Rules

14 rules · 3 errors 11 warnings

SPECTRAL

Resources

🔗
Website
Website
🔗
Documentation
Documentation
🚀
GettingStarted
GettingStarted
💰
Pricing
Pricing
💬
Support
Support
🔗
API Support
Contact
👥
GitHubOrganization
GitHubOrganization
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps
🔗
Vocabulary
Vocabulary
🔗
SpectralRules
SpectralRules

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Slice Public API
  version: v2
request:
  auth:
    type: apikey
    key: Authorization
    value: '{{Authorization}}'
    placement: header
items:
- info:
    name: Shops
    type: folder
  items:
  - info:
      name: Get Shops
      type: http
    http:
      method: GET
      url: '{{baseUrl}}/shops'
    docs: 'Returns shops (independent pizzerias) available in the Slice network.

      Confirmed operation from the Stoplight node `/API-V2.yaml/paths/~1shops/get`.'
- info:
    name: Orders
    type: folder
  items:
  - info:
      name: Create Order
      type: http
    http:
      method: POST
      url: '{{baseUrl}}/orders'
      body:
        type: json
        data: '{}'
    docs: 'Creates a new order against a Slice shop.

      Confirmed operation from the Stoplight node `/API-V2.yaml/paths/~1orders/post`.'
  - info:
      name: Get Order
      type: http
    http:
      method: GET
      url: '{{baseUrl}}/orders/:orderID'
      params:
      - name: orderID
        value: ''
        type: path
        description: The unique identifier of the order.
    docs: 'Retrieves a single order by its identifier.

      Confirmed operation from `/API-V2.yaml/paths/~1orders~1{orderID}/get`.'
  - info:
      name: Update Order
      type: http
    http:
      method: PUT
      url: '{{baseUrl}}/orders/:orderID'
      params:
      - name: orderID
        value: ''
        type: path
        description: The unique identifier of the order.
      body:
        type: json
        data: '{}'
    docs: 'Updates an existing order by its identifier.

      Confirmed operation from `/API-V2.yaml/paths/~1orders~1{orderID}/put`.'
  - info:
      name: Delete Order
      type: http
    http:
      method: DELETE
      url: '{{baseUrl}}/orders/:orderID'
      params:
      - name: orderID
        value: ''
        type: path
        description: The unique identifier of the order.
    docs: 'Cancels/deletes an existing order by its identifier.

      Confirmed operation from `/API-V2.yaml/paths/~1orders~1{orderID}/delete`.'
bundled: true