Skip to main content
GET
/
agencies
/
subscribers-history
List per-creator-per-day subscriber events across all agency creators
curl --request GET \
  --url https://api.fanvue.com/agencies/subscribers-history \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Fanvue-API-Version: <x-fanvue-api-version>'
{
  "data": [
    {
      "creatorUuid": "c3d4e5f6-7g8h-9i0j-1k2l-m3n4o5p6q7r8",
      "date": "2024-01-15",
      "total": 5,
      "newSubscribersCount": 6,
      "cancelledSubscribersCount": 1
    },
    {
      "creatorUuid": "c3d4e5f6-7g8h-9i0j-1k2l-m3n4o5p6q7r9",
      "date": "2024-01-14",
      "total": 2,
      "newSubscribersCount": 3,
      "cancelledSubscribersCount": 1
    }
  ],
  "pagination": {
    "page": 1,
    "size": 2,
    "hasMore": true
  }
}

Authorizations

Authorization
string
header
required

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

Headers

X-Fanvue-API-Version
string
default:2025-06-26
required

API version to use for the request

Example:

"2025-06-26"

Query Parameters

page
number
default:1

Page number to retrieve (starts from 1)

Required range: x >= 1
size
number
default:15

Number of items to return per page (1-50, default: 15)

Required range: 1 <= x <= 50
startDate
string<date-time>
required

Start of the date range (inclusive). UTC ISO 8601 datetime with offset.

endDate
string<date-time>
required

End of the date range (exclusive). UTC ISO 8601 datetime with offset. Range must not exceed 365 days.

creatorUuids
string<uuid>[]

Comma-separated list of creator UUIDs to restrict results to a subset of the agency's managed creators (max 50) Comma-separated list of creator UUIDs (max 50)

Maximum array length: 50

Response

Paginated list of per-creator-per-day subscriber events across the agency's creators

data
object[]
required

Array of per-creator-per-day subscriber event rows across the agency's creators

pagination
object
required

Pagination information