Read the Telegram notification status
API reference

Read the Telegram notification status

Where the creator's sale notifications currently go: their saved handle, whether a personal chat is connected, and whether a group/channel is connected.

View as MarkdownUpdated Aug 19, 2026
GET/api/external/notifications

Where the creator's sale notifications currently go: their saved handle, whether a personal chat is connected, and whether a group/channel is connected.

Read-only and safe. Use it before any write in this group so you never clobber an existing setup.

Authentication

Send the creator's API key as a bearer token: Authorization: Bearer dpfn_…. See Authentication & API keys.

Responses

200The current connection state.
NameTypeDescription
telegramHandlestring | nullThe creator’s saved Telegram @handle (without @), or null.
personalConnectedbooleanTrue when a personal chat id is registered — sale notifications DM the creator.
groupConnectedbooleanTrue when a group/channel is registered for notifications.
groupChatIdstring | nullThe registered group chat id (e.g. "-100…"), or null.
groupNamestring | nullThe registered group’s title, or null.
Example response
{
  "telegramHandle": "valeria_tg",
  "personalConnected": true,
  "groupConnected": false,
  "groupChatId": null,
  "groupName": null
}

Errors

StatusBodyWhen
401{"error":"Unauthorized","code":"unauthorized"}Missing or invalid API key.
404{"error":"User not found"}The key’s account no longer exists.

Rate limiting

Every response carries the X-RateLimit-Tier header and, on limited tiers, the per-minute and per-day trios — read X-RateLimit-Remaining and X-RateLimit-Reset instead of hardcoding limits. Details in Rate limits.

Code samples

curl "https://www.dropfans.io/api/external/notifications" \
  -H "Authorization: Bearer $DROPFANS_API_KEY"

Questions? [email protected]