APIsStatsReference
List individual requests for an API and date
Returns one row per request your organization made to a given API on a given date, including the trace identifier, response code, and elapsed time for each call. Use /v1/requests/fulldetail with a specific TraceIdentifier from this list to see the full request/response payload for one call.
Authorization
Bearer AuthorizationBearer <token>
JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {your token here}"
In: header
Query Parameters
api*string
Internal API name to filter by — one of catalog, orders, pricing, quotes, delivery (Lead Time's internal name). Models and Stats calls are not currently queryable this way.
date*string
Date to filter by, in yyyy-MM-dd format.
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/details?api=string&date=string" \ -H "client-app-name: samtec-dev-portal"[ { "Api": "catalog", "RequestTimeUtc": "2026-08-27T14:32:07.481Z", "TraceIdentifier": "8f14e45f-ceea-467e-bd3f-11a2c9d7e001", "TotalElapsedMilliseconds": 112, "RemoteIp": "203.0.113.42", "ResponseCode": 200, "Url": "/catalog/v3/TSW-110-08-T-D", "QueryString": "" }, { "Api": "catalog", "RequestTimeUtc": "2026-08-27T15:04:51.209Z", "TraceIdentifier": "2c9a71b0-4e13-4f8a-9c22-7d9b6a441a77", "TotalElapsedMilliseconds": 89, "RemoteIp": "203.0.113.42", "ResponseCode": 404, "Url": "/catalog/v3/NOT-A-REAL-PART", "QueryString": "" }]