SocialPipe docs

Usage Summary

Calls, credits and cache hits per day, plus your busiest endpoints.

GET/v1/usage/summary

Calls, credits and cache hits per day, plus your busiest endpoints.

Returns two lists: one row per day, and one row per endpoint over the whole period.

Days are counted in UTC, so if you are west of Greenwich your late evening lands on the following day's row.

Query Parameters

days?Days

How many days back to report.

Range1 <= value <= 90
Default7

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/usage/summary"
{  "days": [    {      "cached": 0,      "calls": 0,      "credits": 0,      "date": "2019-08-24"    }  ],  "endpoints": [    {      "calls": 0,      "endpoint": "string"    }  ]}