Skip to main content
GET
/
api
/
signals
/
scan-time
Get preferred signal scan time
curl --request GET \
  --url https://app.puffle.ai/api/signals/scan-time \
  --header 'Authorization: Bearer <token>'
{
  "time": "06:00"
}

Overview

Return the caller’s preferred daily signal-scan time in UTC HH:MM 24-hour format. Defaults to 06:00 when no preference has been set. The cron picks users whose scan window matches the current 15-minute bucket.
This operation shares the URL path /api/signals/scan-time with other verbs. See the sibling page for related operations on the same resource.

Authorizations

Authorization
string
header
required

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

Response

Current preferred scan time.

time
string
required

Preferred daily scan time in UTC HH:MM 24-hour format. Must fall on a 15-minute boundary (00, 15, 30, 45).

Pattern: ^\d{2}:\d{2}$