Get AI fetch timeseries
GET
/api/sites/{id}/ai-fetch/timeseries
const url = 'https://hitkeep.com/api/sites/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/ai-fetch/timeseries?resource_type=html';const options = {method: 'GET', headers: {cookie: 'hk_token=<hk_token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://hitkeep.com/api/sites/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/ai-fetch/timeseries?resource_type=html' \ --cookie hk_token=<hk_token>Returns AI fetch request counts over time for the selected site and filter set.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string format: uuid
Query Parameters
Section titled “Query Parameters ” from
string format: date-time
to
string format: date-time
assistant_name
string
Optional AI assistant bot name filter.
assistant_family
string
Optional AI assistant family filter.
resource_type
string
Optional AI fetch resource type filter.
path
string
Optional exact fetched path filter.
Responses
Section titled “ Responses ”AI fetch timeseries
Media type application/json
Array<object>
object
count
integer
time
string format: date-time
Example generated
[ { "count": 1, "time": "2026-04-15T12:00:00Z" }]