Skip to main content
GET
/
me
/
usage
Get usage
curl --request GET \
  --url https://pullstory.com/api/v1/me/usage \
  --header 'Authorization: Bearer <token>'
{
  "plan": "free",
  "period_start": "2023-11-07T05:31:56Z",
  "period_end": "2023-11-07T05:31:56Z",
  "minutes_included": 120,
  "minutes_used": 47,
  "minutes_remaining": 73
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Current billing cycle usage

plan
enum<string>
Available options:
free,
pro
period_start
string<date-time>
period_end
string<date-time>
minutes_included
integer
Example:

120

minutes_used
integer
Example:

47

minutes_remaining
integer
Example:

73