Skip to main content
GET
/
api
/
v1
/
analytics
Outbound message analytics
curl --request GET \
  --url https://app.flowella.io/api/v1/analytics \
  --header 'Authorization: Bearer <token>'
{
  "period": {
    "start": "2025-01-01T00:00:00.000Z",
    "end": "2025-02-01T00:00:00.000Z"
  },
  "outboundMessages": {
    "total": 42,
    "counts": {
      "PENDING": 0,
      "SENT": 10,
      "DELIVERED": 20,
      "READ": 10,
      "FAILED": 2
    },
    "deliveryRate": 0.85,
    "readRate": 0.33,
    "failureRate": 0.05
  }
}

Authorizations

Authorization
string
header
required

Organization API key (flo_…). Paste the full key; Scalar sends Authorization: Bearer <key>.

Query Parameters

startDate
string | null
endDate
string | null

Response

Analytics for period

period
object
required
outboundMessages
object
required