Schedules

List Later Scheduled Chats

Returns the next N upcoming scheduled chat items (DMs and mass messages), ordered by publish time, regardless of date. Useful as a "what's queued up soon?" feed without specifying a date range. Requires permission api_schedules_later_chat.

https://public-api.fansmetric.com
GET/v1/{account_id}/schedules/later/chat
Bearer

Authorization

default
AuthorizationBearer <token>

Send your FansMetric API key as a Bearer token in the Authorization header.

In: header

Path Parameters

  • account_id*integer

    OnlyFans numeric account ID.

Query Parameters

  • limitinteger

    Number of upcoming items to return. Default 10. Min 1, max 50.

curl --request GET "https://public-api.fansmetric.com/v1/acct_XXXXX/schedules/later/chat?limit=20" \
  --header "Authorization: Bearer YOUR_API_KEY"

Response

200
{
"data":{
"list":[
0:{
"id":123
"type":"chat"
"publishDateTime":"2026-06-10T15:00:00+00:00"
"createdDateTime":"2026-06-02T10:00:00+00:00"
"entity":{
"responseType":"message"
"id":456
"text":"<p>Hi!</p>"
"isFromQueue":true
"queueId":789
}
}
]
}
"_meta":{
"_credits":{
"used":1
}
"_rate_limits":{
"limit_minute":1000
"remaining_minute":999
"limit_day":50000
"remaining_day":49999
}
}
}