SDSamtec Developer Portal
APIsStatsReference

List daily API usage summary

Returns aggregated request counts and average response times for your organization, grouped by API and action, for the last 7 days. Use this for a rolled-up view before drilling into a specific day with /v1/requests/details.

GET
/v1/requests/summary
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {your token here}"

In: header

Header Parameters

client-app-name*string

Name of the client application

Default"samtec-dev-portal"

Response Body

application/json

curl -X GET "https://example.com/v1/requests/summary" \  -H "client-app-name: samtec-dev-portal"
[  {    "Api": "catalog",    "RequestDate": "2026-08-27",    "Action": "GET /v3/{part}",    "AverageResponseTimeMs": 118,    "RequestCount": 4820  },  {    "Api": "orders",    "RequestDate": "2026-08-27",    "Action": "POST /v1/new",    "AverageResponseTimeMs": 245,    "RequestCount": 132  }]