Skip to main content
GET
/
locations
/
{locationId}
/
insights
Rolled-up metrics
curl --request GET \
  --url https://api.pickupbell.com/locations/{locationId}/insights \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "calls_answered": 123,
    "leads_captured": 123,
    "revenue_recovered": 123,
    "spam_blocked": 123,
    "emergencies": 123,
    "answer_rate_pct": 50,
    "after_hours_calls": 123,
    "per_day": [
      {
        "date": "2023-12-25",
        "calls": 123,
        "revenue": 123
      }
    ],
    "per_hour": [
      {
        "hour": 11,
        "share": 0.5
      }
    ],
    "services": [
      {
        "service": "<string>",
        "pct": 50
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.pickupbell.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Location-scoped API token from Settings → API & MCP.

Path Parameters

locationId
string
required

Location UUID or slug (e.g. premier-hvac).

Query Parameters

days
integer
default:14
Required range: 1 <= x <= 90

Response

200 - application/json

Insights summary

data
object