Skip to main content
GET
/
api
/
v1
/
reports
/
daily
Daily report
curl --request GET \
  --url https://api.byblend.com/api/v1/reports/daily \
  --header 'Authorization: Bearer <token>'
{
  "date": "2025-11-01",
  "patients": 165,
  "prescriptions": 213,
  "orders": 179
}

Authorizations

Authorization
string
header
required

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

Query Parameters

start_date
string<date>

Start date of the date range to report on. Maximum date range is 365 days. If no dates are provided, the report will include data for the past 14 days.

Example:

"2025-12-01"

end_date
string<date>

End date of the date range to report on. Maximum date range is 365 days. If no dates are provided, the report will include data for the past 14 days.

Example:

"2025-12-31"

timezone
string

IANA timezone for date grouping. Defaults to UTC.

Example:

"America/New_York"

Response

200 - application/json

Successful response with an array of counts by day.

date
string
Example:

"2025-11-01"

patients
integer

Number of new patients created on the date.

Example:

165

prescriptions
integer

Number of prescriptions received on the date.

Example:

213

orders
integer

Number of orders received on the date.

Example:

179