Skip to main content
GET
/
api
/
public
/
v1
/
slices
List slices
import requests

url = "https://app.oneperfectslice.ai/api/public/v1/slices"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
{
  "data": {
    "slices": [
      {
        "key": "high_intent_deals",
        "title": "High-Intent Deals",
        "objective": "pipeline",
        "description": "Surfaces deals showing strong buying signals.",
        "elementKeys": [
          "intent_signal",
          "budget_confirmation"
        ]
      }
    ]
  }
}
This is usually your first API call. Browse the available slices, then use Get slice details to see the full output schema before running one.

Authorizations

Authorization
string
header
default:sk_your_api_key
required

API key with sk_ prefix. Create one in Org Settings → API Keys.

Response

Slice list

data
object
required