GET
/v1/scoreGet PRISM Score
Returns the current composite PRISM Score and individual pillar scores for the authenticated workspace. The score reflects the most recent Brand Audit or the live-calculated score if real-time scoring is enabled (Enterprise only).
Bearer token required. Minimum plan: Pro.
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
workspace_id | string | Optional | Workspace ID. Defaults to the primary workspace if omitted. |
include_pillars | boolean | Optional | Include individual pillar scores in response. Default: true. |
Request
curl -X GET "https://api.onprism.io/v1/score" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"Response (200 OK)
{
"score": 54.2,
"pillars": {
"presence": 48,
"reach": 42,
"impact": 62,
"sentiment": 55,
"momentum": 58
},
"formula_version": "v20",
"calculated_at": "2026-02-24T12:00:00Z",
"workspace_id": "ws_abc123",
"tier": "agency"
}Error Codes
401
Unauthorized
Missing or invalid API key.
403
Plan Required
Your plan does not include API access. Upgrade to Pro or above.
404
No Score Available
No Brand Audit has been run for this workspace yet. Run an audit first.
429
Rate Limited
You've exceeded the rate limit for your plan.